如何在Linux下查看服务的运行情况?
可以在Linux下输入命令:
1、$service sshd status
2、#service servicename status是当前状态
3、#chkconfig –list servicename是查看启动状态,也就是是否开机自动启动 注: 1、如果service和chkconfig 找不到,可以试试/sbin/service和/sbin/chkconfig 2、如果用ubuntu好像是要用/etc/init.d/servicename status查看当前状态 (servicename就是你要查的服务名)
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
linux如何启动,停止,查看服务?
可以通过service xxx start/stop/resrart控制,可以通过systemctl,也可以通过/etc/init.d/xxx.service来控制。
如何查看linux系统安装了哪些服务?
因不同版本的操作系统可能使用的命令不一样或者有些命令在某些操作系统不可用,现列举一些常用查看命令(基于我的linux版本)。我的操作系统版本如下:
1.service –status-all 输出结果较多,截取部分。比如查看MySQL服务安装了没有,可从列出的信息中查找。
2.chkconfig –list可以使用该命令查找特定的服务是否安装(前提是你指定该服务运行的名称),比如MySQL,键入命令:chkconfig –list mysql3.ps aux4.进入init.d目录查看5.netstat -lntp6.ntsysv其中*号表示开机启动。如果想让某个服务开机启动,可以使用chkconfig mysql on。另有查看mysql状态/停止mysql服务/启动mysql服务 分别为:service mysql status/stop/start。
linux怎么查看一个服务是否开启?
1、ps aux 或netstat -tlunp ps是进程查看命令
netstat是端口查看命令
在Linux系统中,服务一定是有进程的,所以使用ps命令可以查看服务运行情况。
另外,Linux服务多数是网络服务,所以通过netstat命令也可以查看服务运行状态。
2、service 服务名 status
比如查看httpd的Web服务的运行状态,执行service httpd status,
3、/sbin/service –status-all |grep “服务名”
比如查看httpd的web服务
执行 /sbin/service –status-all |grep “httpd”即可。
4、chkconfig –list
比如查看httpd的web服务
执行 chkconfig –list |grep “httpd”即可。
1
友好的显示所有服务的运行状态:
service –status-all
chkconfig –list
2
查看单个服务的运行状态
如
service sshd status
3
查看启动状态,是否开机自动启动
chkconfig –list servicename
开机
1:单用户模式
2:多用户模式,不具有网络档案系统(NFS)功能
3:多用户模式,具有网络档案系统(NFS)功能
4:某些发行版linux用这个等级进入 X windows 系统
5:同4
6:重新启动
注意:切记无用1和6
关闭或开启服务状态:
chkconfig –level 345 nscd off/on
4
增加服务:
chkconfig –add xxx
( 注意:服务脚本必须存放在 /etc/init.d/目录下)
如mysqld
#cp support-files/mysql.server etc/init.d/mysqld
chkconfig mysqld on (各等级为ON,各等级为2345等级)
这样就会以系统服务的形式启动了
删除服务:
chkconfig –del XXX
runlevel 查看当前等级。
注意:运行级别就是操作系统正在运行的功能级别。