sshd 服务问题,怎么做成系统启动,6.9靠谱吗?
- 安装了CentOS-7-x86_64-Minimal-1611
- 运行命令yum install -y openssh-server,第一遍没有-y,后来reinstall的
- /etc/init.d/目录下没有sshd这个文件,
相关的什么check也不行,怎么做成系统启动?
炒蛋啊! 有6.9这个版本靠谱吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
service sshd start 不行就试试 systemctl enable sshd.service
在Centos7中,Systemd进程取代了init进程,systemctl代替service和chkconfig两个命令。
启动sshd服务:
重启sshd服务:
设置sshd服务开机自启:
7版本和6版本在服务的管理上有很大的区别,你提到打得“/etc/init.d/”是6版本的形式,现在7统一用命令systemctl对服务进行统一管理。具体细节请参考systemctl相关命令的文档说明.
(1)设置开机自启动服务:
systemctl enabled sshd.service
或systemctl enabled sshd
(2)设置临时启动服务:
systemctl start sshd.service
或systemctl start sshd
(3)设置临时关闭服务:
systemctl stop sshd.service
或systemctl stop sshd
(4)设置重启服务:
systemctl restart sshd.service
或systemctl restart sshd
minimal自带ssh服务,只需要service ssh start 启动,然后chkcofig --level 2345 sshd on 开启开机自启动即可。
为什么你不想想这是你自己的知识体系没更新的问题呢?