下载此文档

Mysql双主模式.doc


文档分类:IT计算机 | 页数:约17页 举报非法文档有奖
1/17
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/17 下载此文档
文档列表 文档介绍
Mysql双主模式
安装mysql
yum list mysql-server
yum install mysql-server
service mysqld start
修改mysql密码: mysql> set password for ******@localhost = password('123');

环境:
mysql 5.*
设置同步账号密码及权限
Db1:
mysql> grant all privileges on *.* to ******@ identified by 'root' with grant option;
mysql> flush privileges;
Db2:
grant all privileges on *.* to ******@ identified by 'root' with grant option;
mysql> flush privileges;
测试:
mysql -h -usroot -proot
mysql -h -usroot -proot
修改MySQL配置文件
修改 vim /etc/f
以root登陆DBS1,vim /etc/f 文件:
Vim /etc/f
在[mysqld]的配置项中增加如下配置:
[client]
port = 3306
socket = /var/lib/mysql/
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/
user=mysql
# Disabling symbolic-links is mended to prevent assorted security risks
symbolic-links=0
port=3306
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
thread_concurrency = 2
log-bin=mysql-bin
relay-log=mysql-relay-log
binlog_format=mixed
server-id = 1
auto-increment-increment=10
auto-increment-offset=1
以root用户登录ServDB2,f文件:
[client]
port = 3306
socket = /var/lib/mysql/
[mysqld]
port=3306
datadir=/var/lib/mysql
socket=/var/lib/mysql/
user=mysql
# Disabling symbolic-links is mended to prevent assorted security risks
symbolic-links=0
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
thread_concurrency = 2
log-bin=mysql-bin
binlog_format=mixed
server-id = 2
auto-increment-increment=10
auto-increment-offset=2
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
n

Mysql双主模式 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数17
  • 收藏数0 收藏
  • 顶次数0
  • 上传人63229029
  • 文件大小74 KB
  • 时间2017-08-01
最近更新