Linux mysql就用fedora的自动安装

给大家推荐一款很不错的Linux mysql系统很有学习价值,这里我主要讲解Linux mysql系统的应用,包括介绍Linux mysql知识等方面。安装了多次Linux mysql包括二进制,包括自动安装。首先安装后没有密码,这样可以参考我的其他文章

问题1: error: 'Access denied for user 'root'@'localhost' (using password: YES)'重新设置密码

# /etc/init.d/Linux mysql stop  



# Linux mysqld_safe --user=Linux mysql --skip-grant-tables --skip-networking &  



# Linux mysql -u root Linux mysql  



Linux mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';  




Linux mysql> FLUSH PRIVILEGES;  




Linux mysql> quit  



 


# /etc/init.d/Linux mysql restart  


# Linux mysql -uroot -p  



Enter password: <输入新设的密码newpassword> 

Linux mysql>问题2:这样可能会出现一个问题,就是进入Linux mysql没有密码,可是也找不到Linux mysql-user这样的数据库怎么办?可以使用数据库的备份还原。前提是已经有一个正确安装的数据库。

Linux mysqldump --opt Linux mysql >Linux mysql.sql这样就导出了文件把文件拷贝到目的机子。然后  


Linux mysql  



Linux mysql>create database Linux mysql;  




Linux mysql>user Linux mysql;  




Linux mysql>source Linux mysql.sql的位置。 

问题3,实在没办法,就用fedora的自动安装。这样会出现一个问题。SELinux 正在阻止 /usr/libexec/Linux mysqld 使用无标志文件()。是因为fedora的防火墙设置。首先如果你希望远程使用Linux mysql,就在防火墙设置里加上3306的端口。

相关推荐