Tag: Postgresql
1 articles
Postgresql 一些常用配置

Postgresql 一些常用配置

安装完 Postgresql 后一些初始的配置,包含创建用户,设置远程登录。 创建用户 su -postgres psql create user xxx with password 'aaa'; create database xxx owner xxx; grant all privileges on database xxx to …