中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mysql 卸載 安裝 全過程

發布時間:2020-06-24 13:57:04 來源:網絡 閱讀:1245 作者:hsbxxl 欄目:MySQL數據庫

Mysql一個熟悉的概念,一個全新的知識領域。開始我全方位數據庫學習之旅。

一切,從安裝開始,自己動手每一步。


Linux在安裝的過程中,可以勾選Mysql的安裝,但是安裝的版本是Mysql-5.1.73,版本非常低。必須重新安裝,當前最新版本是5.7。但是卸載再安裝,明顯比空白Linux安裝麻煩一點。


下面開始卸載/安裝過程。


1. Mysql下載地址

mysql-5.7.22-1.el6.x86_64.rpm-bundle.tar
https://dev.mysql.com/downloads/file/?id=476884

2. 確認OS版本

# more /etc/issue
CentOS release 6.7 (Final)
Kernel \r on an \m
# lsb_release -a
LSB Version:    :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID: CentOS
Description:    CentOS release 6.7 (Final)
Release:        6.7
Codename:       Final

3. 根據OS版本,找到需要下載的Mysql版本,右鍵“將鏈接另存為”,即可獲得下載地址

Mysql 卸載 安裝 全過程

4. 到Linux下,通過wget下載

wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-community-server-5.7.18-1.el6.x86_64.rpm

下面三個rpm包存在依賴關系,也需要下載

# wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-community-common-5.7.18-1.el6.x86_64.rpm
# wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-community-client-5.7.18-1.el6.x86_64.rpm
# wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-community-libs-5.7.18-1.el6.x86_64.rpm

5. 檢查查詢發現,已經安裝Mysql-5.1.73,版本非常低。必須重新安裝,當前最新版本是5.7

# rpm -qa | grep mysql
mysql-server-5.1.73-5.el6_6.x86_64
mysql-libs-5.1.73-5.el6_6.x86_64
mysql-5.1.73-5.el6_6.x86_64
mysql-connector-odbc-5.1.5r1144-7.el6.x86_64

6. 準備安裝,安裝前,就懷疑,會不會覆蓋?會不會沖突?安裝一下試試,就知道了。

同時安裝4個rpm包

# rpm -ivh  mysql-community-server-5.7.18-1.el6.x86_64.rpm mysql-community-client-5.7.18-1.el6.x86_64.rpm  mysql-community-common-5.7.18-1.el6.x86_64.rpm mysql-community-libs-5.7.18-1.el6.x86_64.rpm

7. 果然沖突了

warning: mysql-community-server-5.7.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
Preparing...                ########################################### [100%]
file /usr/share/mysql/czech/errmsg.sys from install of mysql-community-common-5.7.18-1.el6.x86_64 conflicts with file from package mysql-libs-5.1.73-5.el6_6.x86_64
file /usr/share/mysql/danish/errmsg.sys from install of mysql-community-common-5.7.18-1.el6.x86_64 conflicts with file from package mysql-libs-5.1.73-5.el6_6.x86_64
file /usr/share/mysql/dutch/errmsg.sys from install of mysql-community-common-5.7.18-1.el6.x86_64 conflicts with file from package mysql-libs-5.1.73-5.el6_6.x86_64
file /usr/share/mysql/english/errmsg.sys from install of mysql-community-common-5.7.18-1.el6.x86_64 conflicts with file from package mysql-libs-5.1.73-5.el6_6.x86_64
file /usr/share/mysql/estonian/errmsg.sys from install of mysql-community-common-5.7.18-1.el6.x86_64 conflicts with file from package mysql-libs-5.1.73-5.el6_6.x86_64
......

8. 經過查詢,也安裝失敗了,還是5.1.73版本

# rpm -qa|grep mysql
mysql-server-5.1.73-5.el6_6.x86_64
mysql-libs-5.1.73-5.el6_6.x86_64
mysql-5.1.73-5.el6_6.x86_64
mysql-connector-odbc-5.1.5r1144-7.el6.x86_64

9. 開始卸載原有的5.1.73的Mysql,幾種卸載方式,首推YUM方式卸載

# yum remove mysql
# rpm -e mysql  // 普通刪除模式 
# rpm -e --nodeps mysql  // 強力刪除模式,如果使用上面命令刪除時,提示有依賴的其它文件,則用該命令可以對其進行強力刪除

10 .還剩余下面兩個包

# rpm -qa|grep mysql
mysql-libs-5.1.73-5.el6_6.x86_64
mysql-connector-odbc-5.1.5r1144-7.el6.x86_64

11. 執行yum localinstall安裝,發現需要卸載mysql-libs-5.1.73-5.el6_6.x86_64,通過yun卸載這個包后,可以安裝了。

# yum localinstall mysql-community-server-5.7.18-1.el6.x86_64.rpm mysql-community-client-5.7.18-1.el6.x86_64.rpm mysql-community-common-5.7.18-1.el6.x86_64.rpm  mysql-community-libs-5.7.18-
1.el6.x86_64.rpm
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Local Package Process
Examining mysql-community-server-5.7.18-1.el6.x86_64.rpm: mysql-community-server-5.7.18-1.el6.x86_64
Marking mysql-community-server-5.7.18-1.el6.x86_64.rpm to be installed
Loading mirror speeds from cached hostfile
* base: mirrors.163.com
* extras: mirrors.cn99.com
* updates: mirrors.163.com
Examining mysql-community-client-5.7.18-1.el6.x86_64.rpm: mysql-community-client-5.7.18-1.el6.x86_64
Marking mysql-community-client-5.7.18-1.el6.x86_64.rpm to be installed
Examining mysql-community-common-5.7.18-1.el6.x86_64.rpm: mysql-community-common-5.7.18-1.el6.x86_64
Marking mysql-community-common-5.7.18-1.el6.x86_64.rpm to be installed
Examining mysql-community-libs-5.7.18-1.el6.x86_64.rpm: mysql-community-libs-5.7.18-1.el6.x86_64
Marking mysql-community-libs-5.7.18-1.el6.x86_64.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package mysql-community-client.x86_64 0:5.7.18-1.el6 will be installed
---> Package mysql-community-common.x86_64 0:5.7.18-1.el6 will be installed
---> Package mysql-community-libs.x86_64 0:5.7.18-1.el6 will be installed
---> Package mysql-community-server.x86_64 0:5.7.18-1.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
==================================================================================================================================
Package                         Arch            Version               Repository                                            Size
==================================================================================================================================
Installing:
mysql-community-client          x86_64          5.7.18-1.el6          /mysql-community-client-5.7.18-1.el6.x86_64          100 M
mysql-community-common          x86_64          5.7.18-1.el6          /mysql-community-common-5.7.18-1.el6.x86_64          2.5 M
mysql-community-libs            x86_64          5.7.18-1.el6          /mysql-community-libs-5.7.18-1.el6.x86_64            8.9 M
mysql-community-server          x86_64          5.7.18-1.el6          /mysql-community-server-5.7.18-1.el6.x86_64          769 M
Transaction Summary
==================================================================================================================================
Install       4 Package(s)
Total size: 880 M
Installed size: 880 M
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : mysql-community-common-5.7.18-1.el6.x86_64                                                                     1/4
Installing : mysql-community-libs-5.7.18-1.el6.x86_64                                                                       2/4
Installing : mysql-community-client-5.7.18-1.el6.x86_64                                                                     3/4
Installing : mysql-community-server-5.7.18-1.el6.x86_64                                                                     4/4
Verifying  : mysql-community-server-5.7.18-1.el6.x86_64                                                                     1/4
Verifying  : mysql-community-libs-5.7.18-1.el6.x86_64                                                                       2/4
Verifying  : mysql-community-common-5.7.18-1.el6.x86_64                                                                     3/4
Verifying  : mysql-community-client-5.7.18-1.el6.x86_64                                                                     4/4
Installed:
mysql-community-client.x86_64 0:5.7.18-1.el6                    mysql-community-common.x86_64 0:5.7.18-1.el6
mysql-community-libs.x86_64 0:5.7.18-1.el6                      mysql-community-server.x86_64 0:5.7.18-1.el6
Complete!

12. 最后檢查,已經安裝成功

# rpm -qa|grep mysql
mysql-community-client-5.7.18-1.el6.x86_64
mysql-community-libs-5.7.18-1.el6.x86_64
mysql-community-common-5.7.18-1.el6.x86_64
mysql-community-server-5.7.18-1.el6.x86_64

13. 安裝完成,但是啟動的時候遇到了問題:

# service mysqld restart
Stopping mysqld:                                           [  OK  ]
Initializing MySQL database:  2017-07-11T15:23:50.462866Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2017-07-11T15:23:50.465315Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting.
2017-07-11T15:23:50.465365Z 0 [ERROR] Aborting
[FAILED]

14. 百度的解決方法(是由于之前老版本的數據庫已經占用這個文件夾,需要清空,或者在/etc/my.cnf中重新指定--datadir

保證 --datadir目錄為空。 /usr/local/var/mysql 這個目錄


15. 啟動成功

# cd /var/lib/mysql
# ls
auto.cnf  ib_buffer_pool  ibdata1  ib_logfile0  ib_logfile1
# rm *
rm: remove regular file `auto.cnf'? y
rm: remove regular file `ib_buffer_pool'? y
rm: remove regular file `ibdata1'? y
rm: remove regular file `ib_logfile0'? y
rm: remove regular file `ib_logfile1'? y

# service mysqld restart

Stopping mysqld:                                           [  OK  ]
Initializing MySQL database:                               [  OK  ]
Installing validate password plugin:                       [  OK  ]
Starting mysqld:                                           [  OK  ]

# ps -ef|grep mysql

root      4533     1  0 23:25 pts/0    00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --pid-file=/var/run/mysqld/mysqld.pid --basedir=/usr --user=mysql
mysql     4727  4533  4 23:25 pts/0    00:00:00 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
root      4762  3752  0 23:25 pts/0    00:00:00 grep mysql

16. 然而啟動的過程中,又遇到一些問題,密碼不知道了,重置密碼

# mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
[root@test mysql]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

編輯mysql配置文件/etc/my.cnf,在[mysqld]這個條目下加入 skip-grant-tables 保存退出后重啟mysql

# vi /etc/my.cnf

[root@test mysql]# service mysqld restart
Stopping mysqld:                                           [  OK  ]
Starting mysqld:                                           [  OK  ]

# mysql

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.18 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

設置密碼,然后刪除/etc/my.cnf中的 skip-grant-tables

再次重啟mysql

mysql> use mysql;
Database changed

--.給root用戶設置新密碼: 

5.7版本之前:

mysql> update user set password=password("新密碼") where user="root";
Query OK, 1 rows affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0

在5.7版本之后,mysql數據庫下已經沒有password這個字段了,password字段改成了authentication_string。

update mysql.user set authentication_string=PASSWORD('oracle') where User='root';
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

---退出mysql,重啟然后重新登錄

# service mysqld restart
Stopping mysqld:                                           [  OK  ]
Starting mysqld:                                           [  OK  ]

# mysql -uroot -poracle

mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.18
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏山县| 武冈市| 大荔县| 察隅县| 富蕴县| 皋兰县| 西乌| 临泉县| 定州市| 陆良县| 华容县| 河西区| 曲松县| 明水县| 洱源县| 长治市| 陆良县| 葵青区| 双鸭山市| 阿图什市| 府谷县| 海伦市| 四子王旗| 米易县| 五华县| 赤水市| 榕江县| 丽江市| 万州区| 明光市| 祁门县| 满洲里市| 台中市| 孝昌县| 海宁市| 托克托县| 乌兰浩特市| 凤冈县| 泰兴市| 潞西市| 济南市|