centos 安装arcgis server 10.1

1、创建新用户,不要在root下面直接安装

[root@localhost ~]# groupadd esri //创建esri组
[root@localhost ~]# useradd ags -g esri //创建ags用户,隶属于esri组
[root@localhost ~]# passwd ags // 设置密码,这里设置为ags

2、复制安装包到/home/ags/software/下

3、定位到软件目录安装

[ags@arcgisserver~]$ cd /home/ags/software/ArcGISServer  //定位到安装文件目录
[ags@arcgisserver ArcGISServer]$ ./Setup //执行安装  

(运行安装脚本后会进行安装环境检测,会检查检查软件包和主机名,检测通过才可以开始安装。)

4、打开浏览器,输入地址:http://ip:6080/arcgis/manager/,创建站点

5、设置服务开机自启动

chkconfig --add arcgisserver
chkconfig arcgisserver on

6、重启服务

启动服务:
service arcgisserver start
查看是否启动成功:

ps aux |grep arcgisserver
原文地址:https://www.cnblogs.com/tiandi/p/7966000.html