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

网站编辑招聘经典品牌策划书范文案例

网站编辑招聘,经典品牌策划书范文案例,企业所得税2024,济南信息化网站1.由于centOS7中默认安装了MariaDB,需要先进行卸载 rpm -qa | grep -i mariadb rpm -e --nodeps mariadb-libs-5.5.64-1.el7.x86_64查询下本机mysql是否卸载干净#xff0c;若有残留也需要卸载 rpm -qa | grep mysql2.下载MySQL仓库并安装 wget https://repo.mysql.com//my…1.由于centOS7中默认安装了MariaDB,需要先进行卸载 rpm -qa | grep -i mariadb rpm -e --nodeps mariadb-libs-5.5.64-1.el7.x86_64查询下本机mysql是否卸载干净若有残留也需要卸载 rpm -qa | grep mysql2.下载MySQL仓库并安装 wget https://repo.mysql.com//mysql80-community-release-el7-7.noarch.rpm yum -y install mysql80-community-release-el7-7.noarch.rpm若 GPG Keys are configured as: …异常则更新GPG钥 rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023 3.安装MySQL数据库 yum -y install mysql-community-server4.修改my.conf 且开启mysql服务 主数据库 [mysqld] # # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size 128M # # Remove the leading # to disable binary logging # Binary logging captures changes between backups and is enabled by # default. Its default setting is log_binbinlog # disable_log_bin # # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size 128M # sort_buffer_size 2M # read_rnd_buffer_size 2M # # Remove leading # to revert to previous value for default_authentication_plugin, # this will increase compatibility with older clients. For background, see: # https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin # default-authentication-pluginmysql_native_passworddatadir/var/lib/mysql socket/var/lib/mysql/mysql.socklog-error/var/log/mysqld.log pid-file/var/run/mysqld/mysqld.pidbind-address0.0.0.0 #character config character_set_serverutf8mb4 log_bin_trust_function_creators1 symbolic-links0 sql_modeSTRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES explicit_defaults_for_timestamptrue lower_case_table_names1 default-time-zone8:00server-id1 log-binmysql-bin #log过期时间 expire_logs_days 7 max_binlog_size2G# 启用全局事务标识符(GTID)用于标识复制拓扑结构中多个服务器上的事务 gtid_modeON # 使用基于GTID的复制时强制执行严格一致性检查防止数据不一致性 enforce_gtid_consistencyON # 必须参数 # 设置多级复制拓扑结构(包括双master环境)其中一个从属方作为向下游的其他从属方的主节点则这很有用 # 控制slave数据库 是否把 从master 接受到的log 合并在 本slave 执行的内容记录到slave的二进制日志中 log_slave_updates1 从数据库 [mysqld] # # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size 128M # # Remove the leading # to disable binary logging # Binary logging captures changes between backups and is enabled by # default. Its default setting is log_binbinlog # disable_log_bin # # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size 128M # sort_buffer_size 2M # read_rnd_buffer_size 2M # # Remove leading # to revert to previous value for default_authentication_plugin, # this will increase compatibility with older clients. For background, see: # https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin # default-authentication-pluginmysql_native_passworddatadir/var/lib/mysql socket/var/lib/mysql/mysql.socklog-error/var/log/mysqld.log pid-file/var/run/mysqld/mysqld.pidbind-address0.0.0.0 port3306 #character configbind-address0.0.0.0 #character config character_set_serverutf8mb4 log_bin_trust_function_creators1 symbolic-links0 sql_modeSTRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES explicit_defaults_for_timestamptrue lower_case_table_names1 default-time-zone8:00server-id2 log-binmysql-bin #log过期时间 expire_logs_days 7 max_binlog_size2G# 启用全局事务标识符(GTID)用于标识复制拓扑结构中多个服务器上的事务 gtid_modeON # 使用基于GTID的复制时强制执行严格一致性检查防止数据不一致性 enforce_gtid_consistencyON # 必须参数 # 设置多级复制拓扑结构(包括双master环境)其中一个从属方作为向下游的其他从属方的主节点则这很有用 # 控制slave数据库 是否把 从master 接受到的log 合并在 本slave 执行的内容记录到slave的二进制日志中 log_slave_updates1 启动 systemctl start mysqld.service5.查看mysql默认密码并登陆 cat /var/log/mysqld.log | grep password更改密码 alter user rootlocalhost identified by yourpassword; flush privileges;创建主库用于同步的账号 -- 配置从库连接到主库准备执行复制数据 CHANGE MASTER TO MASTER_HOST master.example.com, MASTER_USER repl, MASTER_PASSWORD password, MASTER_AUTO_POSITION 1; 7.启动主从复制 -- 启动从库复制进程 START SLAVE;-- 检查从库的状态 SHOW SLAVE STATUS\G; 物理备份 xtrabackup80 #RHEL/Centos 6以上使用 #1yum下载软件包 yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm#2测试软件包是否安装好 yum list | grep percona#3安装xtrabackup 80系列 percona-release setup ps80 yum -y --skip-broken install percona-xtrabackup-80.x86_64#4【核验】 xtrabackup --version
http://www.zqtcl.cn/news/908679/

相关文章:

  • 网站制作哪些官方静态网站模板
  • 网站开发seo网站排名优化服务
  • 佛山营销网站开发帝国cms网站公告怎么做
  • 2_试列出网站开发建设的步骤在哪里进行网站域名的实名认证
  • 个人网站做博客还是做论坛网络服务推广
  • 遵义网站制作小程序辛集做网站
  • 做逆战网站的名字吗网站维护员
  • 浏览器收录网站重庆网上房地产网
  • 门户网站建设哪专业wordpress爆破密码字典
  • 响应式网站的制作app开发公司加盟
  • 建设部安全事故通报网站sem是什么分析方法
  • 北京网站制作出名 乐云践新手机建站专家
  • 做机械有什么兼职网站安徽网站优化怎么做
  • 网站建设规划semir是什么品牌
  • 网站建设开发环境自学服装设计下载
  • 南京网站建设公司哪家好设计教程网站有哪些
  • 网页和网站做哪个好用吗陕西陕煤建设集团有限公司网站
  • 网站建设系统优势设计欣赏
  • 河北省网站建设东莞网站开发哪家好
  • php做学校网站免费苏州网站建设的公司
  • 网站做rss+wordpresswordpress动漫插件
  • wordpress更新网站内容公众号制作教程
  • 复兴区建设局网站怎么解压wordpress
  • 资源网站哪个好淄博网站设计
  • 网站建设林晓东网站数据库一般多大
  • 织梦网站后台默认登陆路径网站建设简介淄博
  • 重庆住房建设部网站东莞网站制作多少钱
  • 做胎儿羊水鉴定网站网站管理主要包括哪些内容
  • 公司网站建设应注意网店推广有哪些方法
  • 新网$网站优化企业资源管理软件