ArcGIS Server 10.1 for Linux典型问题总结
关闭开启server服务:
[gis@localhost ArcGISServer]$ cd /home/gis/arcgis/server
[gis@localhost server]$ ./stopserver.sh
Attempting to stop ArcGIS Server...
[ OK ]
[gis@localhost server]$ ./startserver.sh
Attempting to start ArcGIS Server...
WARNING: The host name entry for this machine in your /etc/hosts file
does not match the IP address of this machine. This will cause ArcGIS
for Server to function improperly. Correct this entry and restart ArcGIS
for Server.
[ OK ]
以下内容来自http://blog.csdn.net/linghe301/article/details/8102933
1:我的ArcGIS Server10.1的manger用户忘记了,怎么获得相关信息?
回答:进入ArcGIS Server用户(操作系统),进入如下文件夹
[ags@redhat6 config-store]$ pwd
/home/ags/arcgis/server/usr/config-store
[ags@redhat6 config-store]$ ll
total 56
-rw-------. 1 ags ags 112 Jun 16 01:16 arcgis-logsettings.json
-rw-------. 1 ags ags 0 Jun 17 05:55 arcgis-logsettings.json.rlock
drwx------. 2 ags ags 4096 Jun 17 06:01 clusters
drwx------. 2 ags ags 4096 Jun 17 06:01 data
drwx------. 2 ags ags 4096 Jun 17 06:01 events
drwx------. 2 ags ags 4096 Jun 17 06:01 extns
drwx------. 2 ags ags 4096 Jun 17 06:01 locks
drwx------. 3 ags ags 4096 Jun 17 06:01 machines
drwx------. 6 ags ags 4096 Jun 17 06:01 security
drwx------. 2 ags ags 4096 Jun 17 06:01 serverdirs
drwx------. 5 ags ags 4096 Jun 17 06:01 services
drwx------. 3 ags ags 4096 Jun 17 06:01 system
drwx------. 2 ags ags 4096 Jun 17 06:01 uploads
-rw-------. 1 ags ags 72 Jun 16 01:14 version.json
drwx------. 2 ags ags 4096 Jun 17 06:01 web-adaptors
[ags@redhat6 config-store]$
[ags@redhat6 config-store]$ cd security/
[ags@redhat6 security]$ cd super/
[ags@redhat6 super]$ pwd
/home/ags/arcgis/server/usr/config-store/security/super
[ags@redhat6 super]$ ls
super.json super.json.bak super.json.rlock
从上面可以得到config-store文件夹里面有很多在manger里面设置的配置文件都是以json的格式保存的,比如cluster,machines,services等相关信息,那么我们需要知道的是manger用户,进入security/super文件夹,打开里面的super.json
[ags@redhat6 super]$ more super.json
{
"username": "arcgis",
"password": "KLJcC2/WMzjgep+vQFmitg==",
"disabled": false
}
从这个我可以看出我的用户名是arcgis,至于密码是经过加密的.
也可以使用以下方法来获得
[ags@redhat6 passwordreset]$ pwd
/home/ags/arcgis/server/tools/passwordreset
[ags@redhat6 passwordreset]$ ls
passwordreset.sh
[ags@redhat6 passwordreset]$ ./passwordreset.sh
PasswordReset
This tool resets the primary site administrator's credentials for a Site.
Usage: PasswordReset [OPTION]
-p <newPassword>
Resets the password to new password
-l
Lists the name of the primary site administrator
[ags@redhat6 passwordreset]$ ./passwordreset.sh -l
Primary site administrator account: arcgis
这个主要是解决,知道相关用户,可能忘记密码了,来重置密码!
2:我怎么在Linux安装的ArcGIS Server10.1注册许可
回答:
[ags@redhat6 tools]$ pwd
/home/ags/arcgis/server/tools
[ags@redhat6 tools]$ ll
total 28
drwx------. 2 ags ags 4096 Apr 25 20:33 admin
-rwx------. 1 ags ags 4519 Apr 20 17:03 authorizeSoftware
drwx------. 2 ags ags 4096 Apr 26 12:18 passwordreset
-rwx------. 1 ags ags 636 Apr 20 17:05 python
-rwx------. 1 ags ags 919 Apr 20 17:05 serverinfo
-rwx------. 1 ags ags 3277 Apr 26 12:18 ssltool.sh
[ags@redhat6 tools]$
[ags@redhat6 tools]$ ./authorizeSoftware
在这个tools文件夹里面,还有一个python环境,所以如果需要简单的GP测试,可以使用这个工具来做简单测试
4:Linux的ArcGIS Server10.1默认安装的配置目录在哪里存储
回答:
[ags@redhat6 directories]$ pwd
/home/ags/arcgis/server/usr/directories
[ags@redhat6 directories]$ ll
total 16
drwx------. 3 ags ags 4096 Jun 16 01:14 arcgiscache
drwx------. 4 ags ags 4096 Jun 16 01:16 arcgisjobs
drwx------. 6 ags ags 4096 Jun 16 01:16 arcgisoutput
drwx------. 8 ags ags 4096 Jun 16 01:14 arcgissystem
5:Linux的ArcGIS Server10.1怎么获得服务发布的arcgisinput文件夹
回答:
[ags@redhat6 arcgisinput]$ pwd
/home/ags/arcgis/server/usr/directories/arcgissystem/arcgisinput
[ags@redhat6 arcgisinput]$ ll
total 16
drwx------. 3 ags ags 4096 Jun 17 06:59 MyMapService.MapServer
drwx------. 2 ags ags 4096 Jun 16 01:16 SampleWorldCities.MapServer
drwx------. 5 ags ags 4096 Jun 16 01:15 System
drwx------. 4 ags ags 4096 Jun 16 01:16 Utilities
从上面可以获得有相关的四个服务,进入某一个服务,查看相关信息,就知道我的数据是否是Copy还是注册成功了
[ags@redhat6 arcgisinput]$ cd MyMapService.MapServer/
[ags@redhat6 MyMapService.MapServer]$ ls
extracted MyMapService.sd
[ags@redhat6 MyMapService.MapServer]$ cd extracted/
[ags@redhat6 extracted]$ cd v101/
[ags@redhat6 v101]$ ls
arcsde_data.gdb MyMapService.msd MyMapService.mxd
[ags@redhat6 v101]$ ll
total 13856
drwx------. 2 ags ags 4096 Jun 17 06:59 arcsde_data.gdb
-rw-------. 1 ags ags 13956316 Oct 23 2012 MyMapService.msd
-rw-------. 1 ags ags 222208 Oct 23 2012 MyMapService.mxd
从上面可以获得,我本来是发布直连的ArcSDE数据源数据,但是最后还是看到copy到本地的.gdb,所以这个服务并没有注册.
6:Linux的ArcGISServer自动重启服务
- Configure ArcGIS for Server to be started with the operating system by following these instructions:
- Switch to root user.
- Copy <ArcGIS for Server installation directory>/framework/etc/scripts/arcgisserver shell script to the appropriate supported Linux distribution-based locations provided below:
- RHEL: /etc/rc.d/init.d/
- SUSE: /etc/init.d/
- Change directory to the applicable init.d folder and check the arcgisserver script to make sure that root has at least read and execute permissions.
- Edit the arcgisserver script as follows:
- Update the agshome variable to the ArcGIS for Server installation directory, for example, /home/username/arcgis/server.
- For RHEL only, add the line below just before # Description: ArcGIS Server Service:
# chkconfig: 35 99 01
- Save the edits to the arcgisserver script.
- Still as root user, run the following command to automatically create the links in /etc/rc*.d with the appropriate run levels:
- RHEL:
§ $ chkconfig --add arcgisserver
§ $ chkconfig arcgisserver on
- SUSE:
§ $ insserv arcgisserver
§ $ chkconfig arcgisserver on
- End the root user session.
- Reboot the operating system and verify that ArcGIS for Server restarts properly.
ArcGIS Server 10.1 for Linux典型问题总结的更多相关文章
- Arcgis Server 10.2默认服务端口号修改方法
本人安装Arcgis Server 10.2之后发布了一个地图服务,该服务默认使用的端口号是6080,本人使用的是教育网,使用教育网均能正常使用该服务,但是使用电信或者移动网络均不能正常访问该网站. ...
- arcgis server 10.2安装后,忘记Manager的用户名和密码
arcgis server 10.2安装完毕后,需要创建站点,创建站点时,填写管理站点的用户名和密码.自己不小心,创建完毕后,给忘记了用户名和密码.求助Esri,解决方法如下: (1)找到arcgis ...
- ArcGIS Server 10.2 实战(三)图层标注及图例中文显示乱码的解决
发布的图层中不可避免的使用到中文来标注,默认设置下,ArcGIS Server不支持中文的,中文标注显示成乱码,主要是编码的问题,需要把手动把编码改为UTF-8. ArcGIS Server 10.2 ...
- ArcGIS Server 10.2 实战(二)动态修改要素数据的地理处理服务
上一篇<ArcGIS Server 10.2 实战(一)Asp.net MVC与JSON数据妙用实现动态生成要素图层>介绍了如何用JSON转要素的地理处理服务,实现了动态创建点要素并加载到 ...
- ArcGIS Server 10.0 安装及使用完整攻略
引言 ArcGIS Server 10.0在使用和安装的过程中,需要进行比较全面的学习,才能正确使用.缺乏正确的指引,用户很容易在安装及使用中遇到问题.所以笔者在此总结Server 10.0的安装及使 ...
- ArcGIS Server 10 Java 版的Rest服务的部署方法
使用ArcGIS Server 10 Java版发布GIS服务,当使用ArcGIS Manager创建好服务后,然后打开“ArcGIS Services Directory”的链接时发现网页报出了找不 ...
- ArcGIS Server 10.1发布GP服务
ArcGIS Server 10.1发布GP服务 ArcGIS Server 10.1发布GP服务确实更简单了,只是刚使用不怎么习惯.ArcGIS Server 10.1发布GP服务需要先在ArcCa ...
- 分享ArcGIS Server 10.0修复安装心得
最近,捣腾了一阵子在xp系统上安装ArcGIS Server10.0(下方均简称server),解决了一些初学者可能面临的problem,给大家贴出来, 希望能够给初学者一些有益的帮助. 我的系统环境 ...
- ArcGIS Server 10.2 公布Oracle11g数据源的 Feature Service
安装好arcgis server 10.2及 Desktop 而且确保 arcgis server manager 能够正常启动执行载入服务 1.Oracle 配置 安装好Oracleserver端程 ...
随机推荐
- C#中快速释放内存,任务管理器可查证
先close() 再dispose() 之后=null 最后GC.Collect() 如: ms.Close();//关闭流,并释放与之相关的资源 ms.Dispose();//如果是流的话,默认只会 ...
- ECharts图表中级入门之formatter:夜谈关于ECharts图表内的数据格式化方法
来源于:http://www.ithao123.cn/content-3751220.html 格式化之所以存在,主要是因为我们想把一些不够人性化的内容通过某种处理让其变得人性化,便于用户更好地理解内 ...
- svn 的备份还原
备份脚本如下: #!/bin/bash ############################################################################### ...
- 【BZOJ 2157】旅游
再水一道模板题,明天就要出发去参加二轮省选了赶紧复习复习模板. 链剖模板题,可是写链剖太麻烦了,还是写lct吧. 但这个lct比较麻烦了,因为边权有正有负,要统计最大值和最小值,这样点权赋为什么值都会 ...
- oracle创建表之前判断表是否存在,如果存在则删除已有表
Mysql 创建表之前判断表是否存在,如果存在则删除已有表 DROP TABLE IF EXISTS sys_area; CREATE TABLE sys_area ( id int NOT NULL ...
- log4net在Asp.net Mvc中的应用配置与介绍
log4net在.NET中的地位就不多言语了,此篇文章着重配置.较少介绍使用.因为在网上你可以在网上搜到几十万的文章告诉你怎么用.安装的话也不废话了,很简单.Nuget里搜索一下"log4n ...
- Web前端性能优化教程03:添加Expires头
本文是Web前端性能优化系列文章中的第三篇,主要讲述添内容:加Expires头.完整教程可查看:Web前端性能优化 什么是Expires头? Expires存储的是一个用来控制缓存失效的日期.当浏览器 ...
- 【POJ 3177】Redundant Paths(边双连通分量)
求出每个边双连通分量缩点后的度,度为1的点即叶子节点.原图加上(leaf+1)/2条边即可变成双连通图. #include <cstdio> #include <cstring> ...
- WebApi支持命名空间重名问题
using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.Linq; ...
- [日常训练]training
Description 一条线上有栋楼,第栋楼有层,每层有1个价值为的物品. 可以花费1个单位时间完成以下3种移动: 1.在同一栋楼中向上或者向下走一层; 2.如果此刻在顶楼,可以通往1楼; 3.从当 ...