在Ubuntu中安裝Postgresql資料庫的步驟詳解,ubuntupostgresql

來源:互聯網
上載者:User

在Ubuntu中安裝Postgresql資料庫的步驟詳解,ubuntupostgresql

介紹

眾所周知PostgreSQL 是自由的對象-關係型資料庫伺服器(資料庫管理系統),在ubuntu下安裝Postgresql是一件非常容易的事情,下面話不多說了,來跟著小編來一起看看詳細的介紹吧。

安裝方法如下:

1、安裝Postgresql的伺服器以及用戶端:

sudo apt-get install postgresql postgresql-client

2、通常情況下,安裝完成以後Postgresql已經一定啟動了,下面是一些常見的操作指令:

# 查看狀態sudo /etc/init.d/postgresql status# 啟動sudo /etc/init.d/postgresql start# 停止sudo /etc/init.d/postgresql stop# 重啟sudo /etc/init.d/postgresql restart

3、建立一個新的資料庫使用者root,並制定為超級使用者:

sudo -u postgres createuser --superuser root

4、設定root使用者的密碼:

sudo -u postgres psql\password root\q

5、建立一個資料庫 mydb:

sudo -u postgres createdb -O root test

6、為資料庫改名:

alter database mydb rename to mynewdb;

7、登入資料庫:

psql -U root -d test -h 127.0.0.1 -p 5432

-U 指定使用者,-d 指定資料庫,-h 指定伺服器,-p 指定連接埠。

8、常用控制台命令:

  • \h:查看SQL命令的解釋,比如\h select。
  • \?:查看psql命令列表。
  • \l:列出所有資料庫。
  • \c [database_name]:串連其他資料庫。
  • \d:列出當前資料庫的所有表格。
  • \d [table_name]:列出某一張表格的結構。
  • \du:列出所有使用者。
  • \e:開啟文字編輯器。
  • \conninfo:列出當前資料庫和串連的資訊。

9、資料庫操作:

資料庫操作為普通的 SQL,不過有 PostgreSQL 自己的文法,詳細見文檔說明。

建立表:

create table users ( id serial primary key, username varchar(20), password varchar(20));

插入資料:

insert into users(username, password) values('admin', 'admin');

查詢資料

select * from users;

10、安裝圖形介面用戶端PgAdmin,有了這貨 誰還用sql建表,畢竟時間就是生命:

sudo apt-get install pgadmin3

註:本文有部分內容來源於網上資料,如有侵權請告知。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的協助,如果有疑問大家可以留言交流,謝謝大家對幫客之家的支援。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.