7 年前

centos 7 部署 汉化版 gitlab 11.4.14 + 自建nginx

gitlab   gitlab汉化  

部署社区版gitlab 安装gitlab的依赖项 yum install -y curl openssh-server openssh-clients postfix cronie policycoreutils-python 启动postfix,并设置为开机启动 systemctl start postfix systemctl enable postfix 设置防火墙 fire…

7 年前

Redis3 cluster

redis cluster  

安装依赖包 yum -y install wget vim openssl openssl-devel zlib zlib-devel gcc gcc-c++ epel-release jemalloc jemalloc-devel 创建用户 groupadd redis useradd -gredis -s /sbin/nologin -M redis 开始安装redis = wget http…

7 年前

MySQL 8 安装部署详细文档

mysql 8  

添加MySQL账户 groupadd mysql useradd -gmysql -s /sbin/nologin -M mysql 删除系统自带的MySQL及配置 rm -rf /etc/my.cnf /etc/my.cnf.d/ rpm -e mariadb-libs mysql-libs --nodeps 安装依赖 yum install -y gcc gcc-c++ ncurses ncu…