Linux怎么禁止服务开机启动

Linux怎么禁止服务开机启动


DIEA
浏览 2823回答 3
3回答

绝地无双

linux设置开机服务自动启动/关闭自动启动命令[root@localhost ~]# chkconfig --list 显示开机可以自动启动的服务[root@localhost ~]# chkconfig --add *** 添加开机自动启动***服务[root@localhost ~]# chkconfig --del *** 删除开机自动启动***服务[root@localhost ~]# setup 可以在shell图形终端里面配置的命令,去service里选择[root@localhost ~]# ntsysv 在shell终端图形配置开机启动服务命令

森林海

linux设置开机服务自动启动/关闭自动启动命令[root@localhost ~]# chkconfig --list 显示开机可以自动启动的服务[root@localhost ~]# chkconfig --add *** 添加开机自动启动***服务[root@localhost ~]# chkconfig --del *** 删除开机自动启动***服务[root@localhost ~]# setup 可以在shell图形终端里面配置的命令,去service里选择[root@localhost ~]# ntsysv 在shell终端图形配置开机启动服务命令,选项没上面那个多setup 、rc.local 和chkconfig三种方式都可以设置第一种)输入#setup指令进入系统服务菜单,选择你想启动的服务比如httpd,然后重起机器或者/etc/rc.d./init.d/httpdstart第二种)把启动命令放到/etc/rc.d/rc.local文件里这样就可以每次启动的时候自动启动服务了,例如对于apache,编译好apache后会在安装目录的bin下生成apachectl文件,这是个启动脚本,我们只需要把这个命令加到rc.local里就可以了(suse没有rc.local。SUSE是可以这么定义自己的脚本的,如果希望在切换运行级之前和之后运行自己的脚本,那么可以分别创建:/etc/init.d/before.local/etc/init.d/after.local)echo /usr/local/apache/bin/apachectl>> /etc/rc.d/rc.local,设置服务自动启动的方式是在rc.local里还可以加入类似以下的一些脚本:#sshd/usr/local/sbin/sshd#proftpd/usr/local/sbin/proftpd#apache/home/apache/bin/apachectl start#mysql/home/mysql/bin/safe_mysqld --port=3306 &#start oracle8i listener firstsu - oracle -c 'lsnrctl start'#start oracle8isu - oracle -c 'dbstart'第三种)通过chkconfig指令.使用chkconfig命令来把某项服务加到系统的各项运行级别中,步骤如下,1 创建启动脚本.对于apache,mysql,ssh这样的软件都是自己带的,我们只要稍微修改一下使之支持chkconfig就可以了2 修改脚本我们需要在脚本的前面加上一下2行,才能支持chkconfig命令# chkconfig: 2345 08 92## description: Automates a packet filtering firewall withipchains.#chkconfig:后面定义的使启动服务的运行级别(例子中使2345启动改服务),以及关闭和启动服务的顺序,(上例中关闭服务的顺序使8,启动的顺序使92)descriptions:对改服务的描述(上例中是ipchains包过滤),你可以换成自己想要的修改好之后执行cp 你的脚本 /etc/rc.d/init.d/脚本名chmod 700 /etc/rc.d/init.d/脚本名chkconfig --add 脚本名例如:将其加入Linux启动过程,仅在level 3, level 5级别下运行[root@Tester init.d]/sbin/chkconfig --add apache-httpd[root@Tester init.d]/sbin/chkconfig --level 35 apache-httpdon之后就可以了,以后每次重新启动服务器都会自动启动和关闭我们的服务了
打开App,查看更多内容
随时随地看视频慕课网APP