前期准备
配置/etc/hosts
文件,将服务器ip、对应的主机名添加进去。例如,固定IP地址:192.168.2.222
,主机名: gowah
,则需要在/etc/hosts
文件中按照下面的格式进行添加:
127.0.0.1 localhost.localdomain localhost192.168.2.222 gowah.proxmox.com gowah# The following lines are desirable for IPv6 capable hosts::1 localhost ip6-localhost ip6-loopbackff02::1 ip6-allnodesff02::2 ip6-allrouters
添加完成后,运行命令:
hostname --ip-address
若只返回只有一个结果 192.168.2.222
则表示配置正确。
安装Proxmox VE
1、添加 Proxmox VE 源。
可以替换为中科大的源:(这里是Debian9使用的,其它自己改)执行nano /etc/apt/sources.list
添加内容如下:
# Debian Stretch USTC Open Source Software Mirrordeb http://mirrors.ustc.edu.cn/debian/ stretch main contrib non-free deb http://mirrors.ustc.edu.cn/debian/ stretch-backports main contrib non-free deb http://mirrors.ustc.edu.cn/debian/ stretch-proposed-updates main contrib non-free deb http://mirrors.ustc.edu.cn/debian/ stretch-updates main contrib non-free deb http://mirrors.ustc.edu.cn/debian-security stretch/updates main contrib non-free
2、添加安全更新源
echo "deb http://download.proxmox.com/debian/pve stretch pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
当然也可以替换其中的 pve-no-subscription
为其它源,请根据需求进行选择
pve // 正式稳定版,但版本教老;pve-no-subscription // 比测试源稳定,比pve源相对来说要新些。pvetest // 测试源,问题多些
官方不建议 pve-no-subscription
用于生产平台,但个人用感觉不错,在这里我使用了 pve-no-subscription
的源。
3、添加仓库密钥
wget http://download.proxmox.com/debian/proxmox-ve-release-5.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-5.x.gpg
4、更新源和系统
apt update && apt dist-upgrade
更新需要一点时间,更新完成后重启一下系统
5、安装 Proxmox VE
apt install proxmox-ve postfix open-iscsi
推荐:继续执行以下命令以删除 os-prober
包,os-prober
软件包扫描主机的所有分区,包括客户端虚拟机创建双引导 GRUB
条目的分区。如果没有安装 Proxmox VE
作为另一个操作系统的双启动,您可以安全地删除 os-prober
软件包。
apt remove os-prober
安装完成,浏览器登录 WEB 管理页面 https://ip:8006
(必须是 HTTPS)
创建CT:
在开设前,我们需要将系统模板放入指定目录,OpenVZ的系统模板大家可以到OpenVZ官网去下载,他们有提供很多的系统模板,以tar.gz后缀,放入服务器/var/lib/vz/template/cache目录。
给个地址:https://download.openvz.org/template/precreated/?自己下载!
评论(0)