技术交流QQ群:①185473046   ②190706903   ③203744115   网站地图
登录

下次自动登录
现在的位置: 首页
0℃

CentOS 7.x 安装配置redis-7.0.4集群

2022年08月04日 Redis  ⁄ 被围观 4,066次+
准备篇 一、防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this manually or use system-c...
阅读全文
0℃

Redis日志按天切割并删除指定天数前的日志

2022年08月04日 Redis  ⁄ 被围观 3,575次+
Redis安装目录:/usr/local/redis-5.0.14/ #创建日志切割脚本 vi /usr/local/redis-5.0.14/cut-redis-log.sh #!/bin/bash #获取昨天的日期 file_date=$(date -d"1 day ago" +"%Y%m%d") #redis日志文件 log_path_redis=/usr/local/redis-5.0.14/log/redis.log #日志切割后的存放目录 back_base=/usr/local/redis-5.0.14/log/ #设置删除多少天之前的日志文件 days=180 #切割日志 #redis的日志文件可以直接mv,不需要重新加载服务就能生成新的日志文件 mv $log_path_redis $back_base/redis_$file_date.log #删除日...
阅读全文
0℃

Linux下Nginx版本平滑升级与回滚

2022年08月03日 Nginx  ⁄ 被围观 3,980次+
操作系统:CentOS 7.x 准备篇 一、防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this man...
阅读全文
0℃

CentOS 7.x 安装redis-6.0.16

2022年07月26日 Redis  ⁄ 被围观 3,193次+
准备篇 一、防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this manually or use system-c...
阅读全文
0℃

CentOS 7.x 安装redis-5.0.14

2022年07月25日 Redis  ⁄ 被围观 3,574次+
准备篇 一、防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this manually or use system-c...
阅读全文
0℃

CentOS系统下安装SNMP服务

2022年07月20日 CentOS  ⁄ 被围观 6,736次+
操作系统:CentOS 7.x 8.x 一、防火墙配置 CentOS 7.x 8.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件,开放ftp服务端口 # sample configuration for iptables service # you...
阅读全文
0℃

CentOS 7.x升级OpenSSL版本

2022年07月10日 CentOS  ⁄ 被围观 10,714次+
操作系统:CentOS 7.x 为什么要升级OpenSSL版本? CentOS 7.x 默认安装的OpenSSL是1.0.2k(CentOS 7.9) [root@mysql-master ~]# openssl version OpenSSL 1.0.2k-fips 26 Jan 2017 whereis openssl #查找opensll [root@mysql-master ~]# whereis openssl openssl: /usr/bin/openssl /usr/lib64/openssl /usr/share/man/man1/openssl.1ssl.gz 在编译安装php7.4及其以上版本的时候,需要高版本的OpenSSL;还有一些php开源框架例如ThinkPHP等程序需要高版本的OpenSSL;MySQL 8.x版本安装部署也需要高版本的OpenSSL...
阅读全文
0℃

CentOS 7.x下MySQL数据库主从同步配置

2022年06月30日 主从架构  ⁄ 被围观 2,972次+
说明: 操作系统:CentOS 7.x 64位 MySQL数据库版本:mysql-5.7.38-linux-glibc2.12-x86_64.tar.gz MySQL主服务器:192.168.21.128 MySQL从服务器:192.168.21.129 准备篇: 说明:在两台MySQL服务器192.168.21.128和192.168.21.129上分别进行如下操作 一、防火墙配置 CentOS 7.x 默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl s...
阅读全文
0℃

CentOS 7.x根分区磁盘扩容

2022年06月30日 CentOS  ⁄ 被围观 3,673次+
1、适合只有一个根分区/,非LVM分区的磁盘(云服务器/虚拟机) 首先增加磁盘容量 #查看磁盘信息 df -TH fdisk -l lsblk 可以看到磁盘容量已经变了 文件系统还是原来的 先删除分区,最后再创建根分区 fdisk /dev/sda p #查看分区信息 d #删除 n #创建分区 p 1 回车 回车全部分配 w #写入 partprobe #刷新分区 xfs_growfs /dev/sda1 #ext4文件系统扩容使用 resize2fs 扩容 df -TH #查看分区信息,磁盘已经扩容 2、把其他分区/data的容量扩容到根分区/,非LVM分区的磁盘(物理机/云服务器/虚拟机) fdisk /dev/sd...
阅读全文
0℃

Linux下PostgreSQL数据库基本操作

2022年06月28日 PostgreSQL  ⁄ 被围观 8,056次+
说明: 1、PostgreSQL 使用 pg_dump 和 pg_dumpall 进行数据库的逻辑备份,使用 psql 和 pg_restore 导入数据; 2、pg_dump 可以选择一个数据库或者部分表进行备份,pg_dumpall是对整个数据库集群进行备份; 3、psql恢复SQL文本格式的数据备份,pg_restore恢复自定义格式的数据备份。 数据库用户:dbuser 数据库:testdb 数据表:new_test,tb_test,testdb 数据库安装路径:/usr/local/pgsql/bin/ mkdir -p /data/backup #创建备份文件存放目录 chown postgres.postgres -R /data/backup su - postgres 一、Post...
阅读全文
0℃

Linux下PostgreSQL数据库主从同步配置

2022年06月26日 PostgreSQL  ⁄ 被围观 4,277次+
操作系统:CentOS-7.6 主节点:192.168.21.100 从节点:192.168.21.101 PostgreSQL版本:postgresql-11.13.tar.gz 下载地址:https://ftp.postgresql.org/pub/source/v11.13/postgresql-11.13.tar.gz PostgreSQL数据库的主从同步是一种高可用解决方案,可以实现读写分离。 一、基础配置 在主从服务器上都进行操作 1、防火墙配置 CentOS 7.x 8.x 默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1.1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.serv...
阅读全文
0℃

Proxmox Virtual Environment安装配置图解教程

2022年06月21日 Proxmox  ⁄ 被围观 10,675次+
Proxmox全称Proxmox Virtual Environment,简称PVE,是基于Debian的开源虚拟机平台,比ESXi轻量、功能丰富、对硬件要求低,几乎可以在所有x86硬件上运行。 Proxmox官方网站:https://www.proxmox.com/ 下载地址:https://www.proxmox.com/en/downloads/category/iso-images-pve 目前最新版本是:Proxmox VE 7.2 下载系统镜像,使用rufus制作U盘系统盘,注意镜像写入方式选择以DD镜像模式写入。 一、安装Proxmox 使用系统镜像引导系统,进入下面的界面。 Install Proxmox VE  #安装 如果是Vm虚拟机安装需要打开...
阅读全文
0℃

CentOS使用系统镜像搭建局域网Yum源

2022年06月16日 CentOS  ⁄ 被围观 4,386次+
一、防火墙配置 CentOS 7.x 8.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件,开放ftp服务端口 # sample configuration for iptables service # you can edit this manually o...
阅读全文
0℃

Linux下编译安装OpenResty

2022年06月08日 OpenResty  ⁄ 被围观 5,080次+
OpenResty® 是一款基于 NGINX 和 LuaJIT 的 Web 平台。 官方网站:https://openresty.org/cn/ 准备篇 一、防火墙配置 CentOS 8.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 ...
阅读全文
0℃

RHEL 9.x系统安装配置图解教程

2022年06月05日 RHEL  ⁄ 被围观 8,100次+
2022 年 5 月 18 日,IBM 收购的红帽公司宣布推出红帽企业 Linux 9 (RHEL 9),这是世界领先的企业 Linux 平台的最新版本。RHEL 9 为支持混合云创新提供了更灵活、更稳定的基础,并为跨物理、虚拟、私有和公共云和边缘部署部署应用程序和关键工作负载提供了更快、更一致的体验。 红帽® 企业 Linux® 是全球领先的企业 Linux 平台 ,是可靠的开源操作系统(OS)。用户可基于这一平台,在裸机、虚拟环境、容器及各类云环境之间扩展现有应用并部署各种新兴技术。 下载地址 Red Hat Enterprise Linux 9.0 百度网盘链接...
阅读全文
0℃

Linux下源码编译安装PostgreSQL数据库

2022年06月04日 PostgreSQL  ⁄ 被围观 3,973次+
PostgreSQL是一个功能非常强大的、源代码开放的关系型数据库,PostgreSQL被业界誉为“最先进的开源数据库”,主要面向企业复杂查询SQL的OLTP业务场景, 支持NoSQL数据类型(hstore/JSON/XML) 一、防火墙配置 CentOS 7.x 8.x 默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防...
阅读全文
0℃

Linux下搭建Prometheus+Alertmanager+Grafana监控平台

2022年05月25日 Prometheus  ⁄ 被围观 9,502次+
组件介绍: 1、Prometheus是由go语言开发的一套开源的系统监控报警框架。 2、Alertmanager是接收Prometheus发送的告警信息,它支持丰富的告警通知渠道,而且很容易做到告警信息进行去重,降噪,分组,策略路由,是一款专业的告警通知系统。 3、Grafana是一个开源的图表可视化工具,图表配置方便,生成的图表很漂亮,并能实现告警,支持五十多种数据源,Prometheus就是其中支持的一种。 4、可以理解为Prometheus是收集数据,Alertmanager是数据告警系统,Grafana是把Prometheus收集来的数据整理并通过图表的方式展...
阅读全文


Copyright© 2011-2024 系统运维 All rights reserved
版权声明:本站所有文章均为作者原创内容,如需转载,请注明出处及原文链接
陕ICP备11001040号-3