Changing the Hostname¶
By default, MWARE products identify the hostname of the current machine through the Java API. However, it is recommended to configure the hostname by setting the hostname parameter in the deployment.toml
file of each runtime (API-M or Micro Integrator).
Changing the API-M hostname¶
Follow the steps given below.
-
Update the
deployment.toml
file.-
Open the
<API-M_HOME>/repository/conf/deployment.toml
file -
Define the
hostname
attribute under server configurations as shown below.[server] hostname = "{hostname}"
[server] hostname = "am.dev.wso2.com"
Replace
{hostname}
with the Hostname or IP address of the machine hosting this server. This becomes part of the endpoint reference of the services deployed on this server instance. -
Configure the Developer Portal URL, which is used to access the Developer Portal via the Publisher.
Uncomment the following configuration and define the
hostname
.[apim.devportal] url = "https://<hostname>:${mgt.transport.https.port}/devportal"
-
-
Generate a key store, export the public certificate from the keystore, and import that certificate to the
clientÂ-truststore.jks
file.For more information, see Creating New Keystores.
-
Restart the server.
-
Map the hostname alias to its IP address in the
/etc/hosts
file of your system as shown below.Info
You need this when the host is internal or not resolved by a DNS,
127.0.0.1 localhost <ip_address> <hostname>
Warning
After you change the hostname, if you encounter login failures when trying to access the API Publisher and API Developer Portal with the error Registered callback does not match with the provided url
, see 'Registered callback does not match with the provided url' error in the Troubleshooting guide.
Changing the Micro Integrator hostname¶
Follow the steps given below.
- Open the
<MI-HOME>/conf/deployment.toml
file -
Define the
hostname
attribute under server configuration as shown below.[server] hostname = "{hostname}"
[server] hostname="localhost"
To configure hostnames for WSDLs and endpoints, it is recommended to add the following parameter for the transport listener in the deployment.toml
file.
[transport.http]
listener.wsdl_epr_prefix="$ref{server.hostname}"
Top