---
title: Uninstallation
description: Follow these steps to remove software installed from the cross-platform .zip:
component: pingds
version: 8.1
page_id: pingds:install-guide:uninstall
canonical_url: https://docs.pingidentity.com/pingds/8.1/install-guide/uninstall.html
revdate: 2025-10-22T14:42:39Z
keywords: ["Install", "LDAP"]
section_ids:
  uninstall-cli: Uninstall .zip
  uninstall-deb: Uninstall the Debian package
  uninstall-rpm: Uninstall the RPM package
  uninstall-msi: Uninstall the Windows MSI
  gui: GUI
  powershell: PowerShell
---

# Uninstallation

## Uninstall .zip

Follow these steps to remove software installed from the cross-platform .zip:

1. Log in as the user who installed and runs the server.

2. Stop the server:

   ```console
   $ /path/to/opendj/bin/stop-ds --quiet
   ```

3. Delete the files manually:

   ```console
   $ rm -rf /path/to/opendj
   ```

## Uninstall the Debian package

When you uninstall the Debian package from the command-line, the server is stopped if it is running:

1. Purge the package from your system:

   ```console
   $ sudo dpkg --purge opendj
   ```

2. Remove any remaining server configuration files and directory data:

   ```console
   $ sudo rm -rf /opt/opendj
   ```

## Uninstall the RPM package

When you uninstall the RPM package from the command-line, the server is stopped if it is running:

1. Remove the package from your system:

   ```none
   root# rpm -e opendj
   ```

2. Remove the server configuration files and any directory data:

   ```console
   $ sudo rm -rf /opt/opendj
   ```

## Uninstall the Windows MSI

When you uninstall the files installed from the Windows installer package, only the installed files are removed.

### GUI

1. Open Control Panel as Windows Administrator.

2. Browse to the page to uninstall a program.

3. Find PingDS in the list and uninstall it.

4. Manually remove the server configuration files and any directory data.

### PowerShell

1. Open PowerShell as Windows Administrator.

2. Use the `msiexec` command.

   The following command quietly removes installed files:

   ```powershell
   msiexec /x DS-8.1.0.msi /q
   ```

3. Manually remove the server configuration files and any directory data.
