KB Article #168427
How to disable HTTP listening port
Problem
-- The administrative UI of PassPort can be accessed either via HTTP or HTTPS; the default ports for these are 6090 and 6453, respectively. How can the HTTP listener be disabled, so that all admin access will be via HTTPS?
Resolution
* This can be done by setting the listener's Enabled state to 0. This requires access to the underlying database (which can be the Synchrony Database, or an external instance of Oracle, Microsoft SQL, DB2 or MySQL). The database name is AxwayPassPort, and the table in question is pcm_serversettings.
An example of the appropriate commands, if using the Synchrony Database:
update pcm_serversettings set Enabled='0' where Name='Default_HTTP';
commit;
After making the change, stop and restart PassPort.