Again, the internet saved my VM.
If you move around a CentOS 6.x VM, your network MAC address can change. Here is how to fix it again.
Source: How to solve “Device eth0 does not seem to be present, delaying initialization” error – OSTechNix
More about Source control and random IT info
Again, the internet saved my VM.
If you move around a CentOS 6.x VM, your network MAC address can change. Here is how to fix it again.
Source: How to solve “Device eth0 does not seem to be present, delaying initialization” error – OSTechNix
At first sight a good explanation on setting up an ldap on a CentOS machine.
First we start looking at a low profile CentOS machine to activate on my ESXi. Follow these steps:
1) Getting CentOS:
http://www.server-world.info/en/note?os=CentOS_5&p=make_media
2) Preparing the ESXi instance:
http://www.server-world.info/en/note?os=CentOS_5&p=vmware_esxi&f=3
3) Installing CentOS:
http://www.server-world.info/en/note?os=CentOS_5&p=install
4) Installing LDAP:
http://www.server-world.info/en/note?os=CentOS_5&p=ldap&f=1
5) Testing LDAP:
… to be done … I will update the article once finished.
e.g.: http://vuksan.com/linux/LDAP_authentication_under_Linux.html
In order to install multiple web-sites with the same IP, the web-sites have to be identified by DNS name. Secondly, one will want to have a different installation of apache for each of the individual web-sites.
I configured a set-up where I have a single forwarding proxy, and all different vm’s with individual web-services. With Apache 2.2, the config is as follows.
The firewall has a public ip, and is forwarding all requests on port 80 and port 443 to the private proxy. The proxy server has a private ip (e.g. 10.0.1.10) and is forwarding all requests to individual servers. I will present 2, but you can repeat as much as you want. The private servers are on 10.0.1.21 and up….
Activate your proxy includes by creating a symbolic link:
su root
cd /etc/apache2/mods-enabled
ln -s ../mods-available/proxy.load proxy.load
ln -s ../mods-available/proxy_http.load proxy_http.load
Edit /etc/apache2/httpd.conf and add following sections:
UseCanonicalName On
NameVirtualHost 10.0.1.10
<virtualhost 10.0.1.10>
ServerName webmail.mydomain.com
ServerAlias www.webmail.mydomain.com
ProxyPreserveHost On
ProxyPass / http://10.0.1.21/
ProxyPassReverse / http://10.0.1.21/
</virtualhost>
<virtualhost 10.0.1.10>
ServerName clientzone.mydomain.com
ServerAlias www.clientzone.mydomain.com
ProxyPreserveHost On
ProxyPass / http://10.0.1.22/
ProxyPassReverse / http://10.0.1.22/
</virtualhost>
… that is it… simple once you know but it took me a lot of time to find it out.
VMWare ESX(i) does not support Mac OS X. The hardware does not match, and the license is in conflict.
VMWare has a solution for Mac OS X that is compatible with ESX VMs under the name of Fusion. However, this is a client application and the headless mode has been disabled in its latest release. It means one has to start a client-session and in there start the server…. As such, for running a server, VMWare has no viable solution.
Leaves us with investigating other alternatives.
For running Virtual BOX headless, we will need to set Virtual BOX in the launchd (yes, Mac OS X has no init.d), and figure out how to get it working on different versions. 10.4, 10.5, 10.6 seem to be slightly different.
Secondly, we will need to get RDP connections to these VMs.
Thirdle, we will need to convert back and forward machines from ESX and/or Parallels into Virtual BOX.
A good article for furhter reading.
Some useful links with regard to ESX server:
http://kuparinen.org/martti/comp/vmware/esxionusb.html
http://www.techhead.co.uk/installing-vmware-esx-and-esxi-35-on-an-hp-proliant-ml115-g5-quad-core
http://www.vm-help.com/esx/esx3i/ESXi_install_to_IDE_drive/ESXi_install_to_IDE_drive.php
http://www.thenorth.com/apblog4.nsf/0/460E2A8A3C4956708525761F004EED21