查看suselinux启动项?
进去终端输入chkconfig命令可以查看
linux查看redmine有没有启动?
不用注册,只需设置为启动服务就行chkconfig--addredminechkconfig--level123456redmineon
linux怎么查看服务是否运行?
可以在Linux下输入命令:
1、$servicesshdstatus2、#serviceservicenamestatus是当前状态3、#chkconfig--listservicename是查看启动状态,也就是是否开机自动启动注:
1、如果service和chkconfig找不到,可以试试/sbin/service和/sbin/chkconfig2、如果用ubuntu好像是要用/etc/init.d/servicenamestatus查看当前状态(servicename就是你要查的服务名)扩展资料:查看某项服务当前启动状态的其他方式一、利用进程来查看 命令里ps-aux|grepxxx是查看某个进程或者服务是否存在。
二、利用services命令 1、查看单个服务的运行状态:service服务名status 如:#servicesshdstatus openssh-daemon(pid3701)正在运行…
2、查看所有服务的运行状态: service–status-all