fix:修复打包错误的问题

This commit is contained in:
2026-05-27 23:04:44 +08:00
parent 46545ca0c2
commit 6ab2f8a1f2
7 changed files with 19 additions and 6775 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="dataSourceStorageLocal" created-in="WS-261.23567.141"> <component name="dataSourceStorageLocal" created-in="WS-253.29346.143">
<data-source name="@localhost" uuid="0a5f547c-9d7e-48c2-8022-49fb896f0b20"> <data-source name="@localhost" uuid="0a5f547c-9d7e-48c2-8022-49fb896f0b20">
<database-info product="MySQL" version="8.4.9" jdbc-version="4.2" driver-name="MySQL Connector/J" driver-version="mysql-connector-j-9.5.0 (Revision: a7b3c94f50efbddb9f0dd69b3e0d1aaa25305cd6)" dbms="MYSQL" exact-version="8.4.9" exact-driver-version="9.5"> <database-info product="MySQL" version="8.4.9" jdbc-version="4.2" driver-name="MySQL Connector/J" driver-version="mysql-connector-j-9.5.0 (Revision: a7b3c94f50efbddb9f0dd69b3e0d1aaa25305cd6)" dbms="MYSQL" exact-version="8.4.9" exact-driver-version="9.5">
<extra-name-characters>$</extra-name-characters> <extra-name-characters>$</extra-name-characters>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -82,4 +82,19 @@ nohup command > /dev/null 2>&1 &
# 五、网络管理 # 五、网络管理
| 命令 | 说明 | 示例 | 参数/注释 | | 命令 | 说明 | 示例 | 参数/注释 |
| :---: | :---: | :---: | :---: | | :---: | :---: | :---: | :---: |
| ip | 查看/配置网络接口 | - | link:查看所有网卡 <br> addr:查看 IP 地址 <br> route:查看路由表 | | ip | 查看/配置网络接口 | - | link:查看所有网卡 <br> addr:查看 IP 地址 <br> route:查看路由表 |
| ss | 查看网络连接、端口监听、套接字统计 | - | -l监听 <br> -n不解析服务名 <br> -tTCP <br> -p显示进程 PID / 程序名 |
::: tip
1. 显示进程端口
```bash
ss -lntp
```
2. 查看某个端口是否启动
```bash
ss -lntp | grep 8080
```
:::
# 六、实战场景

View File

@@ -7,4 +7,4 @@ title: 运维部署
import { routers } from '../.vitepress/theme/router' import { routers } from '../.vitepress/theme/router'
</script> </script>
<MenuList :routers=routers[3] /> <MenuList :routers=routers[1] />

View File

@@ -7,4 +7,4 @@ title: 其他
import { routers } from '../.vitepress/theme/router' import { routers } from '../.vitepress/theme/router'
</script> </script>
<MenuList :routers=routers[4] /> <MenuList :routers=routers[3] />

View File

@@ -1,10 +0,0 @@
---
layout: doc
title: Flutter
---
<script setup>
import { routers } from '../.vitepress/theme/router'
</script>
<MenuList :routers=routers[3] />