博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MariaDB 10.1源码安装执行mysql_install_db报错"system tables failed"
阅读量:2494 次
发布时间:2019-05-11

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

--
初始化MySQL数据库的数据文件失败
[root@localhost maria]# ./scripts/mysql_install_db --user=mysql  --datadir=/maria_data/
Installing MariaDB/MySQL system tables in '/maria_data/' ...
2016-06-17 17:31:21 140423554045920 [Note] ./bin/mysqld (mysqld 10.1.14-MariaDB) starting as process 13621 ...
Installation of system tables failed!  Examine the logs in
/maria_data/ for more information.
The problem could be conflicting information in an external
my.cnf files. You can ignore these by doing:
    shell> ./bin/scripts/mysql_install_db --defaults-file=~/.my.cnf
You can also try to start the mysqld daemon with:
    shell> ./bin/mysqld --skip-grant --general-log &
and use the command line tool ./bin/mysql
to connect to the mysql database and look at the grant tables:
    shell> ./bin/mysql -u root mysql
    mysql> show tables;
Try 'mysqld --help' if you have problems with paths.  Using
--general-log gives you a log in /maria_data/ that may be helpful.
The latest information about mysql_install_db is available at
https://mariadb.com/kb/en/installing-system-tables-mysql_install_db
MariaDB is hosted on launchpad; You can find the latest source and
email lists at http://launchpad.net/maria
Please check all of the above before submitting a bug report
at http://mariadb.org/jira
报错原因:
与/etc/my.cnf相冲突
解决方法:
将/etc/my.cnf改名
[root@localhost maria]# mv /etc/my.cnf /etc/my.cnf_5.7
--再次初始化数据文件成功
[root@localhost maria]# ./scripts/mysql_install_db --user=mysql  --datadir=/maria_data/
.....
2016-06-17 17:37:16 139707541080032 [Note] InnoDB: Highest supported file format is Barracuda.
2016-06-17 17:37:16 139707541080032 [Note] InnoDB: 128 rollback segment(s) are active.
2016-06-17 17:37:16 139707541080032 [Note] InnoDB: Waiting for purge to start
2016-06-17 17:37:16 139707541080032 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.29-76.2 started; log sequence number 1616819
2016-06-17 17:37:16 139706685712128 [Note] InnoDB: Dumping buffer pool(s) not yet started
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
To do so, start the server, then issue the following commands:
'./bin/mysqladmin' -u root password 'new-password'
'./bin/mysqladmin' -u root -h localhost.localdomain password 'new-password'
Alternatively you can run:
'./bin/mysql_secure_installation'
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the MariaDB Knowledgebase at http://mariadb.com/kb or the
MySQL manual for more instructions.
You can start the MariaDB daemon with:
cd '.' ; ./bin/mysqld_safe --datadir='/maria_data/'
You can test the MariaDB daemon with mysql-test-run.pl
cd './mysql-test' ; perl mysql-test-run.pl
Please report any problems at http://mariadb.org/jira
The latest information about MariaDB is available at http://mariadb.org/.
You can find additional information about the MySQL part at:
http://dev.mysql.com
Support MariaDB development by buying support/new features from MariaDB
Corporation Ab. You can contact us about this at sales@mariadb.com.
Alternatively consider joining our community based development effort:
http://mariadb.com/kb/en/contributing-to-the-mariadb-project/

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/26506993/viewspace-2120402/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/26506993/viewspace-2120402/

你可能感兴趣的文章
Android如何在一个线性布局里完美显示两个listview啊?
查看>>
TortoiseGit 使用教程
查看>>
SQL表连接查询(inner join、full join、left join、right join)
查看>>
DB2中循环日期跑数据
查看>>
工作笔记还是蛮有用
查看>>
servlet3.0 的新特性之二注解代替了web.xml配置文件
查看>>
python 内置方法
查看>>
python 编码格式
查看>>
python 算法中的--冒泡排序
查看>>
代码阅读
查看>>
【原创】在 Mac OS X 上打造舒服的开发环境(三)——利用 Parallel Desktop 安装 CentOS 7...
查看>>
How Flask Routing Works
查看>>
Python新式类和经典类的区别
查看>>
整数快速乘法/快速幂+矩阵快速幂+Strassen算法 (转)
查看>>
匿名内部类
查看>>
C#字符串处理--学习笔记
查看>>
ios 保存数据NSKeyedArchiver,NSUserDefaults,Write,SQLite
查看>>
设计模式之代理模式
查看>>
html5中audio支持音频格式
查看>>
1.3.1 Mixing Milk
查看>>