gitlab-ce 14.x系列要求最低2核cpu和4g内存配置,有余量的请配置4核cpu和6-8g内存。本文以纯净安装的CentOS 7作为示例,以防系统原有服务与gitlab服务有互相冲突的情况存在(特别是端口)systemctl stop firewalld
systemctl disable firewalld
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g'/e...
之前站内的一些基础服务配置中使用的ftp服务器范例一直是vsftpd,由于它自身在多级目录权限控制上较为弱势,故之后将采取proftpd替代基础配置内容中的vsftpd。cd /tmp
wget tar -zxvf proftpd-1.3.7a.tar.gz
cd proftpd-1.3.7a
./configure --prefix=/usr/local/proftpd --sysconfdir...
近期开始整理前几年的技术笔记,先从Docker开始,然后是K8s,然后是vSphere等...
# 查询端口是否开放firewall-cmd --query-port=8080/tcp# 开放80端口firewall-cmd --permanent --add-port=80/tcp# 移除端口firewall-cmd --permanent --remove-port=8080/tcp#重启防火墙(修改配置后要重启防火墙)firewall-cmd --reload#查询防火墙目前状态firewall-cmd --state或systemctl status firewalld# 开启se...
本文示例在配置时使用的是CentOS 7系统,在使用64位CentOS 6系统参照本文时需要注意glibc的版本,有时因依赖组件版本低于发行版hadoop的库文件编译版本时,执行hadoop相关命令时,会收到类似报错“WARN util.NativeCodeLoader: Unable to load native-hadoop library for
your platform... using builtin-java classes where applicable”本文使用的示例为a...