MySQL Replication(复制) 和 MySQL 添加 TCMalloc 库
27 Feb 2012在CentOS 5.7上安装MySQL Replication
首先下载mysql的最新版并解压:
wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.60.tar.gz
tar zxf mysql-5.1.60.tar.gz
cd mysql-5.1.60
./configure --prefix=/usr/local/mysql --enable-assembler --with-server-suffix=-DZWWW --enable-thread-safe-client --enable-local-infile --enable-thread-safe-client --with-big-tables --with-charset=utf8 --with-client-ldflags=-all-static -with-collation=utf8_general_ci --with-extra-charsets=all --with-mysqld-ldflags=-all-static --with-mysqld-ldflags=-ltcmalloc --with-mysqld-user=mysql -with-plugins=partition,myisammrg --with-pthread --with-unix-socket-path=/tmp/mysql.sock --without-ndb-debug
make && make install
将my.cnf放到/etc下,并安装系统数据库。
wget http://autolemp.googlecode.com/files/my.cnf
cp support-*/mysql.server /etc/init.d/mysqld
cp my.cnf /etc/
chmod 744 /etc/init.d/mysqld
cd /usr/local/mysql
chown -R mysql:mysql .
rm -rf sql-bench mysql-test
mkdir -p /data0/mysql/relaylog/
mkdir -p /data0/mysql/binlog/
chown -R mysql.mysql /data0/mysql
/usr/local/mysql/bin/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/data0/mysql/data
默认脚本会启动MySQL。如果报错,会在数据库目录里有错误日志。
MySQL replication配置
1、MySQL安全设置
用mysqladmin命令来改root用户口令
mysqladmin -uroot password 51cto.com
//设置MySQL管理操作用户root的密码为51cto.com
用setpassword修改口令:
mysql> set password for root@localhost=password('51cto.com);
直接修改user表的root用户口令
mysql> use mysql; mysql> update user set password=password('51cto.com') where user='root'; mysql> flush privileges;
2、删除默认的数据库和用户。
我们的数据库是在本地,并且也只需要本地的php脚本对mysql进行读取,所以很多用户都不需要。mysql初始化后会自动生成空用户和test库,这会对数据库构成威胁,我们全部删除。
mysql> drop database test;
mysql> use mysql;
mysql> delete from db;
mysql> delete from user where not(host="localhost" anduser="root");
mysql> flush privileges;
3、Master 机器设置权限,赋予Slave机器FILE及Replication Slave权利,并打包要同步的数据库结构。
Master# ./mysql -u root -p 51cto.com
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 5.1.60
Type 'help;'or '\h' for help. Type '\c' to clear the buffer.
mysql> GRANT FILE ON*.* TO slaverep@172.19.1.3 IDENTIFIEDBY ‘slaverep’;
mysql> GRANT REPLICATION SLAVE ON *.* TO slaverep@172.19.1.3 IDENTIFIEDBY ‘51cto.com’;
mysql> Flush privilege;
赋予192.19.11.3也就是Slave 机器有File权限, 这个5.1.60版对replication的权限好像做了调整,只赋予Slave机器有File权限还不行,还要给它REPLICATION SLAVE的权限才可以。
Master 导入CDN。Sql文件建立CDN数据结构
# mysql -uroot -p 51cto.com
mysql> create database cdn;
mysql> \q
# mysql cdn -uroot -p 51cto.com < cdn.sql #cdn.sql文件所在的位置
这样master 就有了CDN库的数据结构。
Slave一样。这样不再重复。
然后,设置主服务器Master的my.cnf,启动Mysql服务
Master# vi /etc/my.cnf
在[mysqld]添加或修改以下的内容:
[mysqld]
log-bin=/home/data/mysql/data/binlog/binlog #打开logbin选项以能写到slave的 I/O线程;
server-id=1 #表示是本机的序号为1,一般来讲就是master的意思.
binlog-do-db=cdn #表示同步cdn数据库;
然后把Master主服务器的MySQL重启。
Master# service mysqld restart
4、修改Slave服务器的my.cnf
Slave# vi /etc/my.cnf
在[mysqld]添加或修改以下的内容:
[mysqld]
master-host=192.19.13.15
master-user=slaverep
master-password=51cto.com
master-port=3306
server-id=10
master-connect-retry=60
replicate-do-db=cdn [要更新的数据库]
log-slave-updates
5、删除Slave端数据库目录中的master.info
Slave# rm -f master.info
6、重启动Slave的MySQL服务。
Slave# service mysqld restart
7、测试
先检测两个MySQL数据库中的cdn是否正常。正常情况应该是Master和Slave 中的MySQL都有相同的cdn数据库,并且里面的数据都一样。然后测试replication功能是否起用。在Master中的reptest数据库添加一笔数据:
Master# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12 to server version: 5.1.60
Type 'help;'or '\h' for help. Type '\c' to clear the buffer.
mysql> use cdn;
Database changed
mysql> INSERT INTO rep_table VALUES ('test1', '4321', 'T',24);
Query OK, 1 row affected (0.00 sec)
mysql>
然后查看Slave机器的reptest数据库:
Slave# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 12 to server version: 5.1.49
Type 'help;'or '\h' for help. Type '\c' to clear the buffer.
mysql> use cdn;
Database changed
mysql>select * from reptable;
+------+------+------+------+
| id | name| sex | age |
+------+------+------+------+
| test1|4321 | T | 24 |
+------+------+------+------+
1 row in set(0.00 sec)
mysql> source /root/etc/cdn.sql #导入压缩包中的cdn.sql
这样就ok了。接下来是一些性能方面的调优。<!-- more -->
为MySQL添加TCMalloc库降低系统负载
TCMalloc(Thread-CachingMalloc)是google开发的开源工具──“google-perftools”中的成员。与标准的glibc库的malloc相比,TCMalloc在内存的分配上效率和速度要高得多,可以在很大程度上提高MySQL服务器在高并发情况下的性能,降低系统负载。
1、64位操作系统请先安装libunwind库,32位操作系统不要安装。libunwind库为基于64位CPU和操作系统的程序提供了基本的堆栈辗转开解功能,其中包括用于输出堆栈跟踪的API、用于以编程方式辗转开解堆栈的API以及支持C++异常处理机制的API。
wget http://download.savannah.gnu.org/releases/libunwind/libunwind-0.99.tar.gz
tar zxvf libunwind-0.99.tar.gz
cd libunwind-0.99/
CFLAGS=-fPIC ./configure
make CFLAGS=-fPIC
make CFLAGS=-fPIC install
2、安装google-perftools:
wget http://google-perftools.googlecode.com/files/google-perftools-1.6.tar.gz
tar zxvf google-perftools-1.6.tar.gz
cd google-perftools-1.6/
./configure
make && make install
echo "/usr/local/lib" >/etc/ld.so.conf.d/usr_local_lib.conf
/sbin/ldconfig
3、修改MySQL启动脚本(根据你的MySQL安装位置而定):
vi /usr/local/mysql/bin/mysqld_safe
在# executingmysqld_safe的下一行,加上:
export LD_PRELOAD=/usr/local/lib/libtcmalloc.so
保存后退出,然后重启MySQL服务。
4、使用lsof命令查看tcmalloc是否起效:
lsof -n | grep tcmalloc
如果出现以下信息,说明tcmalloc已经起效:
mysqld 10847 mysql mem REG 8,5 1203756 20484960/usr/local/lib/libtcmalloc.so.0.0.0
参考:1.