科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网服务器频道如何设置某项服务为自动启动

如何设置某项服务为自动启动

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

如何设置某项服务为自动启动,如何关闭/暂停某项服务?

2008年3月17日

关键字: JSP DNS MySQL SMTP List 服务器 操作系统 Linux

  • 评论
  • 分享微博
  • 分享邮件

问题
如何设置某项服务为自动启动
如何关闭/暂停某项服务

解决方案
用/sbin/chkconfig命令 chkconfig --list 查看全部服务状态
例如:
运行chkconfig --list httpd
看自动启动状态
httpd 0:off 1:off 2:off 3:on 4:on 5:on 6:off
0~6是指运行级别,一般服务器都运行在3这个级别上。

添加为自动启动
chkconfig --add httpd
或者指定运行级别
chkconfig --level 345 httpd on

停止自动启动
chkconfig --del httpd
或指定运行级别
chkconfig --level 345 httpd off

Prim@Hosting提供的系统服务,详见下表

FTP服务:

/etc/init.d/muddleftpd stop

/etc/init.d/muddleftpd start

/etc/init.d/muddleftpd restart

SMTP服务:

/etc/init.d/postfix stop

/etc/init.d/postfix start

/etc/init.d/postfix reload

POP3服务:

/etc/init.d/courier-pop3d stop

/etc/init.d/courier-pop3d start

/etc/init.d/courier-pop3d restart

HTTP服务:

/etc/init.d/httpd stop/start/restart

JSP服务:

/etc/init.d/resin stop/start/restart

DNS服务:

/etc/init.d/named stop/start/restart

MySQL服务:

/etc/init.d/mysqld stop/start/restart

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章