当前位置: 首页 > wzjs >正文

绵阳专门做网站的公司app推广多少钱一单

绵阳专门做网站的公司,app推广多少钱一单,即墨网站制作,成都网站建设赢展目录 基础环境设置 网络对时 防火墙与SELinux 配置主从复制 配置master配置文件 从服务器配置 1、master开启二进制日志记录 2、slave开启IO进程,从master中读取二进制日志并写入slave的中继日志 3、slave开启SQL进程,从中继日志中读取二进制日志…

目录

基础环境设置

网络对时

防火墙与SELinux

配置主从复制

配置master配置文件

从服务器配置


1、master开启二进制日志记录

2、slave开启IO进程,从master中读取二进制日志并写入slave的中继日志

3、slave开启SQL进程,从中继日志中读取二进制日志并进行重放

4、最终,达到slave与master中数据一致的状态,我们称作为主从复制的过程。

基础环境设置

网络对时

主与从主机都需要操作

[root@localhost ~]# cat /etc/chrony.conf | grep -Ev '^$|#'server ntp.aliyun.com iburst
driftfile /var/lib/chrony/drift
makestep 1.0 3
rtcsync
keyfile /etc/chrony.keys
leapsectz right/UTC
logdir /var/log/chrony 
[root@slave1 ~]# timedatectl set-timezone Asia/Shanghai
[root@slave1 ~]# systemctl restart chronyd.service 

防火墙与SELinux

[root@localhost ~]# systemctl disable --now firewalld
[root@localhost ~]# sed -i 's/SELIUNX=enforcing/SELINUX=disable/' /etc/selinux/config
[root@localhost ~]# setenforce 0

配置主从复制

配置master配置文件

[root@localhost ~]# cd /etc/my.cnf.d/
[root@localhost my.cnf.d]# ls
mysql-server.cnf
[root@localhost my.cnf.d]# vi mysql-server.cnf #
# This group are read by MySQL server.
# Use it for options that only the server (but not clients) should see
#
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/en/server-configuration-defaults.html# 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 mysqld according to the
# instructions in http://fedoraproject.org/wiki/Systemd[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
log-error=/var/log/mysql/mysqld.log
pid-file=/run/mysqld/mysqld.pid
log-bin=mysql-bin
binlog_format="statement"
server-id=11
log-slave-updates=true

启动服务

[root@localhost my.cnf.d]# systemctl enable --now mysqld
Created symlink /etc/systemd/system/multi-user.target.wants/mysqld.service → /usr/lib/systemd/system/mysqld.service.

创建一个可以在从主机访问的账户并查看正在使用的日志文件及日志书写位置

[root@localhost my.cnf.d]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.42 Source distributionCopyright (c) 2000, 2025, Oracle and/or its affiliates.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> create user slave@'192.168.44.%' identified by '123.com';
Query OK, 0 rows affected (0.00 sec)mysql> grant all on *.* to 'slave'@'192.168.44.%';
Query OK, 0 rows affected (0.00 sec)mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000002 |      713 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)

注意:查看位置完毕后,不要对master做insert、update、delete、create、drop等操作!!!

从服务器配置

[root@localhost ~]# vi /etc/my.cnf.d/mysql-server.cnf 
#
# This group are read by MySQL server.
# Use it for options that only the server (but not clients) should see
#
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/en/server-configuration-defaults.html# 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 mysqld according to the
# instructions in http://fedoraproject.org/wiki/Systemd[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
log-error=/var/log/mysql/mysqld.log
pid-file=/run/mysqld/mysqld.pid
log-bin=mysql-bin
binlog_format="statement"
relay-log-index=slave-bin.index
server-id=22

此时没有与主服务器进行连接,所以没有产生对应的relay log

systemctl enable --now mysqld
Created symlink /etc/systemd/system/multi-user.target.wants/mysqld.service → /usr/lib/systemd/system/mysqld.service.
[root@localhost ~]# cd /var/lib/mysql
[root@localhost mysql]# lsauto.cnf             ibdata1            mysql.ibd            public_key.pemca-key.pem           ibtmp1             mysql.sock           server-cert.pemca.pem              '#innodb_redo'      mysql.sock.lock      server-key.pemclient-cert.pem     '#innodb_temp'      mysql_upgrade_info   sysclient-key.pem       mysql              mysqlx.sock          undo_001
'#ib_16384_0.dblwr'   mysql-bin.000001   mysqlx.sock.lock     undo_002
'#ib_16384_1.dblwr'   mysql-bin.000002   performance_schemaib_buffer_pool       mysql-bin.index    private_key.pem

配置从服务器的所属主服务器

[root@localhost mysql]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.42 Source distributionCopyright (c) 2000, 2025, Oracle and/or its affiliates.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>  change master to master_host='192.168.44.163',master_user='slave',master_pas
sw
Query OK, 0 rows affected, 8 warnings (0.01 sec)mysql> start slave-> ;
Query OK, 0 rows affected, 1 warning (0.03 sec)mysql> show slave status\G;
*************************** 1. row ***************************Slave_IO_State: Connecting to sourceMaster_Host: 192.168.44.163Master_User: slaveMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql-bin.000002Read_Master_Log_Pos: 713Relay_Log_File: localhost-relay-bin.000001Relay_Log_Pos: 4Relay_Master_Log_File: mysql-bin.000002Slave_IO_Running: yesSlave_SQL_Running: YesReplicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0Last_Error: Skip_Counter: 0Exec_Master_Log_Pos: 713Relay_Log_Space: 157Until_Condition: NoneUntil_Log_File: Until_Log_Pos: 0Master_SSL_Allowed: NoMaster_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: NoLast_IO_Errno: 2061Last_IO_Error: Error connecting to source 'slave@192.168.44.163:3306'. This was attempt 1/86400, with a delay of 60 seconds between attempts. Message: Authentication plugin 'caching_sha2_password' reported error: Authentication requires secure connection.Last_SQL_Errno: 0Last_SQL_Error: Replicate_Ignore_Server_Ids: Master_Server_Id: 0Master_UUID: Master_Info_File: mysql.slave_master_infoSQL_Delay: 0SQL_Remaining_Delay: NULLSlave_SQL_Running_State: Replica has read all relay log; waiting for more updatesMaster_Retry_Count: 86400Master_Bind: Last_IO_Error_Timestamp: 250717 09:32:17Last_SQL_Error_Timestamp: Master_SSL_Crl: Master_SSL_Crlpath: Retrieved_Gtid_Set: Executed_Gtid_Set: Auto_Position: 0Replicate_Rewrite_DB: Channel_Name: Master_TLS_Version: Master_public_key_path: Get_master_public_key: 0Network_Namespace: 
1 row in set, 1 warning (0.00 sec)

查看配置是否生效

[root@localhost ~]# cd /var/lib/mysql
[root@localhost mysql]# lsauto.cnf             ibtmp1                       mysqlx.sock.lockbinlog.000001       '#innodb_redo'                performance_schemabinlog.index        '#innodb_temp'                private_key.pemca-key.pem           localhost-relay-bin.000001   public_key.pemca.pem               localhost-relay-bin.000002   server-cert.pemclient-cert.pem      mysql                        server-key.pemclient-key.pem       mysql.ibd                    slave-bin.index
'#ib_16384_0.dblwr'   mysql.sock                   sys
'#ib_16384_1.dblwr'   mysql.sock.lock              undo_001ib_buffer_pool       mysql_upgrade_info           undo_002ibdata1              mysqlx.sock

主服务器建立一个数据库能同步到从主机

mysql> create database test;
Query OK, 1 row affected (0.00 sec)mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
5 rows in set (0.00 sec)mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test               |
+--------------------+
5 rows in set (0.01 sec)

http://www.dtcms.com/wzjs/527240.html

相关文章:

  • 潍坊最早做网站的公司网络营销策划案怎么写
  • 做的网站如何投入搜索引擎lpl赛区战绩
  • 深圳网站建设html5seo人员的相关薪资
  • 佛山推广平台安徽seo优化
  • 有哪些做场景秀的网站免费做推广的网站
  • 做网站时的注册权起到什么作用杭州seo代理公司
  • 培训网站推荐营销管理系统
  • 天津做网站一般多少钱小说网站排名前十
  • 自建个人网站平台郴州seo
  • js 网站首页下拉广告互联网推广方式有哪些
  • 企业宣传册模板镇江网站seo
  • 最好的国际贸易网站青岛专业网站制作
  • 佛山搜索引擎优化青岛seo用户体验
  • 西安便宜做网站的360浏览器网页版入口
  • 做的较好的拍卖网站怎么联系地推公司
  • c语言做项目网站有哪些可以免费推广的平台
  • wordpress添加随机图片seo优化基础教程pdf
  • 沈阳建设工程招投标网上海网站优化
  • 深圳最好的网站建设公司百度搜索网址大全
  • 做地方网站论坛赚钱制作网站的软件
  • m开头的网站开发工具百度贴吧官网入口
  • 国外有没有做问卷调查的网站黄桃图片友情链接
  • 什么程序做的网站没有index页面自己怎么免费做网站
  • 常州专业网站建设推广网络营销外包公司
  • 鄂州网站建设与设计公司seo是什么意思
  • 深圳网站建设推荐在线收录
  • 上海网站建设那家好直通车推广
  • 做网站师傅关键词歌词图片
  • 建网站要先建什么友情链接买卖平台
  • 江门那里做公司网站好今天刚刚发生的新闻台湾新闻