Install CactiEZ under Linux with Vmplayer
One installation of VMware player
Download the free VMware Player virtual software on the VMware website www.vmware.com. Transfer the downloaded software to the server to prepare for installation.
chmod 755 vmware-player-6.0.1-1379776.x86_64.bundle----Improve permissions./vmware-player-6.0.1-1379776.x86_64.bundle Install virtual software----
Two-Mount CactiEZ system
Open the virtual machine software, create a new virtual machine, and select Linux/centos. The default account for CactiEZ is Root/cactiez.
three-bridge network debugging
Because the server needs to crawl the data inside and outside the network, so whether it is a physical machine or a virtual machine requires two network cards, which requires the physical network card and virtual system network card bridging. The corresponding relationship is as follows:
Physical network card----Virtual network card----CactiEZ NIC em1----vmnet0----eth0 em2----VMNET1----eth1
1. Adjust the correspondence between the physical network card and the virtual network card. First of all, the Vmplayer virtual network card Manager to achieve the graphical,
Use the following command:
Cd/usr/lib/vmware/bin
Ln-s/usr/lib/vmware/bin/apploader vmware-netcfg
Ln-s/usr/lib/vmware/bin/vmware-netcfg/usr/bin/vmware-netcfg vmware-netcfg Open Virtual Network editor, so that the corresponding relationship between the network card, such as bridge up.
2. Add a net card to the CactiEZ. Since Vmplayer creates a virtual system, the default is to create only one network card, so
You also need to add a network card to CactiEZ. Click Virtual Machine Setting and click Add to add a net card. Configure the network in the CactiEZ system.
Vi/etc/sysconfig/network-scripts/ifcfg-eth0----Set up the external network card IP and gateway vi/etc/sysconfig/network-scripts/ IFCFG-ETH1----Set the internal NIC IP ifconfig eth1 up----Activate the ETH1 service network restart that you just created----Restart the network service
3. Adjust the network card correspondence between the virtual network card and the CactiEZ system. Locate the corresponding virtual machine. vmx file (in the installation
Recording), add:
Ethernet0.connectiontype = "Custom" ethernet0.vnet = "Vmnet0"
Ethernet1.connectiontype = "Custom" ethernet1.vnet = "Vmnet1"
Once configured, you can see in virtual machine setting that the NIC relationship becomes "custom" and corresponds to the associated virtual network card.
4. Configure the default routes and other information.
This article is from the "SS" blog, be sure to keep this source http://1991018.blog.51cto.com/1981018/1598037
Install CactiEZ under Linux with Vmplayer