mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-12-19 08:09:24 +00:00
22 lines
685 B
Text
22 lines
685 B
Text
---
|
|
title: Uninstall CKAN
|
|
description: How to uninstall CKAN after having installed with ckan-devstaller
|
|
---
|
|
|
|
You may want to uninstall CKAN and related files after having ran ckan-devstaller. This can be useful if you want to re-run ckan-devstaller with a different configuration or are developing ckan-devstaller.
|
|
|
|
The uninstallation process can be done by running:
|
|
|
|
```bash
|
|
./ckan-devstaller uninstall
|
|
```
|
|
|
|
The following script will be ran to uninstall CKAN and files related to ckan-devstaller:
|
|
|
|
```bash
|
|
sudo rm -rf /usr/lib/ckan
|
|
sudo rm -rf /etc/ckan
|
|
cd ~/
|
|
rm -rf qsv*
|
|
rm -rf README ckan-compose ahoy dpp_default_config.ini get-docker.sh permissions.sql
|
|
```
|