echo "-------------------1.4 关闭 selinux"
grep "^SELINUX=disabled" /etc/selinux/config > /dev/null 2>&1
if [ $? -eq 1 ];then
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config > /dev/null
2>&1
fi
setenforce 0 > /dev/null 2>&1
echo
echo "-------------------1.5 配置资源限制"
grep "^# postgres limit" ${LIMIT} > /dev/null 2>&1
if [ $? -eq 0 ];then
cat >> /etc/security/limits.conf <<EOF
# postgres limit
* soft nofile 1024000 # The maximum number of open file descriptors
* hard nofile 1024000
* soft nproc unlimited # The maximum number of processes available to a single
user
* hard nproc unlimited
* soft memlock unlimited # The maximum size that may be locked into memory
* hard memlock unlimited
* soft core unlimited # The maximum size of core files created
* hard core unlimited
* soft stack unlimited
* hard stack unlimited
EOF
fi
echo
echo "-------------------1.6remove IPC"
grep "^RemoveIPC=no" /etc/systemd/logind.conf > /dev/null 2>&1
if [ $? -eq 1 ];then
echo "RemoveIPC=no" >> /etc/systemd/logind.conf
fi
systemctl restart systemd-logind.service
echo
echo "-------------------2.开始安装 PG"
echo
echo "-------------------2.1 安装 PG 依赖包"
${YUM} groupinstall -y "Development tools" > /dev/null 2>&1
${YUM} install -y bison flex readline-devel zlib-devel > /dev/null 2>&1
echo
echo "-------------------2.2 解压 PG 安装包"
${TAR} -xvf ${PG_INSTALL_FILE} -C /home/ > /dev/null 2>&1
echo
echo "-------------------2.3 修改解压包属组与权限"
${CHOWN} -R root:root ${PG_MEDIA_PATH} > /dev/null 2>&1
${CHMOD} -R 755 ${PG_MEDIA_PATH} > /dev/null 2>&1
echo
echo "-------------------2.4 配置 PG 安装包"
cd ${PG_MEDIA_PATH} > /dev/null 2>&1
./configure --prefix=${PG_INSTALL_PATH} --with-pgport=${PG_PORT} > /dev/null
2>&1
文档被以下合辑收录
相关文档
评论