最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Ubuntu下设置MySQL自启动故障解决一例

来源:动视网 责编:小采 时间:2020-11-09 14:24:30
文档

Ubuntu下设置MySQL自启动故障解决一例

Ubuntu下设置MySQL自启动故障解决一例:Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program 'chkconfig' is currently not installed. You can install it
推荐度:
导读Ubuntu下设置MySQL自启动故障解决一例:Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program 'chkconfig' is currently not installed. You can install it


Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program

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

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

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

[email protected]:~# apt-get install chkconfig
Reading package lists... Done
……

安装后执行:

# chkconfig --list | grep mysql
mysql 0:off 1:off 2:off 3:off 4:off 5:off 6:off

可见MySQL不是自启动服务。

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

# chkconfig -a mysql
/sbin/insserv: No such file or directory
mysql 0:off 1:off 2:off 3:off 4:off 5:off 6:off

网上提供的解决方法是:

# ln -s /usr/lib/insserv/insserv /sbin/insserv

执行命令,继续报错

# chkconfig mysql on
The script you are attempting to invoke has been converted to an Upstart
job, but lsb-header is not supported for Upstart jobs.
insserv: warning: script 'mysql' missing LSB tags and overrides
insserv: Default-Start undefined, assuming empty start runlevel(s) for script `mysql'
......

继续查找原因,发现是:

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

sudo update-rc.d mysql defaults

验证一下:

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

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

# rm -f /sbin/insserv

本文永久更新链接地址:

文档

Ubuntu下设置MySQL自启动故障解决一例

Ubuntu下设置MySQL自启动故障解决一例:Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program Ubuntu下解决MySQL自启动,执行命令: # chkconfig --listThe program 'chkconfig' is currently not installed. You can install it
推荐度:
标签: 故障 启动 ubuntu
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top