centos 7配置ssh远程访问

时间:2024-04-12 09:11:26

开启ssh服务需要root权限,先用root账户登陆

先检查有没有安装ssh服务:rpm -qa | grep ssh

centos 7配置ssh远程访问

如果没有安装ssh服务就安装 : yum install openssh-server
centos 7配置ssh远程访问
安装好后在ssh配置文件里进行配置 : vim /etc/ssh/sshd_config
centos 7配置ssh远程访问
centos 7配置ssh远程访问
centos 7配置ssh远程访问

用esc+:wq 保存退出

centos 7配置ssh远程访问

修改完后用 systemctl restart sshd.service 开启ssh服务,这个命令没有相关提示,如不确定是否执行,运行完后输入echo $?
返回0表示成功执行。

centos 7配置ssh远程访问

开启后用 ps -e | grep sshd 检查一下ssh服务是否开启

centos 7配置ssh远程访问

再用netstat -an | grep 22检查一下22端口是否开启 【centos 7默认不带ifconfig和netstat,可以这样安装】

centos 7配置ssh远程访问
然后再执行
centos 7配置ssh远程访问

将ssh服务添加到自启动列表中:systemctl enable sshd.service
centos 7配置ssh远程访问

打开xshell6

centos 7配置ssh远程访问