Linux卸載yum安裝的mysql
一、系統情況
Linux:Centos7.4(64位)
Mysql:5.6
二、卸載mysql
1.查看安裝了哪些mysql程序
Bash
rpm -qa | grep -i mysql # 命令1 yum list install mysql* # 或命令2
2.使用yum remove卸載
Bash
yum remove mysql mysql-server mysql-libs compat-mysql51
yum remove mysql-community-release
3.剩下卸載不了使用
Bash
rpm -e --nodeps mysql-community-libs-5.7.22-1.el7.x86_64
rpm -e –nodeps mysql57-community-release-el7-11.noarch
4.刪除殘留的mysql的目錄或文件
Bash
whereis mysql 或 find / -name mysql #注意不要誤刪其他程序的mysql文件夾 rm -rf /usr/lib64/mysql rm -rf /usr/share/mysql rm -rf /usr/bin/mysql rm -rf /etc/logrotate.d/mysql rm -rf /var/lib/mysql rm -rf /var/lib/mysql/mysql
5.刪除mysql配置文件
Bash
rm –rf /usr/my.cnf rm -rf /root/.mysql_sercret
6.刪除mysql開機自啟動服務
Bash
chkconfig --list | grep -i mysql #查看mysql的服務 chkconfig --del mysqld #服務名為你設置時候自己設置的名字
Linux yum安裝MySQL5.7
一、安裝配置MySQL的yum源
1
2
3
4
5
6
7
8
9
10
|
# 安裝MySQL的yum源,下面是RHEL6系列的下載地址
rpm -Uvh http:
//dev
.mysql.com
/get/mysql-community-release-el6-5
.noarch.rpm
# 安裝yum-config-manager
yum
install
yum-utils -y
# 禁用MySQL5.6的源
yum-config-manager --disable mysql56-community
# 啟用MySQL5.7的源
yum-config-manager --
enable
mysql57-community-dmr
# 用下面的命令查看是否配置正確
yum repolist enabled |
grep
mysql
|
檢查是否有mysql57-community-dmr這個源,如上圖所示。
二、yum安裝MySQL5.7
1
2
|
# 安裝MySQL5.7
yum
install
mysql-community-server
|
三、啟動MySQL
1
2
3
4
5
|
# 禁用selinux
setenforce 0
sed
-i
'/^SELINUX=/c\SELINUX=disabled'
/etc/selinux/config
# 啟動mysqld,啟動之前先修改/etc/my.cnf配置文件,本文用默認的配置。
service mysqld start
|
四、連接MySQL並修改密碼
MySQL忘記密碼,或:root密碼重置報錯:mysqladmin: connect to server at 'localhost' failed的解決方案
MySQL root密碼重置報錯:
mysqladmin: connect to server at 'localhost' failed的解決方案
1 登陸失敗,mysqladmin修改密碼失敗
[root@mysql var]# mysqladmin -u root password '123456'
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
2 停止mysql服務
[root@mysql var]# /etc/init.d/mysqld stop
Shutting down MySQL.... SUCCESS!
3 安全模式啟動
[root@mysql var]# mysqld_safe --skip-grant-tables &
(路徑不一樣:/opt/mysql/product/5.5.25a/bin/mysqld_safe --skip-grant-tables &)
[1] 10912
[root@mysql var]# 110407 17:39:28 mysqld_safe Logging to '/usr/local/mysql/var//mysql.chinascopefinanical.com.err'.
110407 17:39:29 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/var/
4 無密碼root帳號登陸
[root@mysql var]# /usr/bin/mysql -u root -p 【注釋,在下面的要求你輸入密碼的時候,你不用管,直接回車鍵一敲就過去了】
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 48
Server version: 5.1.41-log Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use mysql;
Database changed
5 手動update修改密碼
mysql>
update mysql.user set authentication_string=password("123456") where user='root' and host='localhost';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@mysql var]# mysql -u root -p guNNhtqhjUnfky6ahyVh
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 172
Server version: 5.1.41-log Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> quit
Bye
6 正常重新啟動
[root@mysql var]# service mysqld restart
Shutting down MySQL..110407 17:45:29 mysqld_safe mysqld from pid file /usr/local/mysql/var//mysql.chinascopefinanical.com.pid ended
SUCCESS!
Starting MySQL.. SUCCESS!