centos7無法自啟動(dòng) mysql
問題描述
阿里云ECS 安裝了mysql 5.6,使用 systemctl start mysql成功啟動(dòng)mysql,可使用 systemctl enable mysql將mysql加入到開機(jī)自啟動(dòng),可卻報(bào)錯(cuò):
[root@go ~]# mysql -Vmysql Ver 14.14 Distrib 5.6.29, for Linux (x86_64) using EditLine wrapper[root@go ~]#[root@go ~]# systemctl enable mysqlFailed to execute operation: No such file or directory[root@go ~]# systemctl enable mariadbFailed to execute operation: No such file or directory[root@go ~]#
使用systemctl enable mariadb 也是一樣的,我在Linode中的centos7是直接使用 systemctl enable mariadb 加入自啟動(dòng)的
但是運(yùn)行 systemctl enable httpd 是沒有報(bào)錯(cuò)。
[root@go ~]# chkconfigNote: This output shows SysV services only and does not include native systemd services. SysV configuration data might be overridden by native systemd configuration. If you want to list systemd services use ’systemctl list-unit-files’. To see services enabled on particular target use ’systemctl list-dependencies [target]’.aegis 0:off 1:off 2:on 3:on 4:on 5:on 6:offagentwatch 0:off 1:off 2:on 3:on 4:on 5:on 6:offnetconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:offnetwork 0:off 1:off 2:on 3:on 4:on 5:on 6:off[root@go ~]#
問題解答
回答1:systemctl list-unit-files 查看下有沒有mysql.service 文件
回答2:systemctl enable mysqld
回答3:systemctl enable mysqld.service
回答4:上面層主說的幾個(gè)命令都試了,還是沒有用:ystemctl enable mysqld.servicemysqld.service is not a native service, redirecting to /sbin/chkconfig.Executing /sbin/chkconfig mysqld on[root@iZj6c5y812icw80hzp696gZ ~]# systemctl enable mysqldmysqld.service is not a native service, redirecting to /sbin/chkconfig.Executing /sbin/chkconfig mysqld on[root@iZj6c5y812icw80hzp696gZ ~]# /sbin/chkconfig mysqld onhttp://aliyun.youhuima.cc
===========更新=============
找到了解決方法:編輯文件:vi /etc/rc.d/rc.local增加下面命令,保存/etc/rc.d/init.d/mysqld start
然后添加該文件可執(zhí)行權(quán)限:chmod +x /etc/rc.d/rc.local
經(jīng)過驗(yàn)證該方案可行。
相關(guān)文章:
1. apache - 本地搭建wordpress權(quán)限問題2. docker 下面創(chuàng)建的IMAGE 他們的 ID 一樣?這個(gè)是怎么回事????3. css3 - transition屬性當(dāng)鼠標(biāo)一開的時(shí)候設(shè)置的時(shí)間不起作用4. 熱切期待朱老師的回復(fù),網(wǎng)頁視頻在線播放器插件配置錯(cuò)誤5. macos - mac下docker如何設(shè)置代理6. Android下,rxJava+retrofit 并發(fā)上傳文件和串行上傳文件的效率為什么差不多?7. angular.js - ng-grid 和tabset一起用時(shí),grid width默認(rèn)特別小8. javascript - web網(wǎng)頁版app返回上一頁按鈕在ios設(shè)備失效怎么辦?安卓上可以,代碼如下,請(qǐng)大神幫助,萬分感謝。9. Whitelabel錯(cuò)誤頁面發(fā)生意外錯(cuò)誤(類型=未找到,狀態(tài)= 404)/WEB-INF/views/home.jsp10. java - Spring Mvc全局異常處理器@ControllerAdvice不起作用?
