Accessing the Symphony GUI
Before you begin
Before you begin accessing the Spectrum Symphony GUI, review the following considerations and requirements:
- The initial setup must be done from your local machine.
- The local machine must have one of the machine IP addresses that you specified when you created the cluster.
Configuring an SSH tunnel to the cluster to allow access
Before you can access the Spectrum Symphony cluster management console, you need to configure an SSH tunnel to the cluster to allow access to the management console through a local browser instance. You can do this by configuring port forwarding on your local browser host.
-
Run the following command to create the SSH tunnel:
ssh -L 8443:localhost:8443 -J root@{LOGIN_NODE_PUBLIC_IP} root@{MANAGEMENT_NODE_PRIVATE_IP}
where
LOGIN_NODE_PUBLIC_IP
needs to be replaced with the respective IP address of the login node andMANAGEMENT_NODE_PRIVATE_IP
needs to be replaced with the IP address of the management node that is running the WEBGUI service. -
From the shell prompt on the management node, run the following commands to identify which node the WEBGUI is running on (use the IBM Cloud console to get the IP address of that node):
egosh user logon -u Admin -x Admin egosh service list -ll | grep WEBGUI
Example output
[root@symphony-primary-0 ~]# egosh user logon -u Admin -x Admin Logged on successfully [root@symphony-primary-0 ~]# egosh service list -ll | grep WEBGUI "WEBGUI","","","","","","STARTED","8","/ManagementServices/EGOManagementServices","ManagementHosts","symphony-secondary-0.ibm.com","1","1","RUN","17" [root@symphony-primary-0 ~]#
-
Run the following command to close the tunnel:
control-D
-
Run the following command to reopen the tunnel:
ssh -L 8443:localhost:8443 -J root@{LOGIN_NODE_PUBLIC_IP} root@{WEBGUI_NODE_PRIVATE_IP}
where
LOGIN_NODE_PUBLIC_IP
needs to be replaced with the respective IP address of the login node andWEBGUI_NODE_PRIVATE_IP
needs to be replaced with the IP address of the node that is running the WEBGUI service. -
Open a browser on the local machine, and run https://localhost:8443. You will get an SSL self-signed certificate warning with your browser the first time that you access this URL.
-
To access the GUI, enter the default login credentials: username is
Admin
and password isAdmin
.
For more information on how to use the Symphony GUI, see Accessing the cluster management console.