In CentOS7, can not start MySQL(在CentOS7,无法启动MySQL)
问题描述
我想在 CentOS7 上使用 MySQL.使用 yum 安装 MySQL 包.
I want use MySQL on CentOS7. installed MySQL package using yum.
[root@node01 ~]# yum install mysql mysql-*
那么,
[root@node01 ~]# systemctl start mysqld.service
Failed to issue method call: Unit mysqld.service failed to load: No such file or directory.
我无法执行 MySQL.我该如何解决这个问题?
i can not execute MySQL. How can i solve this problem?
推荐答案
当你运行时
yum install mysql
命令默认安装 mariadb 而不是 mysql.所以试试下面这个命令
command by default it installs mariadb not mysql. so try this following command
yum list installed | grep mariadb
如果 mariadb-server 丢失,请尝试以下命令
if mariadb-server is missing try this following command
yum install mariadb-server
它安装服务器包然后启动服务
it installs the server package then start the service
systemctl start mariadb
或
service mariadb start
我的问题就这样解决了.谢谢
My issue is solved in this way. Thanks
这篇关于在CentOS7,无法启动MySQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在CentOS7,无法启动MySQL
基础教程推荐
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
