摘要: 修改时区:1>找到相应的时区文件 /usr/share/zoneinfo/Asia/Shanghai用这个文件替换当前的/etc/localtime文件。或者找你认为是标准时间的服务器,然后#scp root@xxx.xxx.xxx.xxx:/etc/localtime /etc/localtime... 阅读全文
posted @ 2015-07-21 10:36 泽锦 阅读(23147) 评论(0) 推荐(1) 编辑
摘要: Python反转字符串的最简单方法是用切片:>>> a='123456'>>> print a[::-1]654321 切片介绍:切片操作符中的第一个数(冒号之前)表示切片开始的位置,第二个数(冒号之后)表示切片到哪里结束,第三个数(冒号之后)表示切片间隔数。如果不指定第一个数,Python就从序列... 阅读全文
posted @ 2015-07-21 09:01 泽锦 阅读(3587) 评论(0) 推荐(0) 编辑
摘要: host1与host3互为主从,即host1为host3的主机,同时也为host3的从机host1 192.168.203.131host2 192.168.203.132host3 192.168.203.1331.安装keepalivedwww.keepalived.org2.注意先清空防火墙i... 阅读全文
posted @ 2015-07-20 10:09 泽锦 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 安装DRBD,建议用源代码包先生成rpm包来安装,不要用直接download的rpm包,有可能会用不了,因为这跟系统内核版本有关系,在2.6.33版本以前内核没有集成drbd,A.先安装一些其它的工具包yum install gcc* flex kernel-devel rpm-build libx... 阅读全文
posted @ 2015-07-20 09:38 泽锦 阅读(1308) 评论(0) 推荐(0) 编辑
摘要: 基本的M-S结构现在master与slave主机数据一致:mysql> select * from t1;+------+| id |+------+| 1 || 2 || 4 |+------+3 rows in set (0.00 sec)我们来模拟故障现象:在master上,通过设置sql_l... 阅读全文
posted @ 2015-07-18 16:49 泽锦 阅读(1259) 评论(0) 推荐(0) 编辑
摘要: 主服务器上的相关命令:show master status;mysql> show master status\G*************************** 1. row *************************** File: host2-bin.00... 阅读全文
posted @ 2015-07-18 16:40 泽锦 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 官网说明:Normally, a slave does not log to its own binary log any updates that are received from a master server. This option tells the slave to log the u... 阅读全文
posted @ 2015-07-18 09:42 泽锦 阅读(3905) 评论(0) 推荐(1) 编辑
摘要: 我的Mysql是5.6版本,通过自己下载的rpm包执行安装:yum instal percona-xtrabackup-2.1.7-721.rhel6.x86_64.rpm会出现如下的安装错误提示:[root@host2 MySQL]# yum install percona-xtrabackup-... 阅读全文
posted @ 2015-07-15 19:37 泽锦 阅读(7139) 评论(0) 推荐(0) 编辑
摘要: [root@host2 ~]# mysql -uroot -pEnter password: ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)[... 阅读全文
posted @ 2015-07-15 15:15 泽锦 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 只需要两个步骤:1) 选项 --> 会话选项 --> 终端 --> 仿真 --> 勾选“ANSI 颜色”。2) 在.bashrc中添加:export TERM=xterm可用如下命令:[root@host1 conf]# echo "export TERM=xterm" >> ~/.bashrc[r... 阅读全文
posted @ 2015-07-15 12:31 泽锦 阅读(399) 评论(0) 推荐(0) 编辑