I have spend a day already trawling the internet, uninstalling, reinstalling etc... so really hope someone can help this lost fellow out... Never had this issue with previous versions.
I am trying to run Maya 2016 in Centos 6.5
Everything installed fine but this is what happens when starting:
If I:
$ su
# Maya
it runs fine...
$ sudo Maya
command not found
but I get this when I try to run as non root user like I would normally:
$ maya
/usr/autodesk/maya2016//bin/maya.bin: /opt/Autodesk/Adlm/R11/lib64/libcrypto.so.10: no version information available (required by /usr/lib64/libssh2.so.1)
/usr/autodesk/maya2016//bin/maya.bin: relocation error: /usr/lib64/libssh2.so.1: symbol EVP_rc4, version libcrypto.so.10 not defined in file libcrypto.so.10 with link time reference
The problem here seems to lie in the libssh libcrypto version being used. Would you agree?
some install instructions (
http://goo.gl/u30Gmx):
RHEL 6 and CentOS 6 provide a compatibility package for libssl.so.6 and libcyrpto.so.6. Install this package before installing Maya.
yum install openssl098e-0.9.8e
The Maya installer checks to see if there are existing system library versions, and if so, automatically creates the symbolic links in the Maya lib directory. In some cases, for example if you are running Maya from a network server, this process cannot be done automatically.
If the system versions of the library exist, use them.
su
cd /usr/autodesk/maya2016-x64/lib
ln –s /usr/lib64/libssl.so.10 libssl.so.6
ln –s /lib64/libcrypto.so.10 libcrypto.so.6
So I have done:
$sudo yum update
$sudo yum install openssh libssl.so.6
$sudo yum install openssl098e-0.9.8e
$su
$cd /usr/autodesk/maya2016-x64/lib
$ln –s /usr/lib64/libssl.so.10 libssl.so.6
$ln –s /lib64/libcrypto.so.10 libcrypto.so.6
$ ls /usr/autodesk/maya2016/lib/libssl.so.6 -al
lrwxrwxrwx 1 root root 23 Jun 10 04:06 /usr/autodesk/maya2016/lib/libssl.so.6 -> /usr/lib64/libssl.so.10
ls /usr/autodesk/maya2016/lib/libcrypto.so.6 -al
lrwxrwxrwx 1 root root 26 Jun 10 04:06 /usr/autodesk/maya2016/lib/libcrypto.so.6 -> /usr/lib64/libcrypto.so.10
I guess the question, is why does it work in su and not normal user?
Thanks for any pointers
LW