...
- Download and unzip the WSO2 EMM binary distribution. The extracted directory is referred to as
<EMM_HOME>
in this document. Configure the
HostName
and theMgtHostName
. To do this, edit the<EMM_HOME>/repository/conf/carbon.xml
file as follows.Code Block language xml <HostName>work.emm.wso2.com</HostName> <MgtHostName>mgt.emm.wso2.com</MgtHostName>
HostName
: Host name or IP address of the machine hosting this server, e.g.work.emm.wso2.com
or192.168.1.10
.This is will become part of the End Point Reference of the services deployed on this server instance.MgtHostName
: Host name to be used for the Carbon management console.
Configure the HTTP/HTTPS proxy ports to communicate through the load balancer by editing the
<EMM_HOME>/repository/conf/tomcat/catalina-server.xml
file as follows.Code Block language xml <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="9763" proxyPort="80" redirectPort="443" … /> <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="9443" proxyPort="443" redirectPort="443" … />
- Configure the policy monitoring frequency. You set the value in milliseconds and the default is 10 minutes. To do this, edit the
<EMM_HOME>/repository/conf/cdm-config.xml
file.
<MonitoringFrequency>60000</MonitoringFrequency>
Configure the URL in the invitation email (this must point to the worker’s public host name). To do this, edit the
<EMM_HOME>/repository/conf/cdm-config.xml
file.Tip Tip: In a real deployment, please make sure to use the HTTPS address for the URL with a properly signed SSL certificate.
<LBHostPortPrefix>http://work.emm.wso2.com</LBHostPortPrefix>
Configure the QR code URL to publically expose the URL in the emm-web-agent jaggery application and the URL of the key manager. This file is in the emm-web-agent.zip file. Edit the
<EMM_HOME>/repository/deployment/server/jaggeryapps/emm-web-agent/config/config.json
file. Use a ZIP file browser to change the file.Code Block "dynamicClientRegistrationEndPoint" : "https://keymgt.mdm.wso2.com/dynamic-client-web/register/", ……. …... "generalConfig" : { "host" : "http://work.emm.wso2.com", "companyName" : "WSO2 Enterprise Mobility Manager", ……………………. }
...