Skip to content

SealedTunnel Troubleshooting

Occasionally, the STLink service may need to be restarted.

Windows

After the STLink is installed, you will have a service listed for xiid-stlink (the exact service name may vary depending on your STLink version).

You can open Task Manager (CTRL+SHIFT+ESC) and click the Services tab to view the STLink service.

You can right-click the STLink service to start, stop, or restart it.

macOS and Linux

To start the STLink service, run the following command:

bash
sudo launchctl load /Library/LaunchDaemons/com.xiid.xiid-stlink.plist
bash
sudo systemctl start xiid-stlink.service

To stop the STLink service, run the following command:

bash
sudo launchctl unload /Library/LaunchDaemons/com.xiid.xiid-stlink.plist
bash
sudo systemctl stop xiid-stlink.service

To view the status of the STLink service, run the following command:

bash
sudo launchctl print system/com.xiid.xiid-stlink
bash
sudo systemctl status xiid-stlink.service