全部博文(186)
分类:
2012-11-13 15:15:35
原文地址:PostgreSQL安装、启动、停止 作者:txgc_wm
If we don't already have PostgreSQL installed, we must install it.
$ sudo apt-get install postgresql
This command installs the PostgreSQL server and various other packages.
If we install the PostgreSQL database from packages, it is automatically
added to the start up scripts of the operating system. If we are only learning
to work with the database, it is unnecessary to start the database each time we
boot the system. The above command removes any system startup links for
the PostgreSQL database.
We check if the PostgreSQL server is running. If not, we need
to start the server.
On Ubuntu Linux we can start the server with the service postgresql start
command.
We use the service postgresql stop command to stop the PostgreSQL server.