#查看某个端口是否占用 lsof -i tcp:60000 lsof -i udp:60000 kill [pid] #短线自动重连 vim /etc/ssh/sshd_config ##修改 ServerAliveInterval 10 ServerAliveCountMax 8640000 #生效设置 systemctl restart sshd.service #建立隧道 ssh -NTf -R 60000:172.16.102.168:22 root@limengkai.work -o stricthostkeychecking=no
满足特殊需要可以自行设置nginx 反向代理
server { listen 8090; server_name _; # _代表监听所有请求 root /根目录/; index index.html ; location / { index index.html; } }
mac上的nginx和linux 目录不同,记载一下
vim /usr/local/etc/nginx/nginx.conf open /usr/local/etc/nginx #mac 启动nginx nginx -c /usr/local/etc/nginx/nginx.conf nginx -s reload nginx -s stop
ssh 添加 密码参数 ! 与配置 免密登陆 不同
对于debian/ubuntu系统来说,安装方式很简单: sudo apt-get install sshpass 对于其他的linux,可以编译sshpass的源码安装: wget http://sourceforge.net/projects/sshpass/files/sshpass/1.05/sshpass-1.05.tar.gz tar xvzf sshpass-1.05.tar.gz ./configure make sudo make install #检查是否安装成功 sshpass #成功时的,部分输出 -V Print version information At most one of -f, -d, -p or -e should be used #使用 #编辑脚本使用 vi 脚本.sh #!/bin/bash sshpass -p "XXX" ssh user@IP