
postgresql
liming495
架构师
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu 12.04下PostgreSQL-9.1安装与配置详解(在线安装)
第一步:在Ubuntu下安装Postgresql 1.使用 apt-get install 安装 root@server2-virtual-machine:~# apt-get install -y postgresql-9.1 postgresql-client-9.1 postgresql-contrib-9.1 postgresql-server-de...原创 2013-11-25 18:45:01 · 127 阅读 · 0 评论 -
CentOS环境下安装postgresql9.3
1 exclude=postgresql* 2 yum localinstall http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm 3 yum list postgres* 4 yum install postgresql93-server 5 cd /va...原创 2014-07-24 10:13:05 · 251 阅读 · 0 评论 -
postgresql 一些常用命令
postgresql 一些常用命令 pg_dump dbname | gzip > filename.gz 用下面命令恢复: createdb dbname gunzip -c filename.gz | psql dbname save_data.sh #!/bin/bash export PGPASSWORD='xxx' psql='/us...原创 2015-07-07 09:55:56 · 344 阅读 · 0 评论