一、GTID简介 GTID是对于一个已提交事务的唯一编号,并且是一个全局(主从复制)唯一的编号! GTID官方定义如下: GTID = source_id :transaction_id 7E11FA47-31CA-19E1-9E56-C43AA21293967:29 什么是sever_uuid,和 ...
分类:
数据库 时间:
2021-01-01 11:41:26
阅读次数:
0
crontab命令与配置 防止忘记,这里记录一下定时任务crontab的一些命令 crontab基本操作 1.安装crontabs服务 yum install crontabs 2.设置开机自启 systemctl enable crond 3.运行服务 systemctl start crond ...
分类:
系统相关 时间:
2020-12-30 11:31:39
阅读次数:
0
一、编译部署Nginx 1.12 安装配置: [root@localhost ~]# groupadd nginx [root@localhost ~]# useradd -s /sbin/nologin -g nginx -M nginx [root@localhost ~]# systemctl ...
分类:
其他好文 时间:
2020-12-28 10:59:10
阅读次数:
0
搭建LAMP 【部署Linux环境】 [root@chaogelinux ~]# iptables -F [root@chaogelinux ~]# systemctl stop firewalld [root@chaogelinux ~]# systemctl disable firewalld ...
分类:
其他好文 时间:
2020-12-24 12:46:30
阅读次数:
0
1、查看mysql服务是否起来 2、通过修改mysql的配置文件/etc/my.conf,跳过验证,:wq保存退出 3.重启数据库 运行命令:systemctl restart mysqld 4.进入到mysql数据库 运行命令:mysql -u root 5、修改密码 运行语句:use mysql ...
分类:
数据库 时间:
2020-12-23 11:52:10
阅读次数:
0
在centos7及以后,重要的改变就是使用systemd管理机制,目前大多数linux发行版都支持systemd管理机制。 所以systemd不仅能够初始化系统开机,还能管理linux系统服务。 为了便于linux用户操作系统服务的管理,systemd提供了systemctl命令工具进行system ...
分类:
系统相关 时间:
2020-12-21 11:26:29
阅读次数:
0
一、安装supervisor yum install -y epel-release yum install -y supervisor systemctl start supervisord systemctl enable supervisord 二、使用supervisor管理进程 cat > ...
分类:
系统相关 时间:
2020-12-21 11:05:54
阅读次数:
0
前言 NFS(Network File System):网络文件系统,实现网络中计算机间文件资源的共享。 NFS环境条件:①保证客户机与NFS服务器网络通信正常,②systemctl stop firewalld关闭服务器端防火墙 NFS服务器 **需要的软件** :nfs-utils 和rpcbi ...
分类:
其他好文 时间:
2020-12-17 12:04:39
阅读次数:
2
Docker基础 Docker 安装 ubuntu18.04 server 服务器安装Docker程序 sudo apt install docker.io systemctl enable docker systemctl restart docker Docker 获取镜像 #获取nginx 镜 ...
分类:
其他好文 时间:
2020-12-16 12:48:32
阅读次数:
3
搭建时间服务器,客户端可在每天早晨的9:00整从ntp服务器更新自己的时间 搭建时间服务器 [root@bogon ~]# getenforce # 查看 selinux 状态 [root@bogon ~]# systemctl status firewalld # 查看防火墙状态 [root@bo ...
分类:
其他好文 时间:
2020-12-16 12:47:27
阅读次数:
2