如何Debian/Ubuntu Linux安装PostgreSQL数据库服务器
时间:2020-01-09 10:41:40 来源:igfitidea点击:
问:如何在Ubuntu Linux下安装PostgreSQL服务器?
答:
PostgreSQL是一个开源软件对象关系数据库管理系统。
POSTGRES率先提出了许多对象关系概念,现在在某些商业数据库中可用。
传统的关系数据库管理系统(RDBMS)支持由命名关系的集合组成的数据模型,其中包含特定类型的属性。
在当前的商业系统中,可能的类型包括浮点数,整数,字符串,货币和日期。
安装PostgreSQL
在Debian或Ubuntu Linux下安装PostgreSQL的最佳方法是使用apt-get命令
# apt-get install postgresql
或者
$ sudo apt-get install postgresql
连接到PostgreSQL服务器
您可以以PostgreSQL超级用户身份登录,输入命令:
$ su - postgres
现在连接到名为template1的默认数据库:
$ psql template1
输出:
postgres@debian:~$ psql template1 Welcome to psql 7.4.16, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands \? for help on internal slash commands \g or terminate with semicolon to execute query \q to quit template1=#
执行\ l列出数据库
执行\ q退出