목차

RHV 4.x Manager WebUI Port change

Change http port from 80 to 8080

/etc/httpd/conf/httpd.conf

Listen 8080

Change https port from 443 to 8443

/etc/httpd/conf.d/ssl.conf

Listen 8443
<VirtualHost _default_:8443>

Change ovirt-engine configurations

개별 설정 파일을 /etc/ovirt-engine/engine.conf.d 디렉토리에 생성한다.

/etc/ovirt-engine/engine.conf.d/99-my-custom-settings.conf:
ENGINE_PROXY_HTTP_PORT=8080
ENGINE_PROXY_HTTPS_PORT=8443
ENGINE_SSO_AUTH_URL="https://${ENGINE_FQDN}:8443/ovirt-engine/sso"
ENGINE_SSO_SERVICE_URL="https://localhost:8443/ovirt-engine/sso"
SSO_ALTERNATE_ENGINE_FQDNS="${ENGINE_FQDN}:8443"
SSO_ENGINE_URL="https://${ENGINE_FQDN}:8443/ovirt-engine/"

Restart ovirt-engine and httpd services

systemctl restart httpd
systemctl restart ovirt-engine

참조링크