PostgreSQL

来自MalacoKnowledge

安装

# pacman -S postgresql

初始化

YOUR_LOCAL为你主机的语言,如en_GB.UTF-8

# sudo su - postgres -c "initdb --locale YOUR_LOCAL -E UTF8 -D '/var/lib/postgres/data'"

创建

用户

# systemctl start postgresql
# sudo -u postgres createuser --interactive

数据库

# sudo -u postgres createdb -O db_user db_name