Percona-mysql server 5.5升級5.6

http://blog.csdn.net/lqx0405/article/details/50162557
 
系統環境:
     操做系統:CentOS_6.5(64)      
     MySQL:   Percona server 5.5(5.6)
 
1、升級的目的
     爲何MySQL升級是必須的? 緣由有不少,好比:爲了使用新增的特性,基於性能方面的考量, 修復的bug. 可是在沒有充分的測試之前就應用到你的應用中是很是危險的, 由於升級能夠能會讓你的應用不能正常運做- 也可能引發性能的問題. 此外, 我建議你關注MySQL的發佈信息和 Percona Server - 看看最近的版本有什麼變化. 也許在在最新的版本中已修復了某個你正在煩惱的問題.
2、升級的方式   

一般狀況下,有兩中升級方式:html

  • 直接升級:安裝好新版本數據庫後,利用已經存在的數據文件夾,同時運行mysql_upgrade腳原本升級。node

  • SQL 導出: 從一個較老版本的mysql把數據導出,而後恢復到新版本的數據庫中。(利用mysqldump工具)。mysql

相比之下,第二種方式更安全些,可是這也會使得升級的過程要慢一些。web

理論上講,最安全的方式是:sql

  • 導出全部用戶的權限數據庫

  • 導出全部數據並恢復到新版本數據庫中安全

  • 恢復用戶權限到新數據庫中oracle

3、升級的步驟
 
一、安裝percona server 5.5
[root@cent65 percona-55]# uname -a
Linux cent65 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
[root@cent65 ~]# cd /home/mysql/percona-55/
[root@cent65 percona-55]# ls
[sql]  view plain  copy
 
 print?
  1. Percona-Server-55-debuginfo-5.5.46-rel37.5.el6.x86_64.rpm  
  2. Percona-Server-client-55-5.5.46-rel37.5.el6.x86_64.rpm  
  3. Percona-Server-devel-55-5.5.46-rel37.5.el6.x86_64.rpm  
  4. Percona-Server-server-55-5.5.46-rel37.5.el6.x86_64.rpm  
  5. Percona-Server-shared-55-5.5.46-rel37.5.el6.x86_64.rpm  
  6. Percona-Server-test-55-5.5.46-rel37.5.el6.x86_64.rpm  
安裝percona server與系統自帶的mysql衝突,首先卸載系統自帶mysql:
[ root@cent65 percona-55]# rpm -ivh *
warning: Percona-Server-55-debuginfo-5.5.46-rel37.5.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
error: Failed dependencies:
        MySQL conflicts with mysql-5.1.71-1.el6.x86_64
        MySQL-server conflicts with mysql-server-5.1.71-1.el6.x86_64
卸載mysql:
[root@cent65 percona-55]# rpm -e mysql-server --nodeps
[root@cent65 percona-55]# rpm -e mysql --nodeps
[root@cent65 percona-55]# rpm -e mysql-devel --nodeps
安裝percona server:
[root@cent65 percona-55]# rpm -ivh *
warning: Percona-Server-55-debuginfo-5.5.46-rel37.5.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-shared-5########################################### [ 17%]
   2:Percona-Server-client-5########################################### [ 33%]
   3:Percona-Server-server-5########################################### [ 50%]
[sql]  view plain  copy
 
 print?
  1. 151203 10:57:15 [Note] /usr/sbin/mysqld (mysqld 5.5.46-37.5) starting as process 2537 ...  
  2. 151203 10:57:27 [Note] /usr/sbin/mysqld (mysqld 5.5.46-37.5) starting as process 2546 ...  
  3. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !  
  4. To do so, start the server, then issue the following commands:  
  5. /usr/bin/mysqladmin -u root password 'new-password'  
  6. /usr/bin/mysqladmin -u root -h cent65 password 'new-password'  
  7. Alternatively you can run:  
  8. /usr/bin/mysql_secure_installation  
  9. which will also give you the option of removing the test  
  10. databases and anonymous user created by default.  This is  
  11. strongly recommended for production servers.  
  12. See the manual for more instructions.  
  13. Please report any problems at  
  14.   https://bugs.launchpad.net/percona-server/+filebug  
  15. Percona recommends that all production deployments be protected with a support  
  16. contract (http://www.percona.com/mysql-suppport/) to ensure the highest uptime,  
  17. be eligible for hot fixes, and boost your team's productivity.  
  18. Percona Server is distributed with several useful UDF (User Defined Function) from Percona Toolkit.  
  19. Run the following commands to create these functions:  
  20. mysql -e "CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'"  
  21. mysql -e "CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'"  
  22. mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"  
  23. See http://www.percona.com/doc/percona-server/5.5/management/udf_percona_toolkit.html for more details  
  24.    4:Percona-Server-test-55 ########################################### [ 67%]  
  25.    5:Percona-Server-devel-55########################################### [ 83%]  
  26.    6:Percona-Server-55-debug########################################### [100%]  
----安裝成功 !
二、啓動mysql server
[root@cent65 percona-55]# service mysql start

Starting MySQL (Percona Server)....[  OK  ]
[root@cent65 percona-55]# netstat -an |grep :3306
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN 
修改用戶口令:
[root@cent65 percona-55]# mysqladmin -u root password "oracle"

mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: NO)'
鏈接mysql server:
[root@cent65 percona-55]# mysql -u root -p

Enter password: 
[sql]  view plain  copy
 
 print?
  1. Welcome to the MySQL monitor.  Commands end with ; or \g.  
  2. Your MySQL connection id is 6  
  3. Server version: 5.5.46-37.5 Percona Server (GPL), Release 37.5, Revision 684ce54  
  4. Copyright (c) 2009-2015 Percona LLC and/or its affiliates  
  5. Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.  
  6. Oracle is a registered trademark of Oracle Corporation and/or its  
  7. affiliates. Other names may be trademarks of their respective  
  8. owners.  
  9. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.  
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)
建立測試庫和表:
mysql> create database prod;

Query OK, 1 row affected (0.00 sec)
mysql> use prod;
Database changed
mysql> create table emp (id int ,name varchar(10));
Query OK, 0 rows affected (0.35 sec)
mysql> insert into emp values (10,'tom');
Query OK, 1 row affected (0.11 sec)
mysql> insert into emp values (20,'jerry');
Query OK, 1 row affected (0.17 sec)
mysql> insert into emp values (30,'rose');
Query OK, 1 row affected (0.05 sec)
mysql> commit;
Query OK, 0 rows affected (0.00 sec)
查看錶屬性:
mysql> show create table emp\G

*************************** 1. row ***************************
       Table: emp
Create Table: CREATE TABLE `emp` (
  `id` int(11) DEFAULT NULL,
  `name` varchar(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
1 row in set (0.00 sec)
mysql> select * from emp;
+------+-------+
| id   | name  |
+------+-------+
|   10 | tom   |
|   20 | jerry |
|   30 | rose  |
+------+-------+
3 rows in set (0.00 sec)
 
2、準備升級percona server5.5到5.6
安裝percona toolkit工具:
首先經過yum(本地庫)安裝perl軟件:
[root@cent65 yum.repos.d]# yum install -y perl-IO-Socket-SSL* --enablerepo=c6-media
[root@cent65 yum.repos.d]# yum install -y perl-TermReadKey*  --enablerepo=c6-media
[root@cent65 mysql]# rpm -ivh percona-toolkit-2.2.10-1.noarch.rpm
warning: percona-toolkit-2.2.10-1.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:percona-toolkit        ########################################### [100%]
1) 獲取用戶和權限信息. 該操做會備份全部用戶的權限
[root@cent65 mysql]# pt-show-grants --user=root --ask-pass --flush >/home/mysql/grants.sql
Enter password: 
查看sql scripts:
[root@cent65 mysql]# cat grants.sql 

-
[sql]  view plain  copy
 
 print?
  1. - Grants dumped by pt-show-grants  
  2. -- Dumped from server Localhost via UNIX socket, MySQL 5.5.46-37.5 at 2015-12-03 12:22:00  
  3. -- Grants for ''@'cent65'  
  4. GRANT ALTER, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EVENT, INDEX, INSERT, LOCK TABLES, REFERENCES, SELECT, SHOW VIEW, TRIGGER, UPDATE ON `test\_%`.* TO ''@'%';  
  5. GRANT ALTER, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EVENT, INDEX, INSERT, LOCK TABLES, REFERENCES, SELECT, SHOW VIEW, TRIGGER, UPDATE ON `test`.* TO ''@'%';  
  6. GRANT USAGE ON *.* TO ''@'cent65';  
  7. -- Grants for ''@'localhost'  
  8. GRANT ALTER, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EVENT, INDEX, INSERT, LOCK TABLES, REFERENCES, SELECT, SHOW VIEW, TRIGGER, UPDATE ON `test\_%`.* TO ''@'%';  
  9. GRANT ALTER, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EVENT, INDEX, INSERT, LOCK TABLES, REFERENCES, SELECT, SHOW VIEW, TRIGGER, UPDATE ON `test`.* TO ''@'%';  
  10. GRANT USAGE ON *.* TO ''@'localhost';  
  11. -- Grants for 'root'@'127.0.0.1'  
  12. GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' WITH GRANT OPTION;  
  13. -- Grants for 'root'@'::1'  
  14. GRANT ALL PRIVILEGES ON *.* TO 'root'@'::1' WITH GRANT OPTION;  
  15. -- Grants for 'root'@'cent65'  
  16. GRANT ALL PRIVILEGES ON *.* TO 'root'@'cent65' WITH GRANT OPTION;  
  17. GRANT PROXY ON ''@'' TO 'root'@'cent65' WITH GRANT OPTION;  
  18. -- Grants for 'root'@'localhost'  
  19. GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '*2447D497B9A6A15F2776055CB2D1E9F86758182F' WITH GRANT OPTION;  
  20. GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION;  
  21. FLUSH PRIVILEGES;  
  2)、dump 5.5數據庫實例的全部信息(除去mysql, information_schema 和performance_schema數據庫)
[root@cent65 mysql]# mysql -uroot -p -BNe "SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME NOT IN ('mysql', 'performance_schema', 'information_schema')" | tr 'n' ' ' > /home/mysql/dbs-to-dump.sql
Enter password: 
查看sql scripts:
[root@cent65 mysql]# cat dbs-to-dump.sql 

prod
test
[root@cent65 mysql]# mysqldump -u root -p --routines --events --single-transaction --databases $(cat /home/mysql/dbs-to-dump.sql) > /home/mysql/full-data-dump.sql
Enter password: 
[root@cent65 mysql]# cat full-data-dump.sql 
[sql]  view plain  copy
 
 print?
  1. -- MySQL dump 10.13  Distrib 5.5.46-37.5, for Linux (x86_64)  
  2. --  
  3. -- Host: localhost    Database: prod  
  4. -- ------------------------------------------------------  
  5. -- Server version       5.5.46-37.5  
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;  
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;  
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;  
  9. /*!40101 SET NAMES utf8 */;  
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;  
  11. /*!40103 SET TIME_ZONE='+00:00' */;  
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;  
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;  
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;  
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;  
  16. -- Current Database: `prod`  
  17. CREATE DATABASE /*!32312 IF NOT EXISTS*/ `prod` /*!40100 DEFAULT CHARACTER SET latin1 */;  
  18. USE `prod`;  
  19. -- Table structure for table `emp`  
  20. DROP TABLE IF EXISTS `emp`;  
  21. /*!40101 SET @saved_cs_client     = @@character_set_client */;  
  22. /*!40101 SET character_set_client = utf8 */;  
  23. CREATE TABLE `emp` (  
  24.   `id` int(11) DEFAULT NULL,  
  25.   `name` varchar(10) DEFAULT NULL  
  26. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;  
  27. /*!40101 SET character_set_client = @saved_cs_client */;  
  28. -- Dumping data for table `emp`  
  29. LOCK TABLES `emp` WRITE;  
  30. /*!40000 ALTER TABLE `emp` DISABLE KEYS */;  
  31. INSERT INTO `emp` VALUES (10,'tom'),(20,'jerry'),(30,'rose');  
  32. /*!40000 ALTER TABLE `emp` ENABLE KEYS */;  
  33. UNLOCK TABLES;  
  34. -- Dumping events for database 'prod'  
  35. -- Dumping routines for database 'prod'  
  36. -- Current Database: `test`  
  37. CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test` /*!40100 DEFAULT CHARACTER SET latin1 */;  
  38. USE `test`;  
  39. -- Dumping events for database 'test'  
  40. -- Dumping routines for database 'test'  
  41. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;  
  42. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;  
  43. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;  
  44. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;  
  45. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;  
  46. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;  
  47. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;  
  48. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;  
  49. -- Dump completed on 2015-12-03 12:31:52  
3)、中止數據庫
[root@cent65 mysql]# service mysql stop
Shutting down MySQL (Percona Server).......[  OK  ]
[root@cent65 mysql]# mv /var/lib/mysql /var/lib/mysql55
4)、 移動舊數據庫(5.5版本)的數據目錄(假設是/var/lib/mysql,此處應該改成你本身的數據目錄)
[root@cent65 mysql]#mv /var/lib/mysql /var/lib/mysql55
[root@cent65 mysql]#mkdir /var/lib/mysql
[root@cent65 mysql]#chown -R mysql:mysql /var/lib/mysql
 
3、安裝Percona Server 5.6
[root@cent65 percona-56]# ls -l
total 121104
-rwxr-xr-x. 1 mysql mysql 70389368 Dec  3 11:21 Percona-Server-56-debuginfo-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql  6727084 Dec  3 11:21 Percona-Server-client-56-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql  1031588 Dec  3 11:21 Percona-Server-devel-56-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql 20463420 Dec  3 11:21 Percona-Server-server-56-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql   742496 Dec  3 11:21 Percona-Server-shared-56-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql 23137340 Dec  3 11:21 Percona-Server-test-56-5.6.25-rel73.1.el6.x86_64.rpm
-rwxr-xr-x. 1 mysql mysql  1508480 Dec  3 11:21 Percona-Server-tokudb-56-5.6.25-rel73.1.el6.x86_64.rpm

Percona server 5.5會與5.6的軟件有衝突,因此5.6的安裝須要強制安裝:
[root@cent65 percona-56]# rpm -ivh Percona-Server-shared-56-5.6.25-rel73.1.el6.x86_64.rpm --force

warning: Percona-Server-shared-56-5.6.25-rel73.1.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-shared-5########################################### [100%]

[root@cent65 percona-56]# rpm -ivh Percona-Server-client-56-5.6.25-rel73.1.el6.x86_64.rpm --force --nodeps
warning: Percona-Server-client-56-5.6.25-rel73.1.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-client-5########################################### [100%]

[root@cent65 percona-56]# rpm -ivh Percona-Server-test-56-5.6.25-rel73.1.el6.x86_64.rpm --force --nodeps
warning: Percona-Server-test-56-5.6.25-rel73.1.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-test-56 ########################################### [100%]

[root@cent65 percona-56]# rpm -ivh Percona-Server-devel-56-5.6.25-rel73.1.el6.x86_64.rpm --force --nodeps
warning: Percona-Server-devel-56-5.6.25-rel73.1.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-devel-56########################################### [100%]
 
server軟件的安裝須要先卸載server 5.5:

1)、卸載server 5.5
[root@cent65 percona-56]# rpm -qa |grep Percona-Server-server
Percona-Server-server-55-5.5.46-rel37.5.el6.x86_64
[root@cent65 percona-56]# rpm -e Percona-Server-server-55-5.5.46-rel37.5.el6.x86_64
error: Failed dependencies:
        mysql-server is needed by (installed) akonadi-1.2.1-2.el6.x86_64
[root@cent65 percona-56]# rpm -e Percona-Server-server-55-5.5.46-rel37.5.el6.x86_64 --nodeps
 
2)、安裝server 5.6
[root@cent65 percona-56]# rpm -ivh Percona-Server-server* --force --nodeps

warning: Percona-Server-server-56-5.6.25-rel73.1.el6.x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID cd2efd2a: NOKEY
Preparing...                ########################################### [100%]
   1:Percona-Server-server-5########################################### [100%]
[sql]  view plain  copy
 
 print?
  1. 2015-12-03 12:41:04 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).  
  2. 2015-12-03 12:41:04 0 [Note] /usr/sbin/mysqld (mysqld 5.6.25-73.1) starting as process 4000 ...  
  3. 2015-12-03 12:41:04 4000 [Note] InnoDB: Using atomics to ref count buffer pool pages  
  4. 2015-12-03 12:41:04 4000 [Note] InnoDB: The InnoDB memory heap is disabled  
  5. 2015-12-03 12:41:04 4000 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins  
  6. 2015-12-03 12:41:04 4000 [Note] InnoDB: Memory barrier is not used  
  7. 2015-12-03 12:41:04 4000 [Note] InnoDB: Compressed tables use zlib 1.2.3  
  8. 2015-12-03 12:41:04 4000 [Note] InnoDB: Using Linux native AIO  
  9. 2015-12-03 12:41:04 4000 [Note] InnoDB: Using CPU crc32 instructions  
  10. 2015-12-03 12:41:04 4000 [Note] InnoDB: Initializing buffer pool, size = 128.0M  
  11. 2015-12-03 12:41:04 4000 [Note] InnoDB: Completed initialization of buffer pool  
  12. 2015-12-03 12:41:04 4000 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!  
  13. 2015-12-03 12:41:04 4000 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB  
  14. 2015-12-03 12:41:04 4000 [Note] InnoDB: Database physically writes the file full: wait...  
  15. 2015-12-03 12:41:04 4000 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB  
  16. 2015-12-03 12:41:06 4000 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB  
  17. 2015-12-03 12:41:08 4000 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0  
  18. 2015-12-03 12:41:08 4000 [Warning] InnoDB: New log files created, LSN=45781  
  19. 2015-12-03 12:41:08 4000 [Note] InnoDB: Doublewrite buffer not found: creating new  
  20. 2015-12-03 12:41:09 4000 [Note] InnoDB: Doublewrite buffer created  
  21. 2015-12-03 12:41:09 4000 [Note] InnoDB: 128 rollback segment(s) are active.  
  22. 2015-12-03 12:41:09 4000 [Warning] InnoDB: Creating foreign key constraint system tables.  
  23. 2015-12-03 12:41:09 4000 [Note] InnoDB: Foreign key constraint system tables created  
  24. 2015-12-03 12:41:09 4000 [Note] InnoDB: Creating tablespace and datafile system tables.  
  25. 2015-12-03 12:41:09 4000 [Note] InnoDB: Tablespace and datafile system tables created.  
  26. 2015-12-03 12:41:09 4000 [Note] InnoDB: Waiting for purge to start  
  27. 2015-12-03 12:41:09 4000 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.25-73.1 started; log sequence number 0  
  28. 2015-12-03 12:41:09 4000 [Note] RSA private key file not found: /var/lib/mysql//private_key.pem. Some authentication plugins will not work.  
  29. 2015-12-03 12:41:09 4000 [Note] RSA public key file not found: /var/lib/mysql//public_key.pem. Some authentication plugins will not work.  
  30. 2015-12-03 12:41:41 4000 [Note] Binlog end  
  31. 2015-12-03 12:41:41 4000 [Note] InnoDB: FTS optimize thread exiting.  
  32. 2015-12-03 12:41:41 4000 [Note] InnoDB: Starting shutdown...  
  33. 2015-12-03 12:41:43 4000 [Note] InnoDB: Shutdown completed; log sequence number 1625977  
  34. 2015-12-03 12:41:43 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).  
  35. 2015-12-03 12:41:43 0 [Note] /usr/sbin/mysqld (mysqld 5.6.25-73.1) starting as process 4025 ...  
  36. 2015-12-03 12:41:43 4025 [Note] InnoDB: Using atomics to ref count buffer pool pages  
  37. 2015-12-03 12:41:43 4025 [Note] InnoDB: The InnoDB memory heap is disabled  
  38. 2015-12-03 12:41:43 4025 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins  
  39. 2015-12-03 12:41:43 4025 [Note] InnoDB: Memory barrier is not used  
  40. 2015-12-03 12:41:43 4025 [Note] InnoDB: Compressed tables use zlib 1.2.3  
  41. 2015-12-03 12:41:43 4025 [Note] InnoDB: Using Linux native AIO  
  42. 2015-12-03 12:41:43 4025 [Note] InnoDB: Using CPU crc32 instructions  
  43. 2015-12-03 12:41:43 4025 [Note] InnoDB: Initializing buffer pool, size = 128.0M  
  44. 2015-12-03 12:41:43 4025 [Note] InnoDB: Completed initialization of buffer pool  
  45. 2015-12-03 12:41:43 4025 [Note] InnoDB: Highest supported file format is Barracuda.  
  46. 2015-12-03 12:41:44 4025 [Note] InnoDB: 128 rollback segment(s) are active.  
  47. 2015-12-03 12:41:44 4025 [Note] InnoDB: Waiting for purge to start  
  48. 2015-12-03 12:41:44 4025 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.25-73.1 started; log sequence number 1625977  
  49. 2015-12-03 12:41:44 4025 [Note] RSA private key file not found: /var/lib/mysql//private_key.pem. Some authentication plugins will not work.  
  50. 2015-12-03 12:41:44 4025 [Note] RSA public key file not found: /var/lib/mysql//public_key.pem. Some authentication plugins will not work.  
  51. 2015-12-03 12:41:44 4025 [Note] Binlog end  
  52. 2015-12-03 12:41:44 4025 [Note] InnoDB: FTS optimize thread exiting.  
  53. 2015-12-03 12:41:44 4025 [Note] InnoDB: Starting shutdown...  
  54. 2015-12-03 12:41:46 4025 [Note] InnoDB: Shutdown completed; log sequence number 1625987  
  55.   
  56. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !  
  57. To do so, start the server, then issue the following commands:  
  58.   /usr/bin/mysqladmin -u root password 'new-password'  
  59.   /usr/bin/mysqladmin -u root -h cent65 password 'new-password'  
  60. Alternatively you can run:  
  61.   /usr/bin/mysql_secure_installation  
  62. which will also give you the option of removing the test  
  63. databases and anonymous user created by default.  This is  
  64. strongly recommended for production servers.  
  65. See the manual for more instructions.  
  66. Please report any problems at  
  67.  https://bugs.launchpad.net/percona-server/+filebug  
  68. The latest information about Percona Server is available on the web at  
  69.   http://www.percona.com/software/percona-server  
  70. Support Percona by buying support at  
  71.  http://www.percona.com/products/mysql-support  
  72. WARNING: Default config file /etc/my.cnf exists on the system  
  73. This file will be read by default by the MySQL server  
  74. If you do not want to use this, either remove it, or use the  
  75. --defaults-file argument to mysqld_safe when starting the server  
  76. Percona Server is distributed with several useful UDF (User Defined Function) from Percona Toolkit.  
  77. Run the following commands to create these functions:  
  78. mysql -e "CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'"  
  79. mysql -e "CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'"  
  80. mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"  
  81. See http://www.percona.com/doc/percona-server/5.6/management/udf_percona_toolkit.html for more details  
------------至此,Percona Server 5.6安裝成功 !
 
4、將數據import到server 5.6
 
一、啓動mysql server
[root@cent65 percona-56]# service mysql start
Starting MySQL (Percona Server).[  OK  ]
[root@cent65 percona-56]# netstat -an|grep :3306
tcp        0      0 :::3306                     :::*                        LISTEN  

二、導入用戶權限表
[root@cent65 percona-56]# mysql -u root -p </home/mysql/grants.sql

Enter password: 
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

[root@cent65 percona-56]# mysqladmin -u root password "oracle"
Warning: Using a password on the command line interface can be insecure.

[root@cent65 percona-56]# mysql -u root -p </home/mysql/grants.sql
Enter password: 

三、導入備份數據
[root@cent65 percona-56]# mysql -uroot -p -e "SET GLOBAL max_allowed_packet=1024*1024*1024"

Enter password: 
[root@cent65 percona-56]# mysql -uroot -p --max-allowed-packet=1G < /home/mysql/full-data-dump.sql
Enter password: 
[root@cent65 percona-56]# 

五、鏈接server,驗證數據
[root@cent65 percona-56]# mysql -uroot -p

Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.6.25-73.1 Percona Server (GPL), Release 73.1, Revision 07b797f
Copyright (c) 2009-2015 Percona LLC and/or its affiliates
Copyright (c) 2000, 2015, 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 |
| prod               |
| test               |
+--------------------+
5 rows in set (0.00 sec)

mysql> use prod;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> show tables;
+----------------+
| Tables_in_prod |
+----------------+
| emp            |
+----------------+
1 row in set (0.00 sec)

查看錶信息:
mysql> select * from emp;

+------+-------+
| id   | name  |
+------+-------+
|   10 | tom   |
|   20 | jerry |
|   30 | rose  |
+------+-------+
3 rows in set (0.00 sec)

---------數據庫能夠正常訪問,至此升級結束!
 
    此時, 全部的表都在MySQL 5.6中重建及從新加載完成,因此全部的二進制文件對MySQL 5.6可用. 同時也你完成了最乾淨/最穩定的升級過程,你能夠恢復你的應用- 這個升級過程和valina MySQL與Percona Server的升級過程是同樣的.甚至你能夠把Oracle MySQL升級到Percona Server. 好比: 把Oracle MySQL 5.5升級到Percona Server 5.6. 再次強調: MySQL的升級過程和Percona Server的升級過程是同樣的,只須要將Percona Server 替換成Oracle MySQL便可.
相關文章
相關標籤/搜索