background picture of the home page

Hi,Friend

gitee 部署及操作步骤

gitee 部署及操作步骤 配置密钥 客户端 # 获取密钥 [root@git-client ~]#ssh-keygen 配置gitee密钥 # 配置gitee密钥 [root@git-client ~]#cat .ssh/id_rsa.pub ssh-rsa AAAAB3NzaC1yc2EAAA

thumbnail of the cover of the post

gitlab 仓库创建及使用

git的工作环境 工作区 暂存区 git add * 版本库 git commit -m “版本描述信息” HEAD 版本号 版本日志 git clone git@IP地址:/自建的目录/自建的库/ #克隆到本地 git add . #存储到暂存区 git commit -m "描

thumbnail of the cover of the post

zabbix-proxy配置及邮件配置

一、下载配置server,agent端 下载zabbix-server,server客户端 # 备注:zabbix源不能和epel源同时存在,要给epel源注释了 # 更新下载zabbix源 [root@zabbix-server ~]# rpm -Uvh https://repo.zabbix.c

thumbnail of the cover of the post

gitee 仓库创建及上传文件

首先由个gitee的账号 git 全局设置 git config --global user.name"名字" git config --global user.email "邮箱" 创建git仓库 mkdir qingfeng cd qingfeng git init touch README.

thumbnail of the cover of the post

redis-cluster 集群部署

redis-cluster集群 准备环境 准备3台机器,关闭防火墙和selinux # 注:规划架构两种方案,一种是单机多实例,这里我们采用多机器部署: 三台机器,每台机器上面两个redis实例,一个master一个slave,第一列做主库,第二列做备库 #记得选出控制节点 [root@local

thumbnail of the cover of the post

Redis 部署单机-主从-哨兵

Redis 1、安装单机版redis 官网下载redis https://redis.io/ 点击download,往下拉,找到以下内容 List of all releases and hash digests You can find a listing of all previous Red

thumbnail of the cover of the post

Markdown的基本语法

清风 Markdown是一种纯文本格式的标记语言。通过简单的标记语法,它可以使普通文本内容具有一定的格式。(文章内容引用网络) 优点: 1、因为是纯文本,所以只要支持Markdown的地方都能获得一样的编辑效果,可以让作者摆脱排版的困扰,专心写作。 2、操作简单。比如:WYSIWYG编辑时标记个标题

thumbnail of the cover of the post