linux连接pg数据库命令
时间: 2023-04-24 10:01:27 浏览: 1947
PHP连接及操作PostgreSQL数据库的方法详解
在Linux中连接到PostgreSQL数据库的命令是:
```
psql -h [host] -p [port] -U [username] -d [database]
```
其中,[host]是数据库服务器的主机名或IP地址,[port]是数据库服务器的端口号(默认为5432),[username]是连接数据库的用户名,[database]是要连接的数据库名称。
例如,连接到本地的名为mydb的数据库,用户名为postgres,可以使用以下命令:
```
psql -U postgres -d mydb
```
阅读全文