加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

PostgreSQL on Ubuntu Linux

发布时间:2020-12-13 18:15:06 所属栏目:百科 来源:网络整理
导读:PostgreSQL is a powerful object-relational database management system,provided under a flexible BSD-style license. PostgreSQL contains many advanced features,is very fast and standards compliant. It supports a large part of the SQL standar

PostgreSQL is a powerful object-relational database management system,provided under a flexible BSD-style license. PostgreSQL contains many advanced features,is very fast and standards compliant. It supports a large part of the SQL standard and is designed to be extensible by users in many aspects.

Some of the features are: ACID transactions,foreign keys,views,sequences,sub queries,triggers,user-defined types and functions,outer joins,multi version concurrency control. Graphical user interfaces and bindings for many programming languages are available as well.

This is a simple walk-through to install the PostgreSQL database server and the PgAdmin administration application onUbuntuLinux.

Installing The Database Server

To install PostgreSQL 8.1 you may use the command line and type:

sudo apt-get install postgresql-8.1

GUI for PostgreSQL

To install pgAdmin III,a handy GUI for PostgreSQL,you may use the command line and type:

sudo apt-get install pgadmin3

Basic Server Setup

Set Password

To start off,we need to change the PostgreSQL postgres user password,we will not be able to access the server otherwise. As the “postgres” Linux user,we will execute the psql command,in a terminal type:

sudo -u postgres psql template1

Then at the new prompt,type these two commands,replacingsecretwith the new password (up to you)

ALTER USER postgres WITH PASSWORD 'secret';
 /q

Create Database

To create the first database,which we will call “mydatabase”,simply type :

sudo -u postgres createdb mydatabase

Using pgAdmin III GUI

To get an idea of what PostgreSQL can do,you may start by firing up a graphical client. In a terminal type:

pgadmin3

To get a menu entry for pgAdmin do the following…

sudo gedit /usr/share/applications/pgadmin.desktop
[Desktop Entry] Comment= PostgreSQL Administrator III
Name=pgAdmin III
Encoding=UTF-8
Exec=pgadmin3
Terminal=false
Comment[en_GB]=PostgreSQL Administrator III
Icon=/usr/share/pixmaps/pgadmin3.xpm
Type=Application
Categories=GNOME;Application;Database;System;
Name[en_GB]=pgAdmin III

Then save the file and exit gedit. You should find the launcher in the System Tools section of the Applications menu.

Managing The Server

Change Authentication Method

We need to edit filepg_hba.confto change authentification method for accessing PostgreSQL database.

sudo cp /etc/postgresql/pg_hba.conf /etc/postgresql/pg_hba.confbak
sudo gedit /etc/postgresql/pg_hba.conf

For example,if you wantpostgresto manage its own users (not linked with system users),you will add the following line:

# TYPE  DATABASE    USER        IP-ADDRESS        IP-MASK           METHOD
host    all         all         10.0.0.0       255.255.255.0    password

Which means that on your local network (10.0.0.0/24 – replace with your own local network !),postgres users can connect through the network to the database providing a classical couple user / password.

Create a Database

To create a database with a user that have full rights on the database,use the following command:

sudo -u postgres createuser -D -A -P mynewuser
sudo -u postgres createdb -O mynewuser mydatabase

That’s it,now all you have to do is restart the server and all should be working!

sudo /etc/init.d/postgresql-8.1 restart

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读