安装Percona-toolkit
Percona-toolkit由Percona公司出品,是对MySQL功能的补充,给MySQL DBA带来了很大便利,也应该是每个DBA应该掌握的工具。其包含了大量pt工具,比如pt-heartbeat,pt-slave-delay,pt-table-checksum,pt-table-sync等。用于监控MySQL的状态、主从同步状况、修复主从不同步表等。 安装方法: 1、编译安装(推荐) [c
Read morePercona-toolkit由Percona公司出品,是对MySQL功能的补充,给MySQL DBA带来了很大便利,也应该是每个DBA应该掌握的工具。其包含了大量pt工具,比如pt-heartbeat,pt-slave-delay,pt-table-checksum,pt-table-sync等。用于监控MySQL的状态、主从同步状况、修复主从不同步表等。 安装方法: 1、编译安装(推荐) [c
Read more前段时间搭建了一个测试库,主库是双节点RAC,备库是单实例。最近开发人员测试时,老反应主备数据不同步。 检查主备库参数配置都没发现问题。最后通过dataguard日志,终于找出问题所在。
1 2 3 |
1 Log Apply Services Informational 0 1888 0 NO 2015-08-06 23:26:02 Media Recovery Log /u01/app/oracle/arch/2_1046_884367293.arc 1 Log Apply Services Warning 0 1889 0 NO 2015-08-06 23:26:03 Media Recovery Waiting for thread 2 sequence 1047 (in transit) 1 Remote File Server Warning 0 1890 0 NO 2015-08-06 23:27:02 RFS[79]: No standby redo logfiles created for thread 2 |
上面第三行日志可以看到,日志报RFS[79]: No standby redo logfiles created for thread 2,意思是
Read more查看 max_binlog_stmt_cache_size 参数解释时,有这么一句话 If nontransactional statements within a transaction require more than this many bytes of memory, the server generates an error. 那么,什么是 nontransactional state
Read moreMySQL用户登陆验证过程: 1、MySQL server将user表读入到内存中,然后排序,排序原则下面会讲 2、客户端尝试连接MySQL服务器,服务器扫描内存中排序过后的user表的条目 3、MySQL服务器采纳第一行匹配的客户端名和用户名,然后验证通过 MySQL服务器内存中user表排序原则: 1、最具象(most-specific)的条目放在最前面。 2、user表的host列,文本主机
Read more为现有RAC搭建了一套RAC stanby备库,在客户端用VIP可以正常连接,但是通过SCAN IP则无法连接。 客户端无法登录
1 2 3 4 5 6 7 |
$ sqlplus TRADE/xxxxx@10.0.2.110/trade34 SQL*Plus: Release 11.2.0.4.0 Production on Wed Mar 23 13:56:41 2016 Copyright (c) 1982, 2013, Oracle. All rights reserved. ERROR: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor |
问题原因 服务端是RAC,没有设置remote_listener。 11gR2 数据库,默认设置local_listener 参数为local LISTENER(本地监听器,ip地址为vip),为VIP
Read moreIBM X3850安装linux出现 “您还么有创建/boot/efi分区” 解决办法: ·开机自检按F1进入UEFI ·进入Boot Manager ·选择Add Boot Option选项 ·选择Legacy Only按回车 ·返回Boot Manager,选择Change Boot Order ·选中存在的Boot Order按回车,选中Legacy Only用+键将
Read more