|
eg:创建jira数据库
- psql -U noway -d postgres
- create user jira with password 'jira';
- create database jira owner jira;
- grant all privileges on database jira to jira;
复制代码 eg: 创建wiki数据库
- psql -U noway -d postgres
- create user confluence with password 'confluence';
- create database confluence owner confluence;
- grant all privileges on database confluence to confluence;
复制代码 eg: 创建conf数据库
- psql -U noway -d postgres
- create user conf with password 'conf';
- create database conf owner conf;
- grant all privileges on database conf to conf;
复制代码
|
|