In case you ever installed VMWare server 2.02 on Centos 5.5 or 5.4 you probably ran into some problems where the web management keeps crashing and only the command-line is trustworthy.
The problem is caused by a new version of Glibc since the older versions work fine. Until CentOS or VMWare find a good solution this one will do the trick.
- You need root access to solve this.
- Go to the /etc/yum.repos.d folder and copy the CentOS-Base.repo to CentOS53-Base.repo .
- Edit the CentOS53-Base.repo file, eg: vim /etc/yum.repos.d/CentOS53-Base.repo .
- Append "53" to all packages, eg:
[base] -> [base53]
[updates] -> [updates53]
etc. - Comment out the mirrorlist by putting a # in front of it.
- Remove the baseurl line for all packages and replace it with the following:
baseurl=http://vault.centos.org/5.3/os/x86_64/
OR
baseurl=http://vault.centos.org/5.3/os/i386/
Depending if you are using the 32-bit or 64-bit version. - Now it's time to downgrade glibc and glibc-common.
yum downgrade glibc glibc-common - I had to do this 7-8 times from a fully updated CentOS 5.5 version until you have the correct version. The version you are looking for is 2.5-34.
- After you have the correct version installed, edit yum.conf so you can't update glibc again. Put this in your yum.conf:
exclude=glibc* nscd gcc gcc-c++ cpp libstdc++* nss_ldap - Final step: restart your server and run /usr/bin/vmware-config.pl again.














