由于安全因素考虑,新人只能拥有guest权限。以下为登陆服务器访问PostgreSQL数据库步骤。
登陆服务器:
服务器ip:123456789
port:22
账号:你的正常账号
密码:你的正常密码
完成服务器登陆。
python 代码:
import psycopg2
conn = psycopg2.connect(host="localhost", port="5432",dbname="textmining", user="guest",
password="" )
完成数据库链接。以上所需更改内容仅为:dbname="textmining"
更多psql操作:https://blog.csdn.net/u011304970/article/details/72771775