菜鸟玩postgresql(1)--ubuntu系统下安装postgresql

这些都是以前搜集的一些文档。。简单整理下,现在拿出来大家共享……
 
Ubuntu 下安装 Postgresql 8.3 时间 :2009-09-18 09:34:15 来源 : 网络 作者 : 未知 点击 :59
Ubuntu 下安装 Postgresql pgAdmin3
Ubuntu 下安装 Postgresql pgAdmin3
 
sudo apt-get install postgresql-8.3 postgresql-client-8.3 postgresql-contrib-8.3
sudo apt-get install pgadmin3
以上指令安装客户端和服务端,一些额外的工具、 pgAdmin3 都可以工作在数据库下工作。
 
配置 Postgresql
 
现在我们需要重置“ postgres ”用户的密码。
 
sudo su postgres -c psql template1
template1=# ALTER USER postgres WITH PASSWORD ‘jaypei’;
template1=# \q
 
这样就修改了数据库中的密码,现在我们也需要在 unix 用户“ postgres ”这么作。
 
sudo passwd -d postgres
sudo su postgres -c passwd
 
然后输入跟之前一样的密码。
 
现在,我们就可以在数据库服务器上使用 psql 或者 pgAdmin 操作数据库了。
 
但是若想在 pgAdmin 中能够更好的记录日志和监视的华,在启动 pgAdmin 前需要建立 PostgreSQL admin pack 。打开命令行。
 
首先,我们需要编辑 postgresql.conf
 
sudo gedit /etc/postgresql/8.3/main/postgresql.conf
现在,我们需要修改“连接和权限”两行。
 
改变行:
#listen_addresses = ‘localhost’
修改为:
listen_addresses = ‘*’
和行:
#password_encryption = on
修改为:
password_encryption = on
 
保存并关闭 gedit
 
最后一步,我们必须设置谁才可以操作数据服务器,这一切都是在 pg_hba.conf 中完成的。
 
sudo gedit /etc/postgresql/8.3/main/pg_hba.conf
把以下内容复制到 pg_hba.conf 底部:
 
# DO NOT DISABLE!
# If you change this first entry you will need to make sure that the
# database
# super user can access the database using some other method.
# Noninteractive
# access to all databases is required during automatic maintenance
# (autovacuum, daily cronjob, replication, and similar tasks).
#
# Database administrative login by UNIX sockets
local all postgres ident sameuser
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# “local” is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
# Connections for all PCs on the subnet
#
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD
host all all [ip address] [subnet mask] md5
 
在最后一行中,添加你的子网掩码 ( 255.255.255.0) 和机器 IP 地址 ( 138.250.192.115). 如果要使用一个 IP 地址范围,只需要把最后一个数字用 0 替换,那么所有这个网段的 IP 都可以使用了。
 
重启服务器即可。
 
sudo /etc/init.d/postgresql-8.3 restart
现在可以在 Ubuntu 下使用 PostgreSQL 了。
 
使用命令行创建数据库
 
sudo -u postgres createuser -D -A -P mynewuser
sudo -u postgres createdb -O mynewuser mydatabase
 
 
本篇文章来源于:开发学院 http://edu.codepub.com   原文链接: http://edu.codepub.com/2009/0918/15523.php
 

你可能感兴趣的:(数据库,ubuntu,职场,PostgreSQL,休闲)