标签:文件 soft arc nofile install 操作 conf 切换 code
./Setup //执行安装 (运行安装脚本后会进行安装环境检测,会检查检查软件包和主机名,检测通过才可以开始安装。)
如果检查不通过,会提示和报错,并中断安装过程。
(1) 解决 hostname 问题
// 查看 hostname
$ hostname
// 果然不符合规则
// 修改hostname
$ hostnamectl set-hostname centos.arcgis
(2) 解决 limits 问题
// 编辑 limits.conf 文件
$ vim /etc/security/limits.conf
/* 追加
ags soft nofile 65535
ags hard nofile 65535
ags soft nproc 25059
ags hard nproc 25059
*/
// 根据提示:切换用户过去又切换回来,检查
/*
[root@VM_0_14_centos security]# su root
[root@VM_0_14_centos security]# su ags
[ags@VM_0_14_centos security]$ ulimit -Hn -Hu
open files (-n) 65535
max user processes (-u) 25059
[ags@VM_0_14_centos security]$ ulimit -Sn -Su
open files (-n) 65535
max user processes (-u) 25059
*/
(3) 安装 软件
yum install fontconfig
centos 6.8操作系统安装arcgis server 10.4-后续篇
标签:文件 soft arc nofile install 操作 conf 切换 code
原文地址:https://www.cnblogs.com/tiandi/p/11770446.html