SSH端口默认是22了,为了服务器的安全一般会把SSH端口22修改成其它的端口
1.登陆机器
2.修改配置文件
vim /etc/ssh/sshd_config
将#Port 22
修改为Port 端口号
3.保存
编辑好,先按ESC键,再输入 :wq 保存退出.
4.重启ssh
service sshd restart
问题:
1.Job for sshd.service failed because the control process exited with error code. See "systemctl status sshd.service" and "journalctl -xe" for details.
解决方法:
(1)根据提示命令行输入
journalctl -xe
大致意思就是我没权限修改,但是我用的是root用户
(2)命令行输入
setenforce 0
(3)再次重启ssh就好了
service sshd restart