lzqabc

导航

2022年10月9日 #

Ansible

摘要: 自动化运维 (1)环境准备 关闭防火墙和SELinux,并修改/etc/hosts文件 systemctl stop firewalld systemctl disable firewalld setenforce 0 getenforce 0 cat /etc/selinux/config … # 阅读全文

posted @ 2022-10-09 08:22 李子权 阅读(19) 评论(0) 推荐(0) 编辑

2022年9月26日 #

shell基础知识

摘要: 1.1第一个sh sh -x 1.sh + touch /tmp/1.txt + chmod 600 /tmp/2.txt + mv /tmp/1.txt /tmp/2.txt 1.2脚本执行 bash 1.sh ./1.sh -bash: ./1.sh: Permission denied chm 阅读全文

posted @ 2022-09-26 08:30 李子权 阅读(34) 评论(0) 推荐(0) 编辑

2022年9月21日 #

负载均衡

摘要: 三台虚拟机 分别取名dir rs1 rs2 给dir1和dir2分别加入网关=dir的IP vi /etc/sysconfig/network-scripts/ifcfg-ens33 GETWAY=192.168.200.147 ##也可以在虚拟机设置那边改 清空iptables的规则 iptabl 阅读全文

posted @ 2022-09-21 15:34 李子权 阅读(16) 评论(0) 推荐(0) 编辑

2022年9月19日 #

gpmall

摘要: 1.Mycat数据库分离 配置mycat三节点名字和文件 hostnamectl set-hostname mycat hostnamectl set-hostname db1 hostnamectl set-hostname db2 cat /etc/hosts 127.0.0.1 localho 阅读全文

posted @ 2022-09-19 14:01 李子权 阅读(48) 评论(0) 推荐(0) 编辑

2022年9月16日 #

构-建集群应用系统环境

摘要: mycat和2台mariadb redis机 2.redis机器 配置yum源并且下载epel-release包 rpm epel-release... yum clean all <make cacahe & repolist> yum -y install redis systemctl sta 阅读全文

posted @ 2022-09-16 11:17 李子权 阅读(15) 评论(0) 推荐(0) 编辑

zabbix

摘要: 1.配置yum源 mv /etc/yum.repos.d/* /media/ vi /etc/yum.repos.d/local.repo mount CentOS-7-x86_64-DVD-1804.iso /opt/centos/ 2.安装vsftpd yum -y install vsftpd 阅读全文

posted @ 2022-09-16 11:16 李子权 阅读(34) 评论(0) 推荐(0) 编辑

2022年9月14日 #

zookeeper

摘要: (1)3个节点修改主机名为zookeeper1、zookeeper2、zookeeper3,命令如下:zookeeper1节点:[root@localhost ~]# hostnamectl set-hostname zookeeper1zookeeper2节点:[root@localhost ~] 阅读全文

posted @ 2022-09-14 08:53 李子权 阅读(65) 评论(0) 推荐(0) 编辑

2022年9月13日 #

数据库

摘要: #配置三台主机设置 vi /etc/hosts #2. 3台机配置yum源 mv /etc/yum.repos.d/* /media/ vi /etc/yum.repos.d/local.repo mount /dev/cdrom /opt/gpmall-repo #4 主和从机安装mariadb 阅读全文

posted @ 2022-09-13 16:06 李子权 阅读(7) 评论(0) 推荐(0) 编辑

OwnCloud

摘要: 准备10.9.1的owncloud包,使用wget或者网页上直接下都行,搭配php7.4.30 #网页默认存放目录 chmod 777 /var/www/html#存放网页数据,放在主目录 #2配置网络源<这里使用阿里云镜像> cd /etc/yum.repos.d/ rm -f C* curl - 阅读全文

posted @ 2022-09-13 09:12 李子权 阅读(25) 评论(0) 推荐(0) 编辑

2022年9月7日 #

Apache

摘要: 14.6.3 配置域名跳转 # vim /usr/local/apache2 .4/conf/extra/httpd-vhosts.conf //把123.com的域名转到www.123.ccom # vim /usr/local/apache2 .4/conf/extra/httpd-vhosts 阅读全文

posted @ 2022-09-07 14:34 李子权 阅读(32) 评论(0) 推荐(0) 编辑