码迷,mamicode.com
首页 >  
搜索关键字:服务不支持 chkconfig    ( 1456个结果
chkconfig-增加一个服务设置服务自启动
参考 http://www.cnblogs.com/panjun-Donet/archive/2010/08/10/1796873.html 如何增加一个服务: 1.服务脚本必须存放在/etc/ini.d/目录下; 2.chkconfig --add servicename 在chkconfig工具...
分类:其他好文   时间:2015-01-22 12:46:05    阅读次数:217
centos6.5安装Apache+MySQL+PHP
一、安装 MySQL首先来进行 MySQL 的安装。打开超级终端,输入:[root@localhost ~]# yum install mysql mysql-server安装完毕,让 MySQL 能够随系统自动启动:[root@localhost ~]# chkconfig --levels 23...
分类:数据库   时间:2015-01-21 18:01:57    阅读次数:188
chkconfig
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level ][系统服务...
分类:其他好文   时间:2015-01-20 20:07:16    阅读次数:186
weblogic启动脚本
1、创建weblogic启动文件[root@weblogic01~]#cd/etc/rc.d/init.d/[root@weblogic01init.d]#vimweblogic将一下脚本复制到weblogic文件中#!/bin/bash #chkconfig:3452080 #description:WeblogicServerautostart/stopscript. #/etc/rc.d/init.d/weblogic #Pleaseeditthevariable e..
分类:Web程序   时间:2015-01-20 18:31:41    阅读次数:186
centos 安装apache
1.检查有没有安装过#rpm -qa httpd如果没有返回信息,说明没有安装过2.#yum install httpd3.#service httpd start#chkconfig httpd on
分类:Web程序   时间:2015-01-19 12:27:17    阅读次数:161
redis服务启动关闭脚本
代码如下:# chkconfig: 2345 90 10# description: service of redis for start and stop add by tomener PATH=/usr/local/bin:/sbin:/usr/bin:/binREDISPORT=6379EX....
分类:其他好文   时间:2015-01-16 16:18:10    阅读次数:159
rsync启动脚本
rsync启动脚本01#!/bin/bash www.ahlinux.com 02#03# rsyncd Thisshellscript takes care of starting and stopping04# standalone rsync.05#06# chkconfig:...
分类:其他好文   时间:2015-01-15 12:18:09    阅读次数:178
Linux重新设置服务及开机启动服务
今天遇到Linux重启后,系统开机启动到某个服务后,挂住了。但是可以通过SSH进行远程连接。这时候,可以通过语句,重新进行服务的开机启动设置,方法如下:foriin`chkconfig--list|grep3:on`;dochkconfig$ioff;donechkconfig--listforiincrondnetworksshdrsyslog;dochkconfig$io..
分类:系统相关   时间:2015-01-14 18:18:46    阅读次数:213
systemctl
旧指令新指令使某服务自动启动chkconfig --level 3 httpd onsystemctl enable httpd.service使某服务不自动启动chkconfig --level 3 httpd offsystemctl disable httpd.service检查服务状态ser...
分类:其他好文   时间:2015-01-12 20:56:41    阅读次数:145
服务管理
一、服务的分类 1.rpm安装包的服务 2.源码包安装的服务二、查看服务 rpm安装的服务可以通过 chkconfig -list 查看, rpm安装的服务分 "独立服务" 和 "xinetd服务" 源码包安装的服务需要到安装目录下手动查看。三、独立服务的启动 1. /etc/init.d...
分类:其他好文   时间:2015-01-11 20:22:35    阅读次数:177
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!