mysql提示service mysql3306 does not support chkconfig错误
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-20 13:57:42 浏览: 评论:0
在linux中安装mysql提示service mysql3306 does not support chkconfig错误了,碰到此错误我们要如何解决呢?下面来看看吧.
今天,在安装MySQL多实例的时候遇到这个问题,让MySQL支持开机自启动,但是出现下面的错误提示:
root@localhost ~]# chkconfig –add mysql3306,service mysql3306 does not support chkconfig
经过查资料,弄明白了,在启动脚本#!/bin/sh必须后面加入一下代码:
- #gedit /etc/init.d/mysql3306
- # chkconfig: 2345 10 50
- # description: mysql3306 --phpfensi.com
其中2345是默认启动级别,级别有0-6共7个级别.
等级0表示:表示关机
等级1表示:单用户模式
等级2表示:无网络连接的多用户命令行模式
等级3表示:有网络连接的多用户命令行模式
等级4表示:不可用
等级5表示:带图形界面的多用户模式
等级6表示:重新启动
10是启动优先级,90是停止优先级,优先级范围是0-100,数字越大,优先级越低.
运行级文件:
每个被chkconfig管理的服务需要在对应的init.d下的脚本加上两行或者更多行的注释,第一行告诉chkconfig缺省启动的运行级以及启动和停止的优先级,如果某服务缺省不在任何运行级启动,那么使用 – 代替运行级,第二行对服务进行描述,可以用跨行注释.
例如,random.init包含三行:
# chkconfig: 2345 20 80
# description:
比如,如何增加一个服务:
1.服务脚本必须存放在/etc/ini.d/目录下;
2.chkconfig –add servicename
在chkconfig工具服务列表中增加此服务,此时服务会被在/etc/rc.d/rcN.d中赋予K/S入口了.
3.chkconfig –level mysqld on
修改服务的默认启动等级.
Tags: service mysql3306 does not
相关文章
- ·Mysql出现Field * doesn't have a default value(2014-10-02)
- ·MySQL无法启动:Table mysql.host doesn t exist(2014-10-09)
- ·mysql中FUNCTION xxx.LEN does not exist错误(2014-10-12)
- ·mysql提示The user specified as a definer ('root'@'%') does not exist(2015-04-18)
- ·mysql删除数据提示Cannot delete or update(2014-09-24)
- ·解决Navicat cannot proceed because system tables办法(2014-09-24)
- ·Mysql启动报错’./mysql-bin.index’ not found的问题(2014-09-25)
- ·mysql中null,not null,default,auto_increment详解(2014-10-02)
- ·PDO连接数据库提示could not find driver解决办法(2014-10-08)
- ·mysql中is not null和!=null及null介绍(2014-10-09)
- ·mysql远程连接 Host * is not allowed to connect to this MySQL server(2014-10-09)
- ·mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication(2014-10-13)
- ·mysql防止重复插入相同记录 insert if not exists(2014-10-17)
- ·Navicat 导出mysql数据库的时候出现 “Cannot proceed because system(2015-04-18)
- ·解决mysqlnd cannot connect to MySQL 4.1+ using the old insec(2015-04-20)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)