linux系统ssh连接不通和修改监听端口号
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
原因如下:
1.sshd 未启动
2.sshd 未安装
3.防火墙
4需重新启动ssh 服务
1.首先查看一下当前linux是否已经安装SSH软件包,使用 rpm -qa|grep ssh。
2.确认ssh服务已经开启,下面以centos 系统为例。
ps -e|grep sshd
如果没有启动:(需要root权限)启动
service sshd restart
如果出现:Failed to restart ssh.service: Unit ssh.service not found.
说明sshd未安装,或者通过查看/etc/init.d/目录下是否有ssh,若没有则说明需要安装sshd.
安装sshd:
yum install -y openssl openssh-server
yum install openssh*
然后启动即可
测试ssh 172.0.0.1是否可以
如若还是不行,重启ssh服务,关闭防火墙
3.找到SSh服务配置文件路径一般都是在 /etc/ssh这个目录下面 sshd_config 这个文件。
注意事项:SSH端口默认是22,如果要修改直接编辑22端口注意前面的“#”要去掉,然后保存重启。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献8条内容
所有评论(0)