从 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

相关内容