ssh的启动方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在linux下,开机后,ssh的启动方法,以kali为例
1. service ssh start
2. /etc/init.d/ssh start
注:centos 的为service sshd start
可以用这两种方法来进行启动,但是启动完成后,每次关机后,在开机就不生效了,需要再次启动。
开机自动启动ssh服务的方法:
只需要将ssh的启动命令加入到启动/etc/rc.local文件中,如:
用vi命令进入到 文件中:vi /etc/rc.local
在文件中加入 service ssh start 或则 /etc/init.d/ssh start
然后每次重启设备,ssh就已经正常的启动了。
注:centos为 /etc/init.d/sshd start
ssh的服务是否运行的查看命令:
1.service ssh status
2.netstat -atp |grep ssh ,观察是否有连接的存在。
以上也是自己在百度上寻找,实验后,感觉有用,所以记录总结一下,欢迎补充,一起学习!!!
转载于:https://blog.51cto.com/11559685/1977939
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)