I saw your track in the EU queue and I've checked your deployment log there. I've found two issues:
1. You should never use your personal account to deploy SAS Viya software. You have to set up the user account that deploys the software. The user account that is used to configure and start the deployment process has the following requirements:
Administrator privileges for the Linux machine where the deployment is launched.
A home directory that is readable by the user accounts that are required for the deployment (cas and sas). If you have more than one machine target for SAS Infrastructure Data Server, make sure that all of these machines have the same home directory for the installation user account.
Super-user (sudo) access. Run the following command to verify that your user ID is included in the sudoers file: sudo -v As an alternative, verify your sudoers privileges with the following command: sudo -l Note: The ability to start a shell (via the !SHELL entry in some sudoers files) as root is not required.
2. The second problem is with hostname_fqdn. You must set up your server so SAS Viya can see a valid FQDN. If the domain name is not there SAS Viya, especially RabbitMQ, will fail to start.
hostname -f
hostnamectl status
The Expected output should be a FQDN. The long name needs to resolve to a to a valid FQDN servername.doman.name for example.
This Red Hat document explains how to change your hostname to a FQDN
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Networking_Guide/ch-Configure_Host_Names.html
It is important to note Red Hat recommends that both static and transient names match the fully-qualified domain name (FQDN) used for the machine in DNS, such as host.example.com. It is also recommended that the static and transient names consists only of 7 bit ASCII lower-case characters, no spaces or dots, and limits itself to the format allowed for DNS domain name labels, even though this is not a strict requirement. Older specifications do not permit the underscore, and so their use is not recommended.
... View more