Linux服务分类方式

阅读更多
一 Linux服务的分类

Linux服务分类方式_第1张图片
 
 
二 独立服务

Linux服务分类方式_第2张图片
 
 
三 基于xinetd服务

Linux服务分类方式_第3张图片
 
基于xinetd服务快讨论
 
四 安装xinetd服务
[root@localhost ~]# yum -y install xinetd
 
五 查看自启动状态

Linux服务分类方式_第4张图片
 
 
六实战
1、安装xinetd前查看自启动状态
[root@localhost ~]# chkconfig --list
 
Note: This output shows SysV services only and does not include native
systemd services. SysV configuration data might be overridden by native
systemd configuration.
 
If you want to list systemd services use 'systemctl list-unit-files'.
To see services enabled on particular target use
'systemctl list-dependencies [target]'.
 
netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off
network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
2、安装xinetd后查看自启动状态
[root@localhost ~]# chkconfig --list
 
Note: This output shows SysV services only and does not include native
systemd services. SysV configuration data might be overridden by native
systemd configuration.
 
If you want to list systemd services use 'systemctl list-unit-files'.
To see services enabled on particular target use
'systemctl list-dependencies [target]'.
 
netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off
network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
 
xinetd based services:
chargen-dgram: off
chargen-stream: off
daytime-dgram: off
daytime-stream: off
discard-dgram: off
discard-stream: off
echo-dgram: off
echo-stream: off
tcpmux-server: off
time-dgram: off
time-stream: off
  • Linux服务分类方式_第5张图片
  • 大小: 85.3 KB
  • Linux服务分类方式_第6张图片
  • 大小: 123.1 KB
  • Linux服务分类方式_第7张图片
  • 大小: 125.8 KB
  • Linux服务分类方式_第8张图片
  • 大小: 136.3 KB
  • 查看图片附件

你可能感兴趣的:(Linux,服务)