Troubleshooting Tip: Removing Trusted Host restriction to restore admin GUI access in FortiSIEM
| Description | This article describes how to resolve the issue of being unable to access the FortiSIEM GUI by the admin user account due to the Trusted Host restriction. |
| Scope | FortiSIEM. |
| Solution | To resolve the issue of being unable to access the FortiSIEM GUI via the admin user account, follow these steps:
psql -U phoenix -d phoenixdb -c "select * from ph_sys_conf where property='Trust_Host'"
psql -U phoenix -d phoenixdb -c "update ph_sys_conf set value='' where property='Trust_Host'"
Note: In order to determine whether a login attempt is being blocked due Trusted Host restriction, it is possible to check the logs for PH_APPSERVER_LOGIN_ERROR in the App Server phoenix.log file located under /opt/glassfish/domains/domain1/logs:
2025-12-19 10:10:00,00 ERROR com.ph.phoenix.jsf.LoginBean - [PH_APPSERVER_LOGIN_ERROR]:[phCustId]=1,[eventSeverity]=PHL_ERROR,[errReason]=You have attempted to log in as administrator from an untrusted domain: 192.168.1.1,[phLogDetail]=Login error |
