6 lines
194 B
Bash
6 lines
194 B
Bash
# 用于将网站的mysql端口转发到本地,保证稳定性
|
||
autossh -M 0 -f -N -o "ServerAliveInterval 30" \
|
||
-o "ServerAliveCountMax 3" \
|
||
-L 23306:localhost:23306 yuyr@g14
|
||
|