Citrix Virtual Apps and Desktops

Uninstall Log Server

1. Uninstall Log Server in Linux

Run the below commands in terminal:

docker rm -f logserver
docker rmi logserver

# List containers and images to make sure

docker ps -a
docker images

# Delete Log Server config and data files if not needed any more, change $HOME/LogServer to real installed path if not installed with the default one

rm -r $HOME/LogServer
<!--NeedCopy-->

2. Uninstall Log Server in Windows

Run the below commands in powershell:

docker rm -f logserver
docker rmi logserver

# List containers and images to make sure

docker ps -a
docker images

# Delete Log Server config and data files if not needed any more, change ~/LogServer to real installed path if not installed with the default one

Remove-Item -Recurse -Force ~/LogServer
<!--NeedCopy-->
Uninstall Log Server