要连接到数据库,您将需要以下信息:
端口号:Applications Manager数据库运行所在的端口。(您可以从<Applications Manager Home>\conf\AMServer.properties 文件中的am.db.port 值获取此信息)。默认值为15432。
用户名:想要连接到数据库的用户名。由于我们要连接只读用户,因此用户名将是rouser。
密码:此特定用户名的密码。对于只读用户您可以使用 apmrouser。
对于 Windows:
AppManagerHome\working\pgsql\bin> set PGPASSWORD=apmrouser
AppManagerHome\working\pgsql\bin> psql -p 15432 -U rouser -h localhost -d amdb
amdb=> 表示您已连接到数据库,现在可以执行任何与读取相关的查询。例如:
但是,如果您尝试写入/更新,权限将被拒绝。例如:
对于Linux:
AppManagerHome/working/pgsql/bin$ export PGPASSWORD=apmrouser
AppManagerHome/working/pgsql/bin$ ./psql -p 15432 -U rouser -h localhost -d amdb