sudo vim /etc/postgresql/9.1/main/pg_hba.conf
添加
host all all 0.0.0.0/0 trust
sudo vim /etc/postgresql/9.1/main/postgresql.conf
Change
#listen_addresses = 'localhost'
to
listen_addresses = '*'
# sudo -s -u postgres
$ psql
postgres# CREATE USER xxxx1 WITH PASSWORD 'xxxx';
postgres# CREATE DATABASE xxxx2;
postgres# GRANT ALL PRIVILEGES ON DATABASE xxxx2 to xxxx1;
createuser 是 SQL 命令 CREATE USER的封装。
命令:createuser [-a] [-A] [-d] [-D] [-e] [-P] [-h 主机名] [-p port] 用户名
参数说明:
[-a]:允许创建其他用户,相当于创建一个超级用户;
[-A]:不允许此用户创建其他用户;
[-d]:允许此用户创建数据库;
[-D]:不允许此用户创建数据库;
[-e]:将执行过程显示到Shell上;
[-P]:创建用户时,同时设置密码;
[-h 主机名]:为某个主机上的Postgres创建用户;
[-p port]:与-h参数一同使用,指定主机的端口。
$ dropuser --help
dropuser removes a PostgreSQL role.
使用方法:
dropuser [OPTION]... [ROLENAME]
选项:
-e, --echo 显示发送到服务端的命令
-i, --interactive 删除任何东西之前给予提示
-h, --host=HOSTNAM 数据库服务器所在机器的主机名或套接字目录
-p, --port=PORT 数据库服务器端口号
-U, --username=USERNAME 联接用户 (不是要删除的用户名)
-W, --password force password prompt
--help 显示此帮助信息, 然后退出
--version 输出版本信息, 然后退出
fedora22用rpm包安装配置postgresql数据库:http://www.linuxdiyf.com/linux/13212.html
Fedora21升级到Fedora22后,PostgreSQL无法启动:http://www.linuxdiyf.com/linux/12657.html
CentOS 6.5下PostgreSQL故障切换实现:http://www.linuxdiyf.com/linux/12605.html
Linux安装PostgreSQL 9.4:http://www.linuxdiyf.com/linux/12237.html
在Linux下面卸载与重新安装PostgreSQL(rpm包):http://www.linuxdiyf.com/linux/7288.html