码迷,mamicode.com
首页 >  
搜索关键字:服务不支持 chkconfig    ( 1456个结果
Linux-Service服务
用途说明service命令用于对系统服务进行管理,比如启动(start)、停止(stop)、重启(restart)、查看状态(status)等。相 关的命令还包括chkconfig、ntsysv等,chkconfig用于查看、设置服务的运行级别,ntsysv用于直观方便的设置各个服务是否自动 启动。service命令本身是..
分类:系统相关   时间:2014-10-22 18:32:02    阅读次数:273
cat /etc/init.d/httpd
# cat /etc/init.d/httpd#!/bin/bash## httpd Startup script for the Apache HTTP Server## chkconfig: - 85 15# description: The Apache HTTP Server ...
分类:Web程序   时间:2014-10-22 18:05:32    阅读次数:352
CentOS 7 上systemctl 的用法
CentOS7上systemctl的用法我们对service和chkconfig两个命令都不陌生,systemctl是管制服务的主要工具,它整合了chkconfig与service功能于一体。systemctlis-enablediptables.servicesystemctlis-enabledservicename.service#查询服务是否开机启动systemctlenable*.service#开..
分类:其他好文   时间:2014-10-20 19:41:58    阅读次数:246
Linux下chkconfig命令详解(转)
Linux下chkconfig命令详解chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkcon...
分类:系统相关   时间:2014-10-20 14:52:57    阅读次数:208
http2.4 的启动脚本
#!/bin/bash# httpd starts/stop the at daemon#chkconfig: 345 61 29#description: runs apache as httpd#Source function library. /etc/init.d/functionsexec...
分类:Web程序   时间:2014-10-19 07:56:18    阅读次数:226
Redhat关闭SELinux和防火墙的办法(转)
Redhat使用了SELinux来增强安全,关闭的办法为:1. 永久有效修改 /etc/selinux/config 文件中的 SELINUX="" 为 disabled ,然后重启。2. 即时生效setenforce 0关闭防火墙的方法为:1. 永久性生效开启:chkconfig iptables...
分类:系统相关   时间:2014-10-16 18:34:02    阅读次数:254
设置resin在linux下的默认启动
第一种方式: 在/etc/init.d/下添加一个启动脚本 #vi resin.sh #!/bin/sh #chkconfig:345 99 10 #description:auto start resin #/etc/init.d/resin.sh export export JAVA_HOME=/usr/java/jdk1.7 export CLASSP...
分类:系统相关   时间:2014-10-14 19:03:49    阅读次数:208
chkconfig系统服务启动设置
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level ][系统服务...
分类:其他好文   时间:2014-10-10 00:58:43    阅读次数:196
beanstalkd自动安装脚本
#! /bin/sh # chkconfig: 2345 55 25 # Description: Startup script for nginx webserver on Debian. Place in /etc/init.d and # run 'update-rc.d -f nginx defaults', or use the appropriate command on your #...
分类:其他好文   时间:2014-10-09 14:36:04    阅读次数:322
[Linux] CentOS 加入开机启动
1、在/etc/init.d/目录下新建一个文件:autostart.sh#!/bin/sh#chkconfig: 2345 80 80#description: auto start web serverservice iptables startsh /usr/jboss-as-7.1.1.Fi...
分类:系统相关   时间:2014-10-09 01:26:37    阅读次数:235
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!