iTerm2 自动连接服务器配置

iTerm2 自动连接服务器配置

  • 创建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
    iTerm2 自动连接服务器配置_第1张图片
  • 点击加号添加一个新的 Profile,在 Command 中写上这个命令,路径用你自己配置文件的路径
    iTerm2 自动连接服务器配置_第2张图片
    配置结束,下面是常用的命令
  • 文件上传远程服务器root下
scp -r local_file_path [email protected]:/root
  • 后台运行
nohup python -u test.py &
  • 查看正在运行的main.py进程
ps -aux | grep python
  • 查看所有运行进程
jobs

你可能感兴趣的:(服务器,网络,linux)