摘要:
1.基于MySQL主从环境 可以参考https://www.cnblogs.com/xianglei_/p/12068241.html 上传rpm包 并安装 1 2 cd /usr/local/src yum -y install percona-toolkit-3.1.0-2.el7.x86_64 阅读全文
摘要:
1.查看所有的数据库 1 show databases; 2.创建数据库 后面的时编码格式 1 create database dbName charset='utf8'; 3.使用/切换数据库 1 use dbName 4.查看正在使用的数据库 1 select database(); 5.删除数 阅读全文
摘要:
都是一些最基本的信息 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #!/bin/bash ##系统信息 #系统类型 OS_TYPE=`uname` #系统版本 OS_VER=`cat /etc/redhat-relea 阅读全文
摘要:
一键部署nginx 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 阅读全文
摘要:
任意选择3台centos系统的服务器(可以任意选择几台都可以),我的是1台centos7,2台centos6的 负载均衡端:192.168.153.171 web端:192.168.153.128 / 129 1.关闭所有服务器的防火墙以及selinux。 centos7的操作 systemctl 阅读全文