To disable HTTP access to the SPLX 3.0 web console:
- Open a terminal on the SPLX 3.0 server.
- Use "VI" to open the splxhttpd.conf file:
vi /opt/TrendMicro/SProtectLinux/SPLX.httpd/conf/splxhttpd.conf
- Search for the "14942" string. The result should be something like:
--------------
# Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
#
Port 14942
##
## SSL Support
##
## When we also provide SSL we have to listen to the
## standard HTTP port (see above) and to the HTTPS port
##
###<IfDefine SSL>
Listen 14942
Listen 14943
###</IfDefine>
-------------- - Change it to:
--------------
# Port: The port to which the standalone server listens. For
# ports < 1023, you will need httpd to be run as root initially.
#
Port 14943##
## SSL Support
##
## When we also provide SSL we have to listen to the
## standard HTTP port (see above) and to the HTTPS port
##
###<IfDefine SSL>
#Listen 14942
Listen 14943
###</IfDefine>
-------------- - Write and quit VI with ":wq"
- Restart the splxhttpd service:
/etc/init.d/splxhttpd restart