背景
以海豚调度1.2.1为基准进行了二次开发,元数据使用的MySQL数据库,现在需要在新的环境部署,并且改用PostgreSQL数据库。
问题记录
su:Module is unnown
解决方式
查看系统是32位还是64位
[root@DSJJ-DSJZX-SJCK04 ~]# uname -m
x86_64
[root@DSJJ-DSJZX-SJCK04 ~]#
64位配置(x86_64)
session required /lib64/security/pam_limits.so
session required pam_limits.so
32位配置(i386)
session required /lib/security/pam_limits.so
session required pam_limits.so
注:最终没有去验证,因为需要重启机器,生产机器,不敢呀!毕竟不能su,影响也不大!
111: Connection refused
2022/04/06 17:16:03 [error] 119957#0: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.31.1, server: localhost, request: "POST /dolphinscheduler/login HTTP/1.1", upstream: "http://10.248.10.13:8081/dolphinscheduler/login", host: "10.248.10.7:8081", referrer: "http://10.248.10.7:8081/dolphinscheduler/ui/view/login/index.html"
解决
注释掉nginx.conf里面的两条注释
#proxy_set_header Host $http_host;
#proxy_set_header X-Forward-For $remote_addr;
问题解决,产生该问题的原因可能和安装nginx时候关闭的选项有关
--without-http_rewrite_module --without-http_gzip_module
PgSQL jdbc连接模式schema配置
方式一
适用9.4之前版本
jdbc:postgresql://192.168.3.10:5432/etl?searchpath=scheduler_db
方式二
适用9.4及之后版本
jdbc:postgresql://192.168.3.10:5432/etl?currentSchema=scheduler_db
|