POSTGRESQL 安装配置

installing on linux:

sudo apt-get install postgresql

where postgresql:

which psql

 /usr/bin/psql

create user:

sudo -u postgres createuser myusername

create db:

createdb mydb

installing extensions:

sudo apt-get install postgresql-contrib

扫描二维码关注公众号,回复: 1276037 查看本文章
psql book -c "CREATE EXTENSION tablefunc" 
psql book -c "CREATE EXTENSION fuzzystrmatch" 
psql book -c "CREATE EXTENSION pg_trgm" 
psql book -c "CREATE EXTENSION cube" 
psql book -c "CREATE EXTENSION dict_xsyn" 

猜你喜欢

转载自lvxiaojun12.iteye.com/blog/1927629