如何查看或停止Linux启动的服务?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看或停止Linux启动的服务?相关的知识,希望对你有一定的参考价值。

参考技术A SysV服务管理系统 例如 RedHat6等发行版\\x0d\\x0aservice --status-all 查看所有服务\\x0d\\x0a\\x0d\\x0aservice servicename status 查看指定服务状态\\x0d\\x0aservice servicename start|stop|restart 启动|停止|重启 指定服务\\x0d\\x0a\\x0d\\x0asystemd服务管理系统 如CentOS 7等\\x0d\\x0asystemctl is-enabled servicename.service #查询服务是否开机启动\\x0d\\x0asystemctl enable *.service #开机运行服务\\x0d\\x0asystemctl disable *.service #取消开机运行\\x0d\\x0asystemctl start *.service #启动服务\\x0d\\x0asystemctl stop *.service #停止服务\\x0d\\x0asystemctl restart *.service #重启服务\\x0d\\x0asystemctl reload *.service #重新加载服务配置文件\\x0d\\x0asystemctl status *.service #查询服务运行状态\\x0d\\x0asystemctl --failed #显示启动失败的服务

linux系统如何使用service命令怎么启动、停止或重启某些系统服务进程

一堆人都没有回答到关键,提示未被识别的命令,所谓命令,当然是指service未被识别了。楼主看看是不是启动vsftp时,service拼写错误?
vsftpd这个服务名在最新版也没有变过。
建议如下:
一、在/etc/init.d/目录看看能不能找到vsftpd
find
/etc/init.d|grep
vsftpd
二、使用/etc/init.d/vsftpd
start看是否可以启动
三、vsftpd是编译的,有没有在编译之前,系统自带有vsftpd,如果有,那么编译时指定单独路径,并且在编译后的路径下去启动vsftpd,也可以把启动加入到系统服务。
参考技术A service XXX stop
service xxx start
service命令好像只有RADHAT可以用本回答被提问者采纳

以上是关于如何查看或停止Linux启动的服务?的主要内容,如果未能解决你的问题,请参考以下文章

linux 如何启动,停止,查看服务

如何查看和停止Linux启动的服务

linux如何查看mysql是否启动

linux如何查看mysql是否启动

如何终止LINUX自启动

如何查看linux服务器是不是启动