[SOLVED] UCP not answering on the port set in System Admin

I’m running a fresh install of 6.12.65-30. The system is running well, except I cannot successfully change the listening port for UCP. The ports are applied without error, and all services answer on the ports set except UCP. UCP does still answer on port 80 regardless of what I set in System Admin.

I am running System Admin 12.0.45.2.

The contents of schmoozecom.conf are:

    # Automatically Generated File - 1445622175
# {"acp":{"port":"80","dir":"\/var\/www\/html"},"ucp":{"port":"50081","dir":"\/var\/www\/html\/ucp\/"},"restapi":{"port":"50085","dir":"\/var\/www\/html\/restapi\/"},"restapps":{"port":"50084","dir":"\/var\/www\/html\/restapps\/"},"hpro":{"port":"50083","dir":"\/tftpboot\/"},"xml":{"port":"82","dir":"\/var\/www\/html\/aastra\/"}}
# acp
Listen 80
<VirtualHost *:80>
    DocumentRoot /var/www/html
</VirtualHost>
# ucp
Listen 50081
<VirtualHost *:50081>
    DocumentRoot /var/www/html/ucp/
</VirtualHost>
# restapi
Listen 50085
<VirtualHost *:50085>
    DocumentRoot /var/www/html/restapi/
</VirtualHost>
# restapps
Listen 50084
<VirtualHost *:50084>
    DocumentRoot /var/www/html/restapps/
</VirtualHost>
# hpro
Listen 50083
<VirtualHost *:50083>
    DocumentRoot /tftpboot/
</VirtualHost>

Relevant Netstat output:

tcp        0      0 :::50081                    :::*                        LISTEN      20975/httpd
tcp        0      0 :::50083                    :::*                        LISTEN      20975/httpd
tcp        0      0 :::50084                    :::*                        LISTEN      20975/httpd
tcp        0      0 :::50085                    :::*                        LISTEN      20975/httpd

I am at a loss… Any suggestions would be greatly appreciated!

Solution: I was adding /ucp to the end of the URL when it is not requited. URL should be http://foo:50081 not http://foo:50081/ucp

1 Like