欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

程序员文章站 2022-03-06 09:28:50
到目前为止,vtonf仅仅支持redhat, fedora, 和 centos(支持debian正在计划中)。 centos-5.4-i386系统(vtonf不支持...
到目前为止,vtonf仅仅支持redhat, fedora, 和 centos(支持debian正在计划中)。

centos-5.4-i386系统(vtonf不支持x86-64的系统,安装过程会出错,在其install中也有说明)

1、关闭selinux

打开setup界面–firewall configureation,将selinux置为disabled

或修改

vi /etc/sysconfig/selinux

selinux=disabled
selinuxtype=targeted

2、firewall

如果不想关闭firewall,需要打开8001端口:

/sbin/iptables -i input -p tcp –dport 8001 -j accept
/etc/rc.d/init.d/iptables save
/etc/init.d/iptables restart

3、安装 openvz

cd /etc/yum.repos.d
wget http://download.openvz.org/openvz.repo
rpm –import http://download.openvz.org/rpm-gpg-key-openvz
yum search ovzkernel   
yum -y install ovzkernel 
yum -y install vzctl vzquota

vi /etc/sysctl.conf

修改或添加以下内容

net.ipv4.ip_forward = 1
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.conf.all.rp_filter = 1
kernel.sysrq = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.all.send_redirects = 0
net.ipv4.icmp_echo_ignore_broadcasts=1
net.ipv4.conf.default.forwarding=1

使之生效:

sysctl -p

重启系统

reboot

uname -r

如果安装正常应该显示为:

2.6.18-164.15.1.el5.028stab068.9

4、安装vtonf

yum -y install vzpkg expect

wget http://mesh.dl.sourceforge.net/sourceforge/vtonf/vtonfinstaller.1.0-beta1.tar.gz
tar xvfz vtonfinstaller.1.0-beta1.tar.gz
cd vtonfinstaller.1.0-beta1
./install

会问你是否开始安装程序,输入yes

do you wish to start the installation procedure (y/n)? : y
starting installation
please wait……………….

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

买空间、服务器就上主机网(cnidc.com) +idc导航=idc123.com

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

CentOS 5.4+OpenVZ+Vtonf实现VPS服务器的方法

ok.安装完成。

打开vtonf控制面板http://yourhostip:8001/

输入安装过程中你设置的用户名和密码

login name : admin

password :

属于你自己的vps已经呈现在你的眼前,晚些时候再把vtonf的使用方法弄出来。