在docker中运行的centos8默认是没有密码的,但是宝塔面板的终端链接的时候需要提供root密码,当你在docker运行passwd root命令时会提示 passwd: command not found,因此我们需要进行相应的配置。
#安装相应的软件
yum install -y passwd openssh-server openssh-clients
[root@2441f21c02f7 /]# passwd root
Changing password for user root.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.
重置成功后,在宝塔的终端中,即可ssh连接docker里面的centos了
还没有人发表评论