博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql安装错误
阅读量:6650 次
发布时间:2019-06-25

本文共 1300 字,大约阅读时间需要 4 分钟。

问题!!

[root@lsx-001 mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
FATAL ERROR: please install the following Perl modules before executing ./scripts/mysql_install_db:
Data::Dumper
解决办法安装
[root@lsx-02 mysql]# yum install -y autoconf

[root@lsx-001 mysql]# yum list|grep -i perl |grep -i dumper

perl-Data-Dumper.x86_64 2.145-3.el7 base

2.

Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

[root@lsx-02 mysql]# yum list |grep 'libaio'

[root@lsx-02 mysql]# yum install -y libaio-devel.x86_64

3.启动报错Starting MySQL.Logging to '/data/mysql/localhost.localdomain.err'.

./usr/local/mysql/bin/mysqld_safe: line 178: 2830 Killed nohup /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/data/mysql --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/data/mysql/localhost.localdomain.err --pid-file=/data/mysql/localhost.localdomain.pid < /dev/null > /dev/null 2>&1
ERROR! The server quit without updating PID file (/data/mysql/localhost.localdomain.pid).
解决办法:
1.cd /usr/local/mysql(进入mysql安装目录)
2.chown -R mysql.mysql .
3.su - mysql
4.cd /usr/local/mysql
5.scripts/mysql_install_db

本文转自 虾米的春天 51CTO博客,原文链接:http://blog.51cto.com/lsxme/2047996,如需转载请自行联系原作者

你可能感兴趣的文章
SPOJ3267 D-query(主席树模版)
查看>>
eslint的使用和配置
查看>>
实验报告五
查看>>
浅测微软谷歌在线办公应用
查看>>
Shell重启Tomcat脚本
查看>>
自适应网页布局可借鉴网站
查看>>
设置 viewport 实现定宽网页 WebApp 下布局自适应
查看>>
webpack+vue 我的视角(持续更新)
查看>>
[Android Pro] Android性能优化典范第一季
查看>>
[HAOI2006]受欢迎的牛
查看>>
jdbc 链接池
查看>>
快速排序
查看>>
状态模式
查看>>
m4-第7周作业
查看>>
微信更换上一次记录地址
查看>>
django rest framework批量上传图片及导入字段
查看>>
原生js实现Ajax
查看>>
android
查看>>
jasypt-spring-boot
查看>>
(诊断)为GitHub添加SSH key时出现“Could not open a connection to your authentication agent”错误的应对方案(转)...
查看>>