【问题原因】 当前设备IP不满足 keycloak 的默认要求,导致需要使用 https 协议访问
【解决办法】进入keycloak-postgresql容器,修改系统表。
(1)登录PostgreSQL数据库
psql -U supermap -d keycloak -h localhost -p 5432
(2)更新realm表的ssl_required字段
① update realm set ssl required='NONE' where id 'master';
② update realm set ssl required='NONE' where id 'ispeco';