VNA SSL enabled using 8443, but Port 8080 is still listening:
netstat -tlnp | grep -E '8080|8443'
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 831598/java
tcp 0 0 0.0.0.0:8443 0.0.0.0:* LISTEN 831598/java
The VNA swagger UI does not load on 8080, only 8443.
VNA 23.3.x, 24.3.x
The configure_ssl_vna.sh script should be handling disabling the 8080 listener.
/opt/CA/VNA/wildfly/bin
1. ./jboss-cli.sh --connect
2. /subsystem=undertow/server=default-server/http-listener=default:write-attribute(name=enabled,value=false)
{"outcome" => "success"}
3. exit
4. systemctl restart wildfly
netstat -tlnp | grep -E '8080|8443'
tcp 0 0 0.0.0.0:8443 0.0.0.0:* LISTEN 5736/java
Engineering is reviewing this. The configure_ssl_vna.sh will be fixed. Pending version.