1. 更新软件包
apt update
apt -y upgrade
2.安装vim 和ssh
apt-get install vim
apt-get install openssh-server
3.给root设置密码
passwd root
4.配置ssh
vim /etc/ssh/sshd_config
把 PermitRootLogin without-password 改为 PermitRootLogin yes,注意PermitRootLogin without-password被注释掉了,要去掉注释。把port 22的注释取消。
允许ssh 开机自启动
systemctl enable ssh
其他ssh命令
service ssh start
service ssh restart
service ssh status
对于容器每次重启时,ssh不能自动执行重启,得手动的解决方案是:
找到并打开文件/root/.bashrc
vim /root/.bashrc
在.bashrc末尾添加如下代码,然后保存。
service ssh start