标签:
#yum install openssh-server -y
#yum install passwd -y
UsePAM yes改成UsePAM no
当使用passwd修改容器中root密码的时候,会报错:
passwd: system_u:system_r:initrc_t:s0 is not authorized to change the password of root
这时候,需要关闭主机selinux。
#!/bin/bash
service sshd restart
while :
do
sleep 10
done
其实开机自起可以用CMD的,但是暂时不会。。。就统一用脚本执行的方式防止退出,感觉可调控行蛮好的。
#docker ps
#docker commit ID centos6.5:sshd
#docker run -d -p 22:22 -t centos6.5:sshd /root/run.sh
以后台模式运行容器,且把容器的22端口映射到主机的22端口
这样,就可以从外网通过ssh连接到容器了。
标签:
原文地址:http://www.cnblogs.com/feika/p/4223351.html