博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
postgresql安装
阅读量:6703 次
发布时间:2019-06-25

本文共 1897 字,大约阅读时间需要 6 分钟。

  hot3.png

  1. # yum install readline-devel 未安装readline-devel会出现readline library not found错误 # wget # tar jxvf postgresql-9.1.2.tar.bz2 -C ../software/ # ./configure --prefix=/home/xuhh/pgsql912  --with-perl --with-python # gmake # gmake install # mkdir /home/xuhh/pgsql912/data # adduser postgres # chown -R postgres.postgres /home/xuhh/pgsql912 # chown postgres.postgres /home/xuhh/pgsql912/data # su - postgres $ /home/xuhh/pgsql912/bin/initdb -D /home/xuhh/pgsql912/data  //初始化数据 $ /home/xuhh/pgsql912/bin/postgres -D /home/xuhh/pgsql912/data > /tmp/pg-logfile 2>&1 &  //启动数据库
  2. $ /home/xuhh/pgsql912/bin/createdb test  //创建数据库 $ /home/xuhh/pgsql912/bin/psql -d test //连接数据库 test=# CREATE TABLE  test (id serial, name varchar(32)); test=# insert into test values(1,'abc'); test=# insert into test values('2','bbb'); test=# \dp+   //查看表空间 Access privileges Schema |    Name     |   Type   | Access privileges | Column access privileges --------+-------------+----------+-------------------+-------------------------- public | test        | table    |                   | public | test_id_seq | sequence |                   | (2 rows) test=# \dt+   //查看表 List of relations Schema | Name | Type  |  Owner   |    Size    | Description --------+------+-------+----------+------------+------------- public | test | table | postgres | 8192 bytes | (1 row)
  3. test=# create tablespace xxoo location '/tmp/';    //创建表空间
  4. test=# select * from pg_tablespace;    //查看表空间 spcname   | spcowner | spclocation | spcacl | spcoptions ------------+----------+-------------+--------+------------ pg_default |       10 |             |        | pg_global  |       10 |             |        | xxoo       |       10 | /tmp/xxoo   |        | (3 rows)
  5. test=# alter tablespace xxoo rename to ttlsa;   //更改表空间名 ALTER TABLESPACE test=# select * from pg_tablespace; spcname   | spcowner | spclocation | spcacl | spcoptions ------------+----------+-------------+--------+------------ pg_default |       10 |             |        | pg_global  |       10 |             |        | ttlsa      |       10 | /tmp/xxoo   |        | (3 rows)

转载于:https://my.oschina.net/766/blog/211361

你可能感兴趣的文章
持续集成与持续部署宝典Part 2:创建持续集成流水线
查看>>
javascript高级程序设计学习之数值转换 |Number(),parseInt(),parseFloat()
查看>>
Angular属性型指令
查看>>
如何处理错误信息 Pricing procedure could not be determined
查看>>
【CentOS 7笔记11】,目录权限,所有者与所有组,隐藏权限#171022
查看>>
Mybatis 详解--- 一级缓存、二级缓存
查看>>
2013 ACM/ICPC Asia Regional Changsha Online - C
查看>>
ACM中java快速入门
查看>>
discuz x2.5插件开发傻瓜图文教程,用demo说话
查看>>
利用HTML中的XML数据岛记录浏览
查看>>
unicode字符、python乱码问题
查看>>
cobbler get-loaders 通过代理下载
查看>>
通过脚本测试ubuntu的源
查看>>
一些不错的网站
查看>>
safari的一些问题
查看>>
面试官问我:平常如何对你的 Java 程序进行调优?
查看>>
Java中对象和引用的理解
查看>>
如何有效抓取SQL Server的BLOCKING信息
查看>>
bash中(),{},(()),[],[[]]的区别
查看>>
Oracle PL/SQL匿名块(三)
查看>>