初始化mysql数据库提示缺少Data:dumper模块解决方法
admin | 技术教程, 操作系统, 服务器相关, 网络技术 | 三月 25th, 2019 初始化mysql数据库提示缺少Data:dumper模块解决方法已关闭评论
初始化mysql数据库时出现下面错误,原因是缺少Data:dumper模块
[root@localhost 5.6.42]# ./scripts/mysql_install_db --user=mysql
FATAL ERROR: please install the following Perl modules before executing ./scripts/mysql_install_db:
Data::Dumper
解决方法 :安装autoconf库
命令:yum -y install autoconf //此包安装时会安装Data:Dumper模块
安装完autoconf库,再运行./scripts/mysql_install_db –user=mysql,问题消失!!!