postgre基本用法(一)
程序员文章站
2024-02-10 12:59:58
...
1、启动postgre
service postgresql start
2、#以postgres用户登录
su - postgres
psql
\l 查看当前的数据库列表
\d 当前数据库下的所有表
\q 退出
3、#以git用户登录
su - git
4、
psql -d gitlabhq_production -U git -p 5432
./bin/psql -h 127.0.0.1 -d postgres -U postgres -p 5432
其中-h参数指定服务器地址,默认为127.0.0.1,默认不指定即可,-d指定连接之后选中的数据库,默认也是postgres,-U指定用户,默认是当前用户,-p 指定端口号,默认是"5432",其它更多的参数选项可