tbase同步mysql_mysql主从同步

MySQL主从介绍

MySQL主从叫做Replication、AB复制,A和B做主从后,在A上写数据。B上也会同步A的数据,两者实现实时同步

MySQL是基于binlog日志来同步的,主上必须开启binlog才能进行主从同步,同步过程大概有三个步骤

(1)主将数据操作更改的记录到binlog中

(2)主从之间同步比较binlog的事件记录,A将事件记录到binlog里,从同步到本地后也会在本机上记录一个relaylog的文件

(3)从根据relaylog里面的事件记录来执行同步

主上有一个log dump的线程,用来和从的I/O线程传递binlog

从上会有两个线程,其中I/O线程用于同步binlog的记录并产生relaylog记录,另一个SQL线程用来执行relaylog中的事务,把SQL数据在主上按大小、改变、来一一同步

主从同步有两种场景模式

主-从:主负责所有的数据查询和更改,从只负责数据的备份,只起到备份的作用

主写-从读:主负责数据来源的存储和修改,不用于数据查询。从不仅起到实时备份的作用,还对外部提供查询数据的访问,这样可以减小主数据库的访问压力

主从数据库准备

安装mysql数据库可以参考另一篇文章

对mysql的编译安装参数参考:

[root@localhost mysql-5.7.22]# cmake . -DCMALE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/var/mysql/data -DSYSCONFDIR=/etc -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock -DWITH_PARTITION_STORAGE_ENGINE=1 -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH-SYSTEMD=1 -DWITH_BOOST=/usr/local/boost

-----------------------省略过程----------------------

-- CMAKE_C_LINK_FLAGS:

-- CMAKE_CXX_LINK_FLAGS:

-- CMAKE_C_FLAGS_RELWITHDEBINFO: -O3 -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DDBUG_OFF

-- CMAKE_CXX_FLAGS_RELWITHDEBINFO: -O3 -g -fabi-version=2 -fno-omit-frame-pointer -fno-strict-aliasing -DDBUG_OFF

-- Configuring done

-- Generating done

-- Build files have been written to: /usr/local/src/mysql-5.7.22

[root@localhost mysql-5.7.22]# echo $?

0

结果无报错,继续make编译

[root@localhost mysql-5.7.22]# make

Scanning dependencies of target abi_check

[ 0%] Built target abi_check

Scanning dependencies of target INFO_SRC

[ 0%] Built target INFO_SRC

Scanning dependencies of target INFO_BIN

[ 0%] Built target INFO_BIN

Scanning dependencies of target zlib

----------------省略过程------------------------

[ 99%] Building C object libmysqld/examples/CMakeFiles/mysql_client_test_embedded.dir/__/__/testclients/mysql_client_test.c.o

[ 99%] Linking CXX executable mysql_client_test_embedded

[ 99%] Built target mysql_client_test_embedded

Scanning dependencies of target my_safe_process

[100%] Building CXX object mysql-test/lib/My/SafeProcess/CMakeFiles/my_safe_process.dir/safe_process.cc.o

[100%] Linking CXX executable my_safe_process

[100%] Built target my_safe_process

[root@localhost mysql-5.7.22]# aecho $?

0

安装无报错,完成最后安装make install

-----------------------过程省略---------------------

-- Installing: /usr/local/mysql/support-files/mysqld_multi.server

-- Installing: /usr/local/mysql/support-files/mysql-log-rotate

-- Installing: /usr/local/mysql/support-files/magic

-- Installing: /usr/local/mysql/share/aclocal/mysql.m4

-- Installing: /usr/local/mysql/support-files/mysql.server

[root@localhost mysql-5.7.22]# echo $?

0

基本的安装完成,接下来就是配置mysql的启动和配置项

递归指定mysql所属用户和所属组的权限

[root@localhost ]# chown -R mysql:mysql /usr/local/mysql/

数据库的初始化

编译好的数据库进行初始化,其中mysql初始化信息中包含一个随机生成的密码

[root@localhost mysql-5.7.22]# /usr/local/mysql/bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

2018-07-28T09:08:42.088874Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2018-07-28T09:08:42.590615Z 0 [Warning] InnoDB: New log files created, LSN=45790

2018-07-28T09:08:42.861362Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.

2018-07-28T09:08:42.955937Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: d342a57c-9245-11e8-bf5e-080027a7f9c2.

2018-07-28T09:08:42.965634Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.

2018-07-28T09:08:42.966858Z 1 [Note] A temporary password is generated for root@localhost: tHuQg=%M!12j

my.cnf和/etc/init.d/mysqld文件

拷贝服务启动文件,并修改my.cnf配置文件。指定mysql安装路径和存储数据的路径及添加系统服务

[root@localhost ]# cp /usr/local/src/mysql-5.7.22/support-files/mysql.server /etc/init.d/mysqld

[root@localhost ]# vim /etc/init.d/mysqld

~

basedir=/usr/local/mysql/

datadir=/usr/local/mysql/data/

~

[root@localhost ]# chmod +x /etc/init.d/mysqld

[root@localhost ]# ls -l /etc/init.d/mysqld

-rwxr-xr-x 1 root root 10609 7月 28 17:21 /etc/init.d/mysqld

[root@localhost ]# chkconfig --add mysqld

[root@localhost ]# chkconfig --list

注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。

如果您想列出 systemd 服务,请执行 'systemctl list-unit-files'。

欲查看对特定 target 启用的服务请执行

'systemctl list-dependencies [target]'。

mysqld 0:关  1:关 2:开 3:开 4:开 5:开 6:关

netconsole 0:关  1:关 2:关 3:关 4:关 5:关 6:关

network 0:关 1:关 2:开 3:开 4:开 5:开 6:关

编辑my.cnf的mysql配置文件,log-error是记录启动时报错的错误信息。在报错pid的错误中,有尝试把basedir = 的配置给注释掉,然后mysql能正常启动了,查看错误日志记录,日志记录报错unknown variable /usr/local/mysql/ 未知的变量路径,说明my.cnf指定的路径有问题,这里我直接注释掉basedir这个路径,然后启动成功

[root@localhost ]# less /etc/my.cnf

[mysqld]

basedir = /usr/local/mysql/

datadir = /usr/local/mysql/data

port = 3306

character-set-server = utf8

explicit_defaults_for_timestamp = true

# socket = /var/run/mysqld/mysqld.sock

# Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

# Settings user and group are ignored when systemd is used.

# If you need to run mysqld under a different user or group,

# customize your systemd unit file for mariadb according to the

# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]

log-error=/var/log/mariadb/mariadb.log

pid-file=/var/run/mariadb/mariadb.pid

log-error = /data/mysql/logs/error.log

#

# include all files from the config directory

#

!includedir /etc/my.cnf.d

mysql的启动过程

添加完成跟随系统启动后,启动mysql服务:

[root@localhost ]# /etc/init.d/mysqld start

Starting MySQL.2018-07-28T09:23:23.822700Z mysqld_safe error: log-error set to '/var/log/mariadb/mariadb.log', however file don't exists. Create writable for user 'mysql'.

ERROR! The server quit without updating PID file (/usr/local/mysql/data/localhost.pid).

根据报错提示创建了mysql的日志文件,然后再尝试启动

[root@localhost ]# mkdir -p /var/log/mariadb/mariadb

[root@localhost ]# touch /var/log/mariadb/mariadb.log

[root@localhost ]# chown -R mysql:mysql /var/log/mariadb/mariadb

再次尝试启动mysql服务,并启动成功

[root@localhost support-files]# /etc/init.d/mysqld start

Starting MySQL. SUCCESS!

[root@localhost support-files]# ps -aux |grep mysql

root 21812 0.0 0.1 113312 1636 pts/0 S 17:28 0:00 /bin/sh /usr/local/mysql//bin/mysqld_safe --datadir=/usr/local/mysq/data --pid-file=/usr/local/mysql/data/localhost.pid

mysql 22000 1.7 16.3 1112372 166604 pts/0 Sl 17:28 0:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql//lib/plugin --user=mysql --log-error=/var/log/mariadb/mariadb.log --pid-file=/usr/local/mysql/data/localhost.pid --port=3306

root 22030 0.0 0.0 112724 976 pts/0 R+ 17:28 0:00 grep --color=auto mysql

将mysql命令写入系统文件中,这样就能在命令行中直接使用mysql这个命令了

[root@localhost mysql]# echo "export PATH=$PATH:/usr/local/mysql/bin/" >>/etc/profile

[root@localhost mysql]# source /etc/profile

[root@localhost mysql]# echo "/usr/local/mysql/lib/" >>/etc/ld.so.conf

[root@localhost mysql]# ldconfig

建立master和slave的主从通信

步骤一

master主配置

清除iptables防火墙规则,由于没有清除iptables。导致进来的数据被转发重定向到其他IP地址上了

[root@aaa ~]# iptables -nvL

Chain INPUT (policy ACCEPT 0 packets, 0 bytes)

pkts bytes target prot opt in out source destination

4811 348K ACCEPT all -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED

1 84 ACCEPT icmp -- * * 0.0.0.0/0 0.0.0.0/0

4 324 ACCEPT all -- lo * 0.0.0.0/0 0.0.0.0/0

2 104 ACCEPT tcp -- * * 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22

13467 1028K REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)

pkts bytes target prot opt in out source destination

0 0 REJECT all -- * * 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited

Chain OUTPUT (policy ACCEPT 3311 packets, 1476K bytes)

pkts bytes target prot opt in out source destination

[root@aaa ~]# iptables -F

安装完mysql后,对my.cnf配置文件进行修改,添加binlog日志的记录,指定主从运行时的serverID。

修改my.cnf,添加binlog日志的产生配置并指定mysql的运行server级别ID

如果只同步或不同步的库,就需要在my.cnf中指定不同步或同步的库

#binlog-do-db=db1        #只针对指定库同步

#binlog-ignore-db=mysql    针对某些库不同步

[root@aaa /]# vim /etc/my.cnf

[mysqld]

basedir = /usr/local/mysql/

datadir = /usr/local/mysql/data

port = 3306

character-set-server = utf8

explicit_defaults_for_timestamp = true

server-id = 10

log-bin = zidingyi

在数据库中创建一个从数据库使用访问的授权用户,用于从在master中读取数据并进行同步的作用

mysql> grant replication slave on *.* to 'repl'@192.168.1.220 identified by 'xiangchen' ;

Query OK, 0 rows affected, 1 warning (0.00 sec)

查看主数据库中的binlog存储的值,这个是用于记录数据存储大小的记录的,如果数据表发生读写变化,这里也会发生改变。在主从同步前需要在主库锁表停止数据库读写。file是指定生成binlog文件的名称,Position是数据存储的变化值,通过这个值来进行同步,这个值也表达了binlog文件的改变大小

mysql> show master status;

+-----------------+----------+--------------+------------------+-------------------+

| File           | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

+-----------------+----------+--------------+------------------+-------------------+

| zidingyi.000001 | 1108     |             |                 |                   |

+-----------------+----------+--------------+------------------+-------------------+

1 row in set (0.00 sec)

将主库锁表暂时禁止读取写入

mysql> flush tables with read lock;

Query OK, 0 rows affected (0.01 sec)

步骤二

slave从配置

slave角色上同样需要清除iptables规则,以免主从之间无法通信

slave从上配置my.cnf,修改server-id,这个id不能小于主上的配置,数值越小优先级越高。从服务器的my.cnf不需要配置log-bin,因为是slave的角色,所以只需要从master那里同步数据即可

[root@Huaching-2 ~]# vim /etc/my.cnf

[mysqld]

#bashdir = /usr/local/mysql/

datadir = /data/mysql

port = 3306

character-set-server = utf8

explicit_defaults_for_timestamp = true

server-id = 20

重启后登入从数据库中,先暂停slave的角色,并在数据库中写入与master通信的一些信息(binlog记录的数值)。

master_log_file是指定主上生成binlog文件的名称,slave会通过这个名称去找对应的binlog文件。

master_log_pos是指定master数据存储的变化值,通过这个值来进行同步,这个值也表达了binlog文件的改变大小

[root@Huaching-2 ~]# /etc/init.d/mysqld restart

Shutting down MySQL.. SUCCESS!

Starting MySQL.. SUCCESS!

mysql> stop slave ;

Query OK, 0 rows affected (0.01 sec)

mysql> change master to master_host='192.168.1.234', master_port=3306, master_user='slave', master_password='xiangchen', master_log_file='zidingyi.000001', master_log_pos=1108;

Query OK, 0 rows affected, 2 warnings (0.02 sec)

步骤三

解除master表锁和启动slave角色,进行数据同步

设置好master和slave的授权和访问账户设置后,解除master的表锁和启动slave的角色,并把master中的库拷贝到slave中,这样才能够保证启动同步时两边数据的一致性

在解除master的表锁之前,拷贝master数据到slave中,忽略明文密码的警告

[root@aaa ~]# mysqldump -uroot -ppwd@123 mysql2 > my2.db

mysqldump: [Warning] Using a password on the command line interface can be insecure.

[root@aaa ~]# mysqldump -uroot -ppwd@123 zrlog > zrlog.db

mysqldump: [Warning] Using a password on the command line interface can be insecure.

将以db结尾的后缀备份文件通过scp、rzsz或者ftp等方法传输到slave上,slave在库中需要创建需要恢复库的一个空库,用于数据导入

mysql> create database mysql2;

Query OK, 0 rows affected (0.02 sec)

mysql> create database zrlog;

Query OK, 0 rows affected (0.02 sec)

mysql> exit

Bye

[root@Huaching-2 ~]# mysql -uroot -ppwd@123 mysql2 < my2.db

[root@Huaching-2 ~]# mysql -uroot -ppwd@123 zrlog < zrlog.db

master上可以把数据表锁解除掉,让主数据库可以正常读写访问

mysql> unlock tables;

mysql> flush privileges;

在从数据库启用slave的角色,并与master数据库进行数据同步(数据同步前两个数据库数据必须一致,否则同步会造成数据不一样的情况发生)

mysql> start slave;

Query OK, 0 rows affected (0.00 sec)

查看主从同步的信息,这里主要关注 Slave_IO_Running: Yes和 Slave_SQL_Running: Yes这两个值,一个表示是否和master正常通信的状态,Slave_IO是和master的IO进程通信的一个线程,yes表示在正常运行。另一个是表示SQL执行是否在监听状态

mysql> show slave status\G;

*************************** 1. row ***************************

Slave_IO_State: Waiting for master to send event

Master_Host: 192.168.1.234

Master_User: slave

Master_Port: 3306

Connect_Retry: 60

Master_Log_File: zidingyi.000001

Read_Master_Log_Pos: 1108

Relay_Log_File: Huaching-2-relay-bin.000002

Relay_Log_Pos: 319

Relay_Master_Log_File: zidingyi.000001

Slave_IO_Running: Yes

Slave_SQL_Running: Yes

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table:

Last_Errno: 0

Last_Error:

Skip_Counter: 0

Exec_Master_Log_Pos: 1108

Relay_Log_Space: 531

Until_Condition: None

Until_Log_File:

Until_Log_Pos: 0

Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master: 0

Master_SSL_Verify_Server_Cert: No

Last_IO_Errno: 0

Last_IO_Error:

Last_SQL_Errno: 0

Last_SQL_Error:

Replicate_Ignore_Server_Ids:

Master_Server_Id: 10

Master_UUID: 9174f3d7-9c9a-11e8-88a9-08002733edda

Master_Info_File: /data/mysql/master.info

SQL_Delay: 0

SQL_Remaining_Delay: NULL

Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates

Master_Retry_Count: 86400

Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp:

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set:

Executed_Gtid_Set:

Auto_Position: 0

Replicate_Rewrite_DB:

Channel_Name:

Master_TLS_Version:

测试主从同步

master和slave的my.cnf中使用的同步配置

master的my.cnf中可以指定同步时排除或者只同步某些库

#binlog-do-db=db1        #只针对指定库同步

#binlog-ignore-db=mysql    针对某些库不同步

slave角色配置针对某些库完全记录执行,不会忽略掉binlog中某条SQL执行语句

replicate_wild_do_table=   支持通配符,统配库,如user.

replicate_wild_ignore_table=   表示这个配置里的内容会被忽略执行

不建议使用以下的配置参数,因为匹配同步的库也有可能会被忽略不去执行

匹配库

replicate_do_db=

replicate_ignore_db=

匹配表

replicate_do_table=

replicate_ignore_table=

在主上查询库的操作,查询主从数据是否一致,相同的库、相同的表

mysql> use mysql2

Database changed

mysql> select count(*) from user;

+----------+

| count(*) |

+----------+

| 6       |

+----------+

1 row in set (0.00 sec)

slave从上的查询结果

mysql> use mysql2

Database changed

mysql> select count(*) from user;

+----------+

| count(*) |

+----------+

| 6       |

+----------+

1 row in set (0.00 sec)

在主上清空这个数据表的内容并查看数据表的行数

mysql> truncate table user;

Query OK, 0 rows affected (0.00 sec)

mysql> select count(*) from user;

+----------+

| count(*) |

+----------+

| 0       |

+----------+

1 row in set (0.00 sec)

slave从上只执行查询数据表行数的操作,结果是会把同样的数据执行同步过来

mysql> select count(*) from user;

+----------+

| count(*) |

+----------+

| 0       |

+----------+

1 row in set (0.00 sec)

如果发生在从上删除表删除库的操作,此时master主上如果误执行了slave上被删除的内容的话,还会造成主从同步发生问题,只能通过重新在slave上指定position的值来进行同步了。这种误操作会破坏主从之间的同步

从删除某些内容后再次同步时发生的报错信息

Last_ SQL_ Error: Error 'Can't drop database 'user'; database doesn't exist' on query. Default database: 'user'. Query: 'drop database user'

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/457322.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2017将转行进行到底

2016 年说着转行&#xff0c;最后还是在匆匆中找了一份老本行&#xff0c;此刻的心情还是无爱&#xff0c;毕竟螺丝一直分不清啊&#xff0c;不喜欢就是不喜欢。看了django的教程&#xff0c;不得不感叹国外的书写的相对优秀一点&#xff0c;《learning django web development…

mysql中函数是否可以返回多个值_是否可以从mysql函数返回多个值?

我的脏解决方案是&#xff1a;1.连接字符串中的值. 2返回字符串. 3 Splits将字符串返回值.我认为它不优雅,我确信这有局限性,但它适用于简单的情况还有必要创建分裂函数,因为Mysql没有这个函数&#xff1a;首先编辑你的功能.CREATE FUNCTION yourFunctionWith2valuesForReturni…

lua自定义迭代器

迭代器 http://www.tutorialspoint.com/lua/lua_iterators.htm 迭代器能够让你遍历某个集合或者容器中的每一个元素。 对于lua来说&#xff0c; 集合通常指代 table&#xff0c; 用于创建变化的数据结构&#xff0c; 类似数组。 Iterator is a construct that enables you to t…

mysql非主键索引_主键索引和非主键索引的区别

1. 什么是最左前缀原则&#xff1f;以下回答全部是基于MySQL的InnoDB引擎例如对于下面这一张表如果我们按照 name 字段来建立索引的话&#xff0c;采用B树的结构&#xff0c;大概的索引结构如下如果我们要进行模糊查找&#xff0c;查找name 以“张"开头的所有人的ID&#…

优美的配色方案设计

2019独角兽企业重金招聘Python工程师标准>>> 怎么做好设计配色一直是个难题&#xff0c;虽然网站上有各种各样的色库&#xff0c;但配色仍然至关重要&#xff0c;不得已的话可以亲自动手&#xff0c;况且乐趣满满。 这个没有一套标准&#xff0c;所以看自己怎么喜欢…

It's a start!

开始博客之旅转载于:https://www.cnblogs.com/catchingdream/p/5843172.html

mysql死锁释放时间参数_【Mysql】mysql 事务未提交导致死锁 Lock wait timeout exceeded; try restarting transaction 解决办法...

问题场景问题出现环境&#xff1a;1、在同一事务内先后对同一条数据进行插入和更新操作&#xff1b;2、多台服务器操作同一数据库&#xff1b;3、瞬时出现高并发现象&#xff1b;不断的有一下异常抛出&#xff0c;异常信息&#xff1a;org.springframework.dao.CannotAcquireLo…

ORACLE sqlplus设置行数和宽度

1) 查看目前的pagesize,默认是14:Sqlplus代码show pagesize; 2) 将pagesize设置好100,则可以一次显示够多行记录了:Sqlplus代码set pagesize 100; 2. 设置行的宽度1) 查看目前的linesize,默认是80:Sqlplus代码show linesize; 2) 设置成100或者更宽都可以:Sqlplus代码set li…

mysql关系模式怎么画_关系数据库与mysql

表下面是阿里的mysql设计原则&#xff0c;可以参考&#xff0c;不一定按照阿里规则&#xff0c;但一个团队一定要有规则&#xff0c;如果现在没有规则&#xff0c;从现在开始&#xff0c;慢慢推广&#xff0c;适应1.【强制】表达是与否概念的字段&#xff0c;必须使用 is_xxx的…

Javascript 构造函数模式、原型模式

前两天写完组合继承&#xff0c;打算总结一下原型继承的&#xff0c;不过今天看了一下工厂模式、构造函数模式和原型模式&#xff0c;觉得有必要总结一下以加深印象。 ———————————————————————————————————————————————————…

2016年CCF第七次测试 俄罗斯方块

1 //2016年CCF第七次测试 俄罗斯方块2 // 这道小模拟题还是不错3 // 思路&#xff1a;处理出输入矩阵中含1格子的行数和列数4 // 再判是否有一个格子碰到底部&#xff0c;否则整体再往下移动一步&#xff0c;如果有一个格子不能移动&#xff0c;要返回到前一步5 6 #include <…

springmvc视图解析器_SpringMVC视图及REST风格

什么是视图解析器&#xff1f;springMVC用于处理视图最重要的两个接口是ViewResolver和View。ViewResolver的主要作用是把一个逻辑上的视图名称解析成一个真的的视图&#xff0c;而SpringMVC中用于把View对象呈现给客户端的是View对象本身&#xff0c;而ViewResolver只是把逻辑…

mysql5.7.x 1251_MySql-8.0.x免安装版下载与配置,Navicat打开数据库链接报错1251的解决办法...

概述MySQL从5.7一下子跳到了MySQL8.0, 其中的变化必然是很大的, 这里就不说了, 本文主要讲解最新版MySQL安装的事情.实际上5.7版本后的mysql免安装版都是没有data文件和my.ini文件的&#xff0c;下面再具体说明怎么生成&#xff0c;注意不能自己手动新建.下载下载程序必然去官网…

To install 64-bit ODBC drivers

为了更充分的利用硬件资源&#xff0c;我想很多人都开使用64位操作系统了&#xff0c;同时你可以也发现了在64位操作系统上ODBC的驱动找不到了&#xff0c;所以ODBC的东西都没法用了。 因为2007以前版本的Office只有32位版本&#xff0c;所以我们不能在64位系统上使用ODBC。使用…

【Qt开发】QTableWidget设置根据内容调整列宽和行高

QTableWidget要调整表格行宽主要涉及以下一个函数 1.resizeColumnsToContents(); 根据内容调整列宽 2.resizeColumnToContents(int col); 根据内容自动调整给定列宽 3.horizontalHeader()->setResizeMode 把给定列…

深入浅出mysql数据开发_深入浅出MySQL数据库开发、优化与管理维护 PDF扫描版[513KB]...

深入浅出MySQL数据库开发、优化与管理维护 内容介绍&#xff1a;本书从数据库的基础、开发、优化、管理维护4个方面对MySQL进行了详细的介绍&#xff0c;其中每一部分都独立成篇。本书内容实用&#xff0c;覆盖广泛&#xff0c;讲解由浅入深&#xff0c;适合于各个层次的读者。…

Understand Lambda Expressions in 3 minutes(翻译)

本文翻译自CodeProject上的一篇简单解释Lambda表达式的文章&#xff0c;适合新手理解。译文后面我补充了一点对Lambda表达式的说明。 1.什么是Lambda表达式&#xff1f; Lambda表达式是一种匿名方法&#xff0c;多数情况下用来在LINQ中快速创建委托。简单地说&#xff0c;它代表…

Hibernate二级缓存配置

一、定义&#xff1a; 二级缓存是进程或集群范围内的缓存&#xff0c;可以被所有的Session共享&#xff0c;是可配置的插件 二、二级缓存原理图 解析&#xff1a;每次从二级缓存中取出的对象&#xff0c;都是一个新的对象。 三、配置步骤如下&#xff1a; 同理&#xff1a;以员…

redis配置主从没效果_跟我一起学Redis之加个哨兵让主从复制更加高可用

Redis哨兵(Sentinel)其实本质就是一个RedisServer节点&#xff0c;通过设置 运行模式 来开启哨兵的功能&#xff1b;主要功能如下&#xff1a;监控(Monitoring )&#xff1a;哨兵节点会不断地检查的主服务和从服务的运行状态&#xff1b;自动故障迁移(Automatic failover) &…

闰秒导致MySQL服务器的CPU sys过高

今天&#xff0c;有个哥们碰到一个问题&#xff0c;他有一个从库&#xff0c;只要是启动MySQL&#xff0c;CPU使用率就非常高&#xff0c;其中sys占比也比较高&#xff0c;具体可见下图。 注意&#xff1a;他的生产环境是物理机&#xff0c;单个CPU&#xff0c;4个Core。 于是&…