Mac ssh链接阿里云服务

1 ,重置实例密码:
https://help.aliyun.com/document_detail/25425.html?spm=a2c4g.11186623.6.573.61a73dd1StfbBe

重置完后当你执行:ssh root@阿里云公网IP 并输入上面实例密码时
会遇到报错:Permission denied (publickey)

下面是方法之一步骤:

2 ,设置安全策略开放ssh 22端口:
https://jingyan.baidu.com/article/fea4511a2e387cf7bb912532.html

3 ,更改Mac ssh配置
执行:sudo vim /etc/ssh/sshd_config 并去掉PasswordAuthentication前面有个#
更新文件:sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist
执行:sudo launchctl list | grep ssh
0 com.openssh.sshd 表示配置ssh成功,然后重启阿里云。

4 ,在Mac输入ssh root@阿里云公网IP,再输入上面重置的实例密码
即可看到成功链接阿里云信息:

Welcome to Alibaba Cloud Elastic Compute Service !

ubuntu系统默认没有pip3
在安装pip3之必须先更新:
sudo apt-get update
然后在执行安装命令
sudo apt-get install python3-pip
安装Anaconda后会遇到conda: command not found
wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
再按照https://blog.csdn.net/weixin_38705903/article/details/86533863
配置好conda命令
阿里云后台运行命令:
nohup python -u test.py > out.log 2>&1 &
nohup sh **.sh > /dev/null 2>&1 &

Mac ssh链接阿里云服务_第1张图片
image.png

你可能感兴趣的:(Mac ssh链接阿里云服务)