這篇文章主要講解了“Linux centos5.6版本下MySQL5.6主從環(huán)境安裝配置方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linux centos5.6版本下mysql5.6主從環(huán)境安裝配置方法”吧!
創(chuàng)新互聯專注于莊浪網站建設服務及定制,我們擁有豐富的企業(yè)做網站經驗。 熱誠為您提供莊浪營銷型網站建設,莊浪網站制作、莊浪網頁設計、莊浪網站官網定制、小程序設計服務,打造莊浪網絡公司原創(chuàng)品牌,更為您提供莊浪網站排名全網營銷落地服務。
服務器配置,具體iP,主從庫如下
主庫 IP:192.168.1.189 master server 從庫 IP:192.168.1.188 slave server
服務器系統(tǒng)為:centos5.6,下載安裝軟件包具體包括如下
MySQL-client-5.6.13-1.linux_glibc2.5.x86_64.rpm MySQL-devel-5.6.13-1.linux_glibc2.5.x86_64.rpm MySQL-server-5.6.13-1.linux_glibc2.5.x86_64.rpm MySQL-shared-5.6.13-1.linux_glibc2.5.x86_64.rpm MySQL-shared-compat-5.6.13-1.linux_glibc2.5.x86_64.rpm MySQL-test-5.6.13-1.linux_glibc2.5.x86_64.rpm
一、安裝mysql,通過yum命令,安裝所有所需rpm文件
yum -y install libaio libaio-devel perl-Time-HiRes curl curl-devel zlib-devel openssl-devel perl cpio expat-devel gettext-devel perl-ExtUtils-MakeMaker perl-DBD-MySQL rpm -ivh MySQL-test-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-shared-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-shared-compat-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-server-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-devel-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-client-5.6.13-1.linux_glibc2.5.x86_64.rpm
二、修改master和slave配置,注意部分參數要根據實際情況來調整,具體步驟如下
主庫/etc/my.cnf配置:
[client] port = 3306 socket = /state/partition1/mysql/mysql.sock default-character-set=utf8 [mysqld] server-id=1025 log-bin=mysql-master-bin binlog_format = mixed expire_logs_days=15 max_connections=1000 innodb_flush_log_at_trx_commit=1 sync_binlog=1 binlog-do-db=denovo_ng binlog-ignore-db=mysql,test,information_schema innodb_buffer_pool_size = 46673M skip-name-resolve datadir = /state/partition1/mysql/data port = 3306 socket = /state/partition1/mysql/mysql.sock key_buffer_size=16M max_allowed_packet=16M join_buffer_size = 512M sort_buffer_size = 256M read_rnd_buffer_size = 128M innodb_buffer_pool_size = 40960M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
從庫/etc/my.cnf配置,具體代碼如下
[client] port = 3306 socket = /state/partition1/mysql/mysql.sock [mysqld] server-id=1052 datadir = /state/partition1/mysql/data port = 3306 socket = /state/partition1/mysql/mysql.sock user=mysql log-bin=mysql-slave-bin max_binlog_size=1000M binlog_format = mixed expire_logs_days=7 innodb_flush_log_at_trx_commit=1 sync_binlog=1 read_only=1 binlog-do-db=denovo_ng binlog-ignore-db=mysql,test,information_schema innodb_buffer_pool_size = 36673M skip-name-resolve max_connections=1000 max_user_connections=490 max_connect_errors=2 key_buffer_size=16M max_allowed_packet=16M join_buffer_size = 512M sort_buffer_size = 256M read_rnd_buffer_size = 128M innodb_buffer_pool_size = 40960M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
三、進行主從庫賬號授權操作:
主庫
grant replication slave on *.* to 'jpsync'@'192.168.1.189' identified by 'jppasswd'; flush privileges; show master status; #查看主庫信息
從庫
stop slave; change master to master_host='192.168.1.188',master_port=3306,master_user='jpsync',master_password='jppasswd', master_log_file='mysql-master-bin.000003',master_log_pos=408; start slave; show slave status\G;
如果出現
Slave_IO_Running: Yes Slave_SQL_Running: Yes
表明mysql主從庫成功。
感謝各位的閱讀,以上就是“Linux centos5.6版本下mysql5.6主從環(huán)境安裝配置方法”的內容了,經過本文的學習后,相信大家對Linux centos5.6版本下mysql5.6主從環(huán)境安裝配置方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯,小編將為大家推送更多相關知識點的文章,歡迎關注!