1. Support arrow-right
  2. How do I restart ItemPath?

How do I restart ItemPath?

Restart ItemPath (ItemPath Interface)

If you can access ItemPath, you can restart it through the Connection Status page. 

To restart ItemPath:

  1. Log in to your ItemPath instance.
  2. Select Status from the footer of ItemPath (beside Settings). 
  3. Select Restart ItemPath.
The connection status page on ItemPath, the main app consists of a display and a smaller side column to the right. An arrow indicates a button in the right column at the top of the page labelled Restart ItemPath.

Restart ItemPath (Docker Container)

You may need to restart ItemPath without being able to access ItemPath's status page. To restart ItemPath, you'll need access the command line or terminal for the server where it's running. This is typically the root folder on a Linux server.

Since ItemPath runs in a Docker container, so you can easily restart it using Docker Compose. 

Run the following command in your terminal:

docker-compose down && docker-compose up -d

Note: If using Docker Compose V2 (you can verify with the command docker compose version), you may need to use this command instead:

docker compose down && docker compose up -d

Both commands will stop ItemPath and all of its running containers, then start them up again in the background (-d flag). It will take a minute or two to start up again.

  • For ItemPath hosted in the cloud, you can confirm ItemPath is running by opening the ItemPath URL in a browser.
  • For ItemPath hosted on-premise, you can confirm ItemPath is running by visiting localhost in a browser, or by visiting the IP address of the host machine.

If you are having difficulties restarting Docker, see How do I restart Docker?