centos7無法自啟動 mysql
問題描述
阿里云ECS 安裝了mysql 5.6,使用 systemctl start mysql成功啟動mysql,可使用 systemctl enable mysql將mysql加入到開機自啟動,可卻報錯:
[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 加入自啟動的
但是運行 systemctl enable httpd 是沒有報錯。
[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:上面層主說的幾個命令都試了,還是沒有用: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)過驗證該方案可行。
相關(guān)文章:
1. angular.js使用$resource服務(wù)把數(shù)據(jù)存入mongodb的問題。2. javascript - 如何獲取未來元素的父元素在頁面中所有相同元素中是第幾個?3. python小白 想做一個能夠計算圓周率的代碼,不知道怎么寫4. mysql - 數(shù)據(jù)庫建表方面的問題?5. mysql刪除一個空數(shù)據(jù)庫報錯Table storage engine for ’proc’ doe6. javascript - 我的站點貌似被別人克隆了, google 搜索特定文章,除了域名不一樣,其他的都一樣,如何解決?7. javascript - Ajax加載Json時,移動端頁面向左上角縮小一截兒,加載完成后才正常顯示,這該如何解決?8. python中怎么對列表以區(qū)間進行統(tǒng)計?9. css - 如何讓圖片像雲(yún)一樣的行為?10. javascript - 解釋下這種函數(shù)定義
