@@ -11,12 +11,12 @@
"database": "seat_tools"
}
},
- "101": {
+ "37": {
"db": {
- "host": "10.112.89.101",
- "port": "9030",
- "user": "root",
- "password": "ROOT@taiji2022!",
+ "host": "74.10.28.37",
+ "port": "45371",
+ "user": "ax_tj_seat",
+ "password": "Taiji@2023#seat",
@@ -2,11 +2,13 @@
cd /usr/share/nginx/html/ax-node
-# 检查端口18061是否已被占用
-netstat -anp | grep 18061 > /dev/null 2>&1
+# 定义端口号变量
+PORT=18061
+# 检查端口是否已被占用
+netstat -anp | grep $PORT > /dev/null 2>&1
# 如果端口18061已被占用,则关闭占用该端口的进程
if [ $? -eq 0 ]; then
- pid=$(netstat -anp | grep 18061 | awk '{print $7}' | cut -d/ -f1)
+ pid=$(netstat -anp | grep $PORT | awk '{print $7}' | cut -d/ -f1)
kill -9 $pid
fi
# 授权