Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4023077
  • 博文数量: 626
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 11080
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-23 13:08
文章分类

全部博文(626)

文章存档

2015年(72)

2014年(48)

2013年(506)

分类: Mysql/postgreSQL

2015-02-03 18:42:57

MySQL在Ubuntu设置自启动的一个故障解决

在解决MySQL自启动,执行命令:

点击(此处)折叠或打开

  1. # chkconfig --list
  2. The program 'chkconfig' is currently not installed. You can install it by typing:
  3. apt-get install chkconfig

发现没安装chkconfig脚本,安装它:

点击(此处)折叠或打开

  1. root@i-DFAFA998:~# apt-get install chkconfig
  2. Reading package lists... Done
  3. ……

安装后执行:

点击(此处)折叠或打开

  1. # chkconfig --list | grep mysql
  2. mysql 0:off 1:off 2:off 3:off 4:off 5:off 6:off
可见MySQL不是自启动服务。

用chkconfig让MySQL自启动时,执行命令报错:

点击(此处)折叠或打开

  1. # chkconfig -a mysql
  2. /sbin/insserv: No such file or directory
  3. mysql 0:off 1:off 2:off 3:off 4:off 5:off 6:off
网上提供的解决方法是:

点击(此处)折叠或打开

  1. # ln -s /usr/lib/insserv/insserv /sbin/insserv
执行命令,继续报错

点击(此处)折叠或打开

  1. # chkconfig mysql on
  2. The script you are attempting to invoke has been converted to an Upstart
  3. job, but lsb-header is not supported for Upstart jobs.
  4. insserv: warning: script 'mysql' missing LSB tags and overrides
  5. insserv: Default-Start undefined, assuming empty start runlevel(s) for script `mysql
继续查找原因,发现是:

chkconfig命令是用于RedHat/Fedora发行版的,而对于像Ubuntu之类的Debian发行版,应该使用这个命令:

点击(此处)折叠或打开

  1. sudo update-rc.d mysql defaults

验证一下:

点击(此处)折叠或打开

  1. # chkconfig --list | grep mysql
  2. mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
果然搞定了!

最后提醒一句,别忘了删除之前建立的符号连接

点击(此处)折叠或打开

  1. # rm -f /sbin/insserv

阅读(2634) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~