centos 开启ssh服务
时间: 2023-12-22 12:28:27 浏览: 71
Linux下开启ssh服务.pdf
以下是在CentOS7上开启SSH服务的步骤:
1. 确保已经安装了openssh-server,可以在终端中输入以下命令进行检查:
```shell
yum list installed | grep openssh-server
```
如果已经安装,则会显示openssh-server的版本信息,否则需要安装openssh-server,可以使用以下命令进行安装:
```shell
yum install openssh-server
```
2. 启动SSH服务,可以使用以下命令启动SSH服务:
```shell
systemctl start sshd.service
```
3. 设置SSH服务开机自启动,可以使用以下命令设置SSH服务开机自启动:
```shell
systemctl enable sshd.service
```
4. 确认SSH服务已经启动,可以使用以下命令进行确认:
```shell
systemctl status sshd.service
```
如果SSH服务已经启动,则会显示active (running)字样。
阅读全文