iTerm2 自动连接服务器配置文章来源地址https://www.toymoban.com/news/detail-741116.html
- 创建ssh_conf.sh配置文件
touch ssh_conf.sh
- 编辑配置文件内容
#!/usr/bin/expect -f
set user root
set host 119.xxx.xxx.xxx
set port 22
set password xxxx
set timeout 30
spawn ssh -p $port $user@$host
expect "$user@$host's password:"
send "$password\r"
interact
- 菜单栏打开 Profiles,然后点 Edit Profiles
- 点击加号添加一个新的 Profile,在 Command 中写上这个命令,路径用你自己配置文件的路径
配置结束,下面是常用的命令 - 文件上传远程服务器root下
scp -r local_file_path root@119.xx.xx.xx:/root
- 后台运行
nohup python -u test.py &
- 查看正在运行的main.py进程
ps -aux | grep python
- 查看所有运行进程
jobs
文章来源:https://www.toymoban.com/news/detail-741116.html
到了这里,关于iTerm2 自动连接服务器配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!