要在CentOS上启用SSH服务,可以按照以下步骤进行操作:
yum install openssh-server
systemctl start sshd
systemctl enable sshd
firewall-cmd --permanent --add-service=ssh
firewall-cmd --reload
如果您使用的是古老的CentOS版本,可能需要使用以下命令:iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
service iptables save
请注意,启用SSH服务可能涉及系统安全性问题。确保您采取适当的安全措施,例如使用更加复杂的密码或设置SSH密钥身份验证。