Ensure that the Linux OS
uname -snrvm output is shorter than 80 characters (eg <= 79).
uname --snrvm is the concatenation of : kernel name, nodename, release, version, and machine
As the
hostname is part of the output for uname -snrvm and the hostname is often artificially long because the
domain is part of the hostname (as seen from the output of the hostname call), removing the domain from the hostname can workaround the issue.
If FQDN is used as a part of hostname, split it into "
hostname" and "
dnsdomainname" in
/etc/sysconfig/network , eg:
...
HOSTNAME=name
DNSDOMAIN=yourdomain.something.com
instead of:
HOSTNAME=name.yourdomain.something.com