码迷,mamicode.com
首页 >  
搜索关键字:服务不支持 chkconfig    ( 1456个结果
service httpd does not support chkconfig
pache 作为linux启动就运行服务程序 cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd 但是在执行: chkconfig --add httpd chkconfig httpd on 的时候出现错误:service ...
分类:Web程序   时间:2015-02-22 21:51:08    阅读次数:131
linux系统启动流程
系统启动流程: POST-->BIOS(BootSequence引导次序)-->MBR(bootloader,446byte)-->Kernel-->initrd(initramfs)-->(ROOTFS)-->/sbin/init(/etc/inittab)内核设计风格: 单内核: 所有功能都在一个内核中。Linux采用单内核,但是采用了微内核的设计思想。LWP(..
分类:系统相关   时间:2015-02-20 00:13:47    阅读次数:260
linux-常用命令
1) 临时生效,重启后复原开启: service iptables start关闭: service iptables stop2) 永久性生效,重启后不会复原开启: chkconfig iptables on关闭: chkconfig iptables off3)永久关闭SELinux vi /e...
分类:系统相关   时间:2015-02-11 23:15:09    阅读次数:256
php-fpm的CentOS开机自启脚本
#将php-fpm设置成服务,并实现开机自动启动#说明:作者仅在CentOS7.0上进行了测试,而且没有进行可靠性和稳定性的测试!vi/etc/rc.d/init.d/fpm chmod+x/etc/rc.d/init.d/fpm chkconfig--addfpm chkconfigfpmon/etc/rc.d/init.d/fpm文件的内容如下:#!/bin/sh #chkconfig:23456..
分类:Web程序   时间:2015-02-07 19:06:54    阅读次数:226
nginx开机自动启动脚本
#将nginx设置成服务,并实现开机自动启动#说明:作者仅在CentOS7.0上进行了测试,而且没有进行可靠性和稳定性的测试!cp/tmp/nginx/etc/rc.d/init.d/nginx chmod+x/etc/rc.d/init.d/nginx chkconfig--addnginx chkconfignginxon/tmp/atlas文件的内容如下:#!/bin/sh #chkconfig..
分类:其他好文   时间:2015-02-07 06:58:58    阅读次数:96
zabbix2.4安装笔记
zabbix2.4安装笔记一、关闭防火墙和Selinux临时性的完全关闭防火墙,可以不重启机器:/etc/init.d/iptablesstatus##查看防火墙状态/etc/init.d/iptablestop##本次关闭防火墙/etc/init.d/iptablerestart##重启防火墙永久性关闭防火墙:chkconfig--level35iptablesoff##注意中间..
分类:其他好文   时间:2015-02-06 19:04:56    阅读次数:215
CentOS yum安装redis
安装redis yum?install?redis ? ??2. ?安装php-redis扩展 yum?install?php-redis ?? ? 3. ?启动redis,并设定开机自动启动 service?redis?start chkconfig?redis?on ? 完成,安装就是这么简单、...
分类:其他好文   时间:2015-02-04 00:53:11    阅读次数:226
MySQL在Ubuntu设置自启动的一个故障解决
MySQL在Ubuntu设置自启动的一个故障解决作者:chszs,转载需注明。博客主页:http://blog.csdn.net/chszs在解决MySQL自启动,执行命令:# chkconfig --list The program 'chkconfig' is currently not installed. You can install it by typing: apt-get ins...
分类:数据库   时间:2015-02-03 19:28:36    阅读次数:181
centos 安装amp 运行环境+配置虚拟地址
一、安装 MySQL首先来进行 MySQL 的安装。打开超级终端,输入:[root@localhost ~]# yum install mysql mysql-server安装完毕,让 MySQL 能够随系统自动启动:[root@localhost ~]# chkconfig --levels 23...
分类:其他好文   时间:2015-02-03 10:41:53    阅读次数:243
centos云服务器mysql的安装和配置
1. 安装mysql#yum -y install mysql-server2. 设置自启动和启动mysql设置MySQL服务随系统启动自启动#chkconfig mysqld on确认MySQL自启动(如果2--5为on的状态就OK)#chkconfig --list mysqld启动MySQL服...
分类:数据库   时间:2015-02-03 00:36:15    阅读次数:271
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!