How do you correctly disable data uploading when publishing a Map Service?

1197
9
01-31-2013 12:01 PM
bradeckrose
New Contributor
If found this in the help file:

To disable data from being copied to the server, follow the instuctions below.

Steps:
1. Open the Administrator Directory and log in with a user that has administrative permissions to your site. The Administrator Directory is typically available at http://<server name>:6080/arcgis/admin.
2.Click data > config > update.
3.On the Update Datastore Configuration page, enter the following string into the Datastore Configuration Properties dialog box:

{"blockDataCopy": true}

4.Click Update.


HOWEVER--

There is no config/update path under arcgis/admin/data--or anywhere in the admin pages that I can find.    SO there is no "update" option, and no Datastore Configuration Properties dialog box to be found.  Hence nowhere to put {"blockDataCopy":true}

What file does this get stored in on the server and can I just notepad it in order to get past this trainwreck of a week?

Brad
Tags (2)
0 Kudos
9 Replies
JonathanQuinn
Esri Notable Contributor
What do you see when you get to http://localhost:6080/arcgis/admin/data/config?  Can you take a screenshot?  What if you just copy and paste http://localhost:6080/arcgis/admin/data/config/update in a browser?  It should prompt for a sign in, and once you do that, it should take you to the spot where you can add that tag.
0 Kudos
bradeckrose
New Contributor
The attached screen is all I see.
0 Kudos
JonathanQuinn
Esri Notable Contributor
And if you copy and paste the link I provided, does it take you anywhere?  Can you try to clear your browser history or use a different browser?
0 Kudos
bradeckrose
New Contributor
And if you copy and paste the link I provided, does it take you anywhere?  Can you try to clear your browser history or use a different browser?


The above image was the result of using your URL.    The exception is that I'm remote from the server.  I will obtain rights to login directly to our server and try the "localhost" instead of a using proper domain and see if that makes any difference.

Can you capture a screenshot of what the actual dialog is?
0 Kudos
bradeckrose
New Contributor
This is the view-source for the page:

 
 
<html>
  <head>
    <title>Data</title>
  </head>  
  <body>
    
 
 
 
 
 
 
 
<html>
  <head>
    <link href="https://community.esri.com/arcgis/admin/www/css/admin.css" rel="stylesheet" type="text/css"/>
    <script type="text/javascript" src="/arcgis/admin/www/js/BigInt.js" charset="utf-8"></script>
    <script type="text/javascript" src="/arcgis/admin/www/js/Barrett.js" charset="utf-8"></script>
    <script type="text/javascript" src="/arcgis/admin/www/js/RSA.js" charset="utf-8"></script>
    <script type="text/javascript" src="/arcgis/admin/www/js/admin.js" charset="utf-8"></script>
  </head>
 
  <table width="100%" id="userInfoTable">
    <tbody>
      <tr>
        <td id="titleCell">ArcGIS Server Administrator Directory</td>
        <td align="right" id="help">
        
           Logged in: 
           |
           <a href="https://community.esri.com/arcgis/admin/login?operation=signout">Signout</a>
        
        </td>      
      </tr>
    </tbody>
  </table>
  
  <table width="100%" id="navTable">
    <tbody>
      <tr>
        <td id="breadcrumbs">
          <a href="https://community.esri.com/arcgis/admin">Home</a>
                    
            &gt;
            <a href="https://community.esri.com/arcgis/admin/data">data</a>
                    
            &gt;
            <a href="https://community.esri.com/arcgis/admin/data/config">config</a>
                    
            &gt;
            <a href="https://community.esri.com/arcgis/admin/data/config/update">update</a>
          
        </td>        
        
        <td align="right" id="help">
          <a href="https://community.esri.com/arcgis/admin/www/api/admin-rest-api.html">Quick Reference</a>
          |
          <a href="https://community.esri.com/arcgis/admin/www/doc/index.html" target="blank">API Reference</a>
          </td>
      </tr>
    </tbody>
  </table>
   
    <h2>Data Space</h2>
    <div class="body">
      <table>
        <tbody>
          <tr>
            <td><b>Resources:</b></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/items">Root Items</a></td>
          </tr>
          <tr>
            <td><b>Supported Operations:</b></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/registerItem">Register Item</a></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/unregisterItem">Unregister Item</a></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/validateDataItem">Validate Item</a></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/validateAllDataItems">Validate All Items</a></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/findItems">Find Items</a></td>
            <td><a href="https://community.esri.com/arcgis/admin/data/computeTotalRefCount">Compute Total Ref Count</a></td>
          </tr>
        </tbody>
      </table>
    </div>    
  </body>
</html>
0 Kudos
JonathanQuinn
Esri Notable Contributor
Here's what the dialog looks like on my side:

[ATTACH=CONFIG]21337[/ATTACH]
0 Kudos
JeremyHolt
New Contributor
I ran into this as well and to see the /config option in the Admin API, you'll need SP1 installed.
0 Kudos
JeremyHolt
New Contributor
I should note that using the {blockDataCopy :  true} to prevent the copying of data seemed to work when publishing a new service, as it did not prompt to 'copy the data to server'; however, in the publishing I've found that the service will not start automatically and the super helpful 99999 error appears in the geoprocessing results window. You can start the service manually after it's published without issue.
0 Kudos
HelenYang
New Contributor II
I ran into this as well and to see the /config option in the Admin API, you'll need SP1 installed.


my server is installed using the directly downloaded 10.1 SP1 package. I encountered the same error as above. Is this really the sp1 issue?
0 Kudos