美文网首页gis
arcgis server 10.6 for linux 安装步

arcgis server 10.6 for linux 安装步

作者: 不玩了啊 | 来源:发表于2020-03-24 08:47 被阅读0次

arcgis server 10.6 for linux 安装步骤

groupadd arcgis

useradd -g arcgis arcgis

passwd arcgis 输入arcgisserver

mount /dev/cdrom /mnt或解压安装包

su arcgis

cd ArcGISServer

./Setup

su root

vi /etc/security/limits.conf    add this below:

arcgis soft nofile 65535

        arcgis hard nofile 65535

        arcgis soft nproc 25059

        arcgis hard nproc 25059

设置display vlaue

su root

mkdir -p arcgis /app/arcgis/

chgrp -R arcgis /app/arcgis/

chown -R arcgis /app/arcgis/

chmod -R 777 /app/arcgis/

su arcgis

./Setup

/app/arcgis/arcgis106.ecp

开放端口 6080 和 6443 才能在外网访问

/sbin/iptables --insert INPUT -p tcp --dport 6080 -j ACCEPT

/sbin/iptables --insert INPUT -p tcp --dport 6443 -j ACCEPT

service iptables save

service iptables restart

netstat -lntp|grep 6080  netstat -lntp|grep 6443

服务启动和关闭

// 进入安装目录

$ cd /home/ags/arcgis/server

cd /app/arcgis/arcgis/server

/*

这个目录下有很多文件,其中

startserver.sh

stopserver.sh

分别用来启动和关闭服务

*/

http://10.40.101.6:6080/arcgis/manager

授权时现根据给的密钥生成离线授权文件,然后发给esri等待注册 .\authorizeSoftware -e  path  -o outpath/authorize.txt

相关文章

网友评论

    本文标题:arcgis server 10.6 for linux 安装步

    本文链接:https://www.haomeiwen.com/subject/pyvnyhtx.html