安装:
https://www.postgresql.org/do...
到这里就安装完成了.下面是授予当前Linux用户createdb权限
不然,执行$ createdb mydb
会报错:createdb: database creation Failed: ERROR: permission denied to create database
下面说明如何修改权限,需要登录到postgres默认超级账号去修改
YOUR_ACCOUNT@YOUR_HOST$ sudo -s root@YOU_HOST$ su - postgres postgres@YOUR_HOST$ psql psql (10.4 (Ubuntu 10.4-1.pgdg16.04+1),server 9.5.12) Type "help" for help. postgres=# ALTER ROLE <YOUR_ACCOUNT> CREATEROLE CREATEDB;
psql是Postgresql的命令行交互式软件,可以让你使用command操作数据库.也可以使用图形界面工具pgAdmin4来操作
现在回到<your_account>,你应该能$ createdb mydb
(如果新建的role不是本地Linux用户,还需要adduser)
原文链接:https://www.f2er.com/postgresql/193057.html