從 Ubuntu 伺服器中刪除額外的進程/服務

從 Ubuntu 伺服器中刪除額外的進程/服務

我剛剛在 Ubuntu Server 13.10 上安裝了 PostgreSQL 9.1 及其軟體包:「postgis 和 pgadmin」。

現在我想刪除伺服器上的任何其他進程/服務以提高其效能..最安全的方法是什麼?

答案1

安裝rcconf:

sudo apt-get install rcconf

然後以 root 權限運行它:

sudo rcconf

我通常做的是禁用 postgres 並在需要時手動啟動它(我僅用於我的資料庫管理課程,所以我不需要它一直運行)。

sudo service postgresql-9.1 start
sudo service postgresql-9.1 stop

相關內容