首先,下载mysql-5.1.35.tar.gz。
复制代码代码如下:
# tar mysql-5.1.35.tar.gz
# cd mysql-5.1.35 # ./configure --prefix=/usr/local/mysql --with-extra-charset=all --with-collation=utf8_swedish_ci --with-charset=utf8 -with-mysqld-ldflags=-all-static --without-debug --enable-assembler --with-mysqld-user=mysql # make && make install # chown -R mysql:mysql /usr/local/mysql # /usr/local/mysql/bin/mysql_install_db --basedir=/usr/local/mysql --user=mysql # cp ./support-files/my-medium.cnf /etc/my.cnf /usr/local/mysql/bin/mysqld_safe --user=mysql &
master-database-server
进入mysql,并查看master
因为需要将基本的数据备份给从机,为避免错误发生,所以需要锁定表
然后查看日志id: slave-database-server
复制代码代码如下:
# vim /etc/my.cnf
进入从机mysql 添加master相关信息
复制代码代码如下:
change master to master_user='readone'; #帐号
change master to master_password='readone'; #密码 change master to master_host='192.168.1.11'; #地址 change master to master_log_file='mysql-bin.000001'; #注意,这个是之前show master status;里得到的。 change master to master_log_pos=98; #这个是之前show master status;里得到的。
start slave; #启动从模式
以下两项都为yes是从机配置成功的标志。 (责任编辑:IT) |