Skip To Content

Configure ArcGIS Notebook Server directories

ArcGIS Notebook Server stores the file-based configurations and content needed for its operations in server directories. These directories can be added during the installation and configuration of ArcGIS Notebook Server, or later using ArcGIS Notebook Server Manager.

There are four types of directories, each of which plays a specific role in server operations: the workspace directory, the data directory, the output directory, and the system directory. The workspace and data directories are described below; the output and system directories are for purposes internal to ArcGIS Notebook Server.

Workspace directory

The workspace directory allows notebook authors to store and read the files used in their notebooks. Each notebook author in the ArcGIS Enterprise portal has a unique folder within the workspace directory. A user's unique folder is mounted in each of their ArcGIS Notebooks, so the notebook can read and write to the workspace directory. A notebook can only read and write information in its user's respective workspace directory folder; that folder cannot be accessed from other users' notebooks.

By default, users' private workspace directories are created in the /directories/arcgisworkspace/<userid> folders, with permissions set as -rwxrwxrwx. That permission level is necessary because by default, the Linux user account running inside the container will have a different UID and GID (group ID) than your OS user account running the ArcGIS Notebook Server daemon.

If you do not want to use the open permission model for security reasons, you can change the model using a system property named applyDefaultUserWorkspacePermissions. When this property is set to true, workspace directories will be created using your system's default setting, such as -rwx------, rather than the open -rwxrwxrwx setting.

To use this feature, the OS user running the ArcGIS Notebook Server daemon must have a UID of 1050 and a GID of 100 (to match the UID and the GID of the container user).

  1. Sign in to the Administrator Directory. The URL is formatted https://notebookserver.domain.com:11443/arcgis/admin.
  2. Browse to System > Properties and click Edit.
  3. Add the following JSON string to the properties box and save your edit:

    {
       "applyDefaultUserWorkspacePermissions":"true"
    }

Data directory

Data is essential to ArcGIS Notebooks. When authoring notebooks, users can add data layers from items in the ArcGIS Enterprise portal, from external GIS servers, or from local file directories.

A local directory containing data can be made available to notebooks as a file path by being registered with their ArcGIS Notebook Server site. Multiple data directories can be registered with a server site. Each registered data directory is made available for use by every notebook running in that site.

Notebooks that use raster analytics workflows have a particular use for data directories. You can register a file-based raster store as a data directory, making the output of raster analytics tools immediately available in notebooks.

Considerations for data directories

For notebooks to have access to a registered data directory, set 755-mode permissions for the directory.

All notebook authors in your organization can add data from all registered data directories to their notebooks. It is not possible to limit data directories to certain users or groups in the portal.

In deep learning workflows that involve the generation of image chips to train a model, the chips are hosted in a file-based raster store. When performing such a workflow, register the raster store with ArcGIS Notebook Server as a data directory to make the image chips available to your notebooks.

Data in a registered data directory is not part of the ArcGIS Enterprise portal. Accordingly, when a notebook is shared, ensure that all users who will view the shared notebook have access to any registered data directory the notebook references.

Register a new data directory

You can register a data directory in ArcGIS Notebook Server Manager to make a local directory available to the server site.

  1. Sign in to your ArcGIS Enterprise portal as an administrator and open ArcGIS Notebook Server Manager.
  2. Open the Settings page, and click Directories.
  3. Click Register Data Directory to open the registration dialog.
  4. Provide the name of the directory, and its full path on your machine.
  5. Indicate that the directory will function as a DATA directory.
  6. Click Save to confirm.

You cannot edit or update the name or path for a directory registered with ArcGIS Notebook Server. To make changes, you must unregister the existing directory and then register it again.

Specify a new location for a server directory

You can edit an existing directory in Manager to change its location starting at 10.8. Use this method when expanding to a multiple-machine site to place your directories on shared file paths.

  1. Sign in to your ArcGIS Enterprise portal as an administrator and open ArcGIS Notebook Server Manager.
  2. Open the Settings page, and click Directories.
  3. Choose the directory you want to modify, and click the Edit icon.
  4. Replace the existing Directory Path value with the new path of the directory. Click Save to confirm.

    After the site restarts, it will use the new path to access the directory.

  5. Copy and paste the contents of the existing directory to its new location.

Repeat these steps for each directory you want to update.

Note:

If the arcgisworkspace directory location is updated, you must rerun the installation utility to extract sample data to the new workspace directory location.