版本:8.0.58
问题1:无法保存数据。点击保存控制台报错
- VM312:451 Uncaught TypeError: _this.config_user_code.getValue is not a function
- at HTMLButtonElement.eval (eval at globalEval (jquery-2.2.4.min.js:2:2640), <anonymous>:451:68)
- at HTMLButtonElement.dispatch (jquery-2.2.4.min.js:3:7537)
- at r.handle (jquery-2.2.4.min.js:3:5620)
复制代码
问题2:配置不同步
管理器中的认证配置:
- # "local" is for Unix domain socket connections only
- local all all trust
- host all all 116.xx.xx.xx/32 password
- # IPv4 local connections:
- host all all 127.0.0.1/32 trust
- # IPv6 local connections:
- host all all ::1/128 trust
- # Allow replication connections from localhost, by a user with the
- # replication privilege.
- local replication all trust
- host replication all 127.0.0.1/32 trust
- host replication all ::1/128 trust
- host xx xx 0.0.0.0/0 md5
复制代码
/www/server/pgsql/data/pg_hba.conf 中的配置:
- # "local" is for Unix domain socket connections only
- local all all trust
- # IPv4 local connections:
- host all all 127.0.0.1/32 trust
- host all all 0.0.0.0/0 password
- # IPv6 local connections:
- host all all ::1/128 trust
- # Allow replication connections from localhost, by a user with the
- # replication privilege.
- local replication all trust
- host replication all 127.0.0.1/32 trust
- host replication all ::1/128 trust
复制代码
|
|