centos 如何开启ssh连接
时间: 2023-11-07 16:26:55 浏览: 272
centos ssh安全防护配置.txt
要在CentOS上启用SSH连接,请执行以下步骤:
1. 确保您已经安装了SSH服务器。如果没有,请使用以下命令安装它:
sudo yum install openssh-server
2. 开启SSH服务:
sudo systemctl start sshd
3. (可选)设置SSH服务在系统启动时自动启动:
sudo systemctl enable sshd
4. 配置您的防火墙(如果您正在使用一个)以允许SSH连接。如果您启用了防火墙,并且它正在运行,请执行以下命令:
sudo firewall-cmd --permanent --add-service=ssh
sudo firewall-cmd --reload
现在,您可以使用SSH客户端连接到CentOS。
阅读全文