服务端口信息:/etc/service文件中
设置开机后立即启动服务:
1.setup
tab键,空格键选择某项服务
2.chkconfig
--list:列出当前各项服务的状态
--add:给chkconfig增加一个服务名称,该service_name
必须在/etc/init.d下面
--del:删除chkconfig管理的一个服务
--level: 设置某个服务在该level下启动(on)或关闭(off)
eg:让std在5运行等级下启动
chkconfig --level 5 atd on
将自己建立的服务加入chkconfig管理中
vim /etc/init.d/myvbird
chkconfig --add myvbird
chkconfig --list myvbird
删除myvbird
chkconfig --del myvbird
阅读(712) | 评论(0) | 转发(0) |