在对应项目下设置python解释器:python interpreter -> Add pycharm添加python解释器 由于是远程服务器,选择SSH Interpreter 设置ssh 解释器 1:设置Interpreter路径,选择服务器上对应的python环境2:设置路径映射(本地root目录、映射的服务器项目root目录) 修改解释器配置 设置完成后,apply -> ok,完成当前项目python解释器及...
此处假设远程机器为"1.2.3.4"或者"remote_host", 用户名为"username",认证方式为密码或者私钥认证.需要在远程执行的命令为"uname -a". 首先手工验证上述配置无误. ssh username@remote_host -i private_key_path uname -a Linux remote_host 6.5.0-41-generic#41~22.04.2-Ubuntu SMP PREEMPT_DYNAMIC Mon Jun...
ssh [options][remote host][command] 1. 假设远程服务器IP是192.168.110.34 例:查看远程服务器的cpu信息 ssh -l www-online 192.168.110.34 "cat /proc/cpuinfo" www-online@onlinedev01:~$ ssh -l www-online 192.168.110.34 "cat /proc/cpuinfo" www-online@192.168.110.34's password: processor : 0 v...
然后,在A机器上执行: ssh x@B ~/command.sh > result.txt command.sh就是B机器上放置在x目录下的脚本。 输出结果应该是写到了result.txt 或者另一种写法 result=`ssh x@B ~/command.sh` 结果直接保存到result变量中了。