Skip to main content

ジオメトリー サービスの再作成

ジオメトリー サービスを ArcGIS Server サイトの Utilities フォルダーから別のフォルダーに移動するには、ArcGIS Server Administrator Directory を使用して、サービスを一度削除してから目的のフォルダーに再作成する必要があります。

ジオメトリー サービスを再作成するには、次の手順を実行します:

  1. Web ブラウザーで Administrator Directory を開きます。 URL の形式は http://gisserver.example.com:6080/arcgis/admin で、ここにログインします。

  2. Administrator Directory で、services をクリックします。

  3. フォルダー リストで、ジオメトリー サービスを含むフォルダーを選択します。 適切なフォルダーが表示されない場合は、createFolder を選択して作成できます。

  4. createService をクリックします。

  5. 操作 - createService ページで、次の JSON (JavaScript Object Notation) をサービス プロパティ テキスト ボックスに貼り付けます:

    {
     "serviceName": "Geometry",
     "type": "GeometryServer",
     "description": "The Geometry service is used by application developers to assist with geometric operations such as projecting, generalizing, and intersecting geometry.",
     "capabilities": "null",
     "minInstancesPerNode": 1,
     "maxInstancesPerNode": 2,
     "instancesPerContainer": 1,
     "maxWaitTime": 60,
     "maxStartupTime": 300,
     "maxIdleTime": 1800,
     "maxUsageTime": 600,
     "loadBalancing": "ROUND_ROBIN",
     "isolationLevel": "HIGH",
     "configuredState": "STOPPED",
     "recycleInterval": 24,
     "recycleStartTime": "00:00",
     "keepAliveInterval": -1,
     "private": false,
     "isDefault": false,
     "maxUploadFileSize": -1,
     "allowedUploadFileTypes": "",
     "properties": {},
     "extensions": [],
     "datasets": []
    }   
    
    注意:

    serviceName の値は変更しないでください。 ジオメトリー サービスの名前が Geometry 以外の場合、クライアントはそのサービスを利用できなくなります。

    1. 作成 をクリックします。

    ジオメトリー サービスが作成され、サービス リストに表示されます。

    1. 必要に応じて、Geometry をクリックし、サービス - Geometry (GeometryServer) ページの start をクリックしてジオメトリー サービスを開始します。