设为首页 收藏本站
查看: 1422|回复: 0

[经验分享] Postgresql安装

[复制链接]

尚未签到

发表于 2016-11-19 06:14:32 | 显示全部楼层 |阅读模式
  
  1.Postgresql简介
  2. Postgresql源码编译
<1>. Postgresql简介
  Postgresql是一款object-relational DBMS,提供了如下的feature:
  复杂查询complex queries
  外键foreign key
  触发器trigger
  视图views
  支持事务transactional integrity
  并发控制multiversion concurrency control
  另外值得一提的是Postgresql数据库提供了强大的拓展功能,能够支持用户对其进行拓展。更为重要的是Postgresql是open soure,授权如下:PostgreSQL can be used, modified, and distributed by anyone freeof charge for any purpose, be it private, commercial, or academic.
<2>.Postgresql源代码编译
  2.1 下载Postgresql源代码
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ wget ftp://ftp2.cn.postgresql.org/postgresql/source/v9.0.3/postgresql-9.0.3.tar.bz2
2.2 解压该文件
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ tar xjvf postgresql-9.0.3.tar.bz2
2.3 进入解压玩的目录
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ cd postgresql-9.0.3/
2.4 查看INSTALL
  INSTALL文件中Short Version部分解释了如何安装postgresql的命令,Requirements部分描述了安装postgresql所依赖的lib,比较长,先configure试一下,如果出现error,那么需要检查是否满足了Requirements的要求。
2.5 执行INSTALL文件中Short Version的命令,开始编译安装postgrepsql数据库。
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ ./configure
在我的环境下执行configure命令时,出现如下错误:
checking for main in -lm... yes
checking for library containing setproctitle... no
checking for library containing dlopen... -ldl
checking for library containing socket... none required
checking for library containing shl_load... no
checking for library containing getopt_long... none required
checking for library containing crypt... -lcrypt
checking for library containing fdatasync... none required
checking for library containing gethostbyname_r... none required
checking for library containing shmget... none required
checking for -lreadline... no
checking for -ledit... no
configure: error: readline library not found
If you have readline already installed, see config.log for details on the
failure. It is possible the compiler isnt looking in the proper directory.

  Use --without-readline to disable readline support.
  显然是postgresql安装所需的依赖项没有满足,安装readline包:
  sudo apt-get install libreadline5-dev
sudo apt-get install zlib1g-dev
  安装readline包之后,重新configure,成功。
  2.6 make
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ make
2.7 make install
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ make install
  2.8 添加用户postgres
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ sudo adduser postgres
2.9 创建数据库文件存储文件夹
  xuqiang@ubuntu:~/postgresql/postgresql-9.0.3$ sudo mkdir /usr/local/pgsql/data
2.10 改变先前创建的data目录的文件夹的权限
  qiang@ubuntu:~/postgresql/postgresql-9.0.3$ sudo chown postgres /usr/local/pgsql/data
  2.11 切换用户
  su - postgres
  2.12 绑定数据库文件存储目录
  postgres:~/postgresql/postgresql-9.0.3$ sudo /usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
  2.13 启动数据库
postgres:~/postgresql/postgresql-9.0.3$ sudo /usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data >logfile 2>&1 &
[1] 18635

2.14 创建数据库test
  postgres@ubuntu:~$ /usr/local/pgsql/bin/createdb test
  2.15 连接到test数据库
postgres@ubuntu:~$ /usr/local/pgsql/bin/psql test
psql (9.0.3)
Type "help" for help.
test=#


  2.16 创建表table1
  test=# create table table1 (
test(# id integer
test(# );
CREATE TABLE
test=#

2.17 向table1表中插入一条记录
  test=# insert into table1 values(1);
INSERT 0 1

  2.18 查询刚刚插入的记录
  test=# select * from table1;
id
----
1
(1 row)

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-302244-1-1.html 上篇帖子: PostgreSQL 下篇帖子: PostgreSQL相关
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表