ulimit -n 300000 open files 300000

This commit is contained in:
wenxu12345 2021-05-27 16:40:14 +08:00
parent 8822b00ed2
commit b10f016e8f
2 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@ fi
#Waiting port recycling #Waiting port recycling
sleep 3 sleep 3
cd ${msg_gateway_binary_root} cd ${msg_gateway_binary_root}
ulimit -n 300000
for ((i = 0; i < ${#ws_ports[@]}; i++)); do for ((i = 0; i < ${#ws_ports[@]}; i++)); do
nohup ./${msg_gateway_name} -rpc_port ${rpc_ports[$i]} -ws_port ${ws_ports[$i]} >>../logs/${msg_gateway_name}.$(date +%Y-%m-%d).log 2>&1 & nohup ./${msg_gateway_name} -rpc_port ${rpc_ports[$i]} -ws_port ${ws_ports[$i]} >>../logs/${msg_gateway_name}.$(date +%Y-%m-%d).log 2>&1 &
done done