docker 在centos镜像中配置ssh自启动
时间: 2024-05-02 19:22:17 浏览: 93
Docker使用Dockerfile创建支持ssh服务自启动的容器镜像
1. 安装 openssh-server
在 centos 镜像中安装 openssh-server:
```
yum install -y openssh-server
```
2. 配置 sshd 服务自启动
使用 systemctl 命令配置 sshd 服务自启动:
```
systemctl enable sshd.service
```
3. 启动 sshd 服务
使用 systemctl 命令启动 sshd 服务:
```
systemctl start sshd.service
```
4. 验证 sshd 服务是否正常启动
使用 ssh 命令连接 centos 镜像:
```
ssh root@<centos_container_ip>
```
如果连接成功,说明 sshd 服务已经正常启动。
阅读全文