With the installation of new tools on the app servers within the Stratos Datacenter, certain functionalities now necessitate graphical user interface (GUI) access.
- Adjust the default runlevel on all App servers in Stratos Datacenter to enable GUI booting by default.
- Ensure no server reboot is initiated after completing this task.
- Log in to App Server 2
ssh your_username@app_server_ip
- Set the Default Runlevel to GUI:
sudo systemctl set-default graphical.target
- Verify the Configuration:
systemctl get-default
- Command Explanation:
ssh your_username@app_server_ip: Log in to the app server. sudo systemctl set-default graphical.target: Set the default boot target to GUI. systemctl get-default: Verify that the default boot target is set to GUI.