docker run -itd -p 26122:22 --restart=always --name ubuntu ubuntu
docker exec -it ubuntu /bin/bash ##ctrl+p ctrl+q退出容器
apt -y install openssh-server openssh-client
echo root:passwd |chpasswd root
sed -i 's/^.*PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sed -i 's/^.*PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config
/etc/init.d/ssh restart
##然后远程26122端口连接root,完事,docker一个debian同理,
##docker的系统环境纯净,注意环境。
apt -y install curl vim wget
##高级一点的玩k8s,这个比较简单。
暂无评论