You can fully remove RStudio Package Manager and all its data from your server using the following steps:
- Stop the RStudio Package Manager service. (See Stopping and Starting for details)
-
Uninstall the RStudio Package Manager package from your system.
Ubuntu:
sudo apt-get purge rstudio-pm
Red Hat/CentOS:
sudo yum remove rstudio-pm
SUSE:
sudo zypper remove rstudio-pm
- Remove
/opt/rstudio-pm
if it still exists. - Remove logs from
/var/log/rstudio-pm*
- Purge the databases
- When using SQLite, remove the
SQLite.Dir
directory. This has a default location of/var/lib/rstudio-pm/db
. - When using PostgreSQL, drop the databases used by RStudio Package Manager. You may also wish to remove the PostgreSQL user associated with RStudio Package Manager.
- When using SQLite, remove the
- Remove the
Server.DataDir
directory. By default, this is/var/lib/rstudio-pm
. -
Remove configuration files from
/etc/rstudio-pm
if they still exist.
Comments