Welcome Guest. Please Login or Register  


You are here: Index > Virtualizor - Virtual Server Control Panel > General Support > Topic : Virtualizor fail install in SoYouStart

2


Threaded Mode | Print  

Virtualizor fail install in SoYouStart
andri217
Group: Member
Post Group: Newbie
Posts: 7
Status:
Quote From : pitrs May 15, 2014, 2:57 am
VG then create the following
1) fdisk /dev/sda
2) n
3) 3
4) enter
5) enter
6) t
7) 3
8) 8e
9) w
10) reboot
11) pvcreate /dev/sda3
12) vgcreate vg /dev/sda3


I will try this.
wait for the results
IP: --   

Virtualizor fail install in SoYouStart
andri217
Group: Member
Post Group: Newbie
Posts: 7
Status:
Quote From : pitrs May 15, 2014, 2:57 am
VG then create the following
1) fdisk /dev/sda
2) n
3) 3
4) enter
5) enter
6) t
7) 3
8) 8e
9) w
10) reboot
11) pvcreate /dev/sda3
12) vgcreate vg /dev/sda3

Still "The Linux-KVM module is not loaded."
or it must be install kvm via YUM?
IP: --   

Virtualizor fail install in SoYouStart
andri217
Group: Member
Post Group: Newbie
Posts: 7
Status:
Quote From : andri217 May 15, 2014, 3:06 am
Quote From : pitrs May 15, 2014, 2:57 am
VG then create the following
1) fdisk /dev/sda
2) n
3) 3
4) enter
5) enter
6) t
7) 3
8) 8e
9) w
10) reboot
11) pvcreate /dev/sda3
12) vgcreate vg /dev/sda3


I will try this.
wait for the results


I've been successful to create a Volume Group. and when installed virtualizor and enter the admin page, it still "The Linux-KVM module is not loaded."
IP: --   

Virtualizor fail install in SoYouStart
andri217
Group: Member
Post Group: Newbie
Posts: 7
Status:
In result I get:
  Device Boot      Start        End      Blocks  Id  System
/dev/sda1  *          1        1275    10238976  fd  Linux raid autodetect
/dev/sda2            1275        2295    8190976  82  Linux swap / Solaris
/dev/sda3            2295      243201  1935080032+  8e  Linux LVM


IP: --   

Virtualizor fail install in SoYouStart
pitrs
Group: Member
Post Group: Newbie
Posts: 12
Status:
You must select
IP: --   

Virtualizor fail install in SoYouStart
pitrs
Group: Member
Post Group: Newbie
Posts: 12
Status:
Quote From : pitrs May 15, 2014, 12:56 pm
You must select

"Use the distribution kerner"
IP: --   

Virtualizor fail install in SoYouStart
siddhesh
Group: Member
Post Group: Newbie
Posts: 30
Status:
Hi ,

Sir you have to boot the server in the default kernel .
As ovh kernel dose not allow to load the kvm module .

Here are the steps to boot server into default kernel :-

Quote
yum install kernel
rm -rf /etc/mtab
mount -o remount -a
new-kernel-pkg --mkinitrd --depmod --install 2.6.32-431.17.1.el6.x86_64
(here grubby will give you an error skip it it is normal ...)
reboot


After following this method server will be able to load kvm module .

Also when you reload os there is an option to install server with default kernel .

If you face same issue after following the provided steps you can open support ticket .

Regards,
Virtualizor Team

Edited by siddhesh : May 19, 2014, 7:20 am
IP: --   

Virtualizor fail install in SoYouStart
brendan.miller
Group: Member
Post Group: Newbie
Posts: 1
Status:
Quote From : pitrs May 15, 2014, 2:57 am
VG then create the following
1) fdisk /dev/sda
2) n
3) 3
4) enter
5) enter
6) t
7) 3
8) 8e
9) w
10) reboot
11) pvcreate /dev/sda3
12) vgcreate vg /dev/sda3


Here are full instructions for setting up on OVH/SYS with RAID1:

/ 140GB ext3
swap 10GB

Code
fdisk /dev/sda
n <enter>  (Create a new partition)
p <enter>  (It should be a primary partition)
3 <enter>  (This will become the thrid partition)
<enter>    (Use default calculated value for start cylinder)
<enter>    (Use default calculated value for end cylinder)
t <enter>  (Change the partition type)
3 <enter>  (Select the partition number)
8e <enter>  (Partition type will be 8e)
w <enter> (write to disk)

fdisk /dev/sdb
n <enter>  (Create a new partition)
p <enter>  (It should be a primary partition)
3 <enter>  (This will become the thrid partition)
<enter>    (Use default calculated value for start cylinder)
<enter>    (Use default calculated value for end cylinder)
t <enter>  (Change the partition type)
3 <enter>  (Select the partition number)
8e <enter>  (Partition type will be 8e)
w <enter> (write to disk)


reboot (load new partition table)

Code
mdadm --create /dev/md2 --level=raid1 --raid-devices=2 /dev/sda3 /dev/sdb3 (setup the raid)
pvcreate /dev/md2 (create physical volume)
vgcreate vg /dev/md2 (create volume group)

mdadm -D /dev/md2 (view raid re-sync status)


--Install Virtualizor

SEE:
http://www.virtualizor.com/wiki/Install_KVM
http://www.virtualizor.com/wiki/Install_Xen
http://www.virtualizor.com/wiki/Install

Code
vgdisplay -A (check vg name as set above e.g. vg)
cd /tmp
wget -N http://files.virtualizor.com/install.sh
chmod 0755 install.sh
./install.sh email=your@email.com kernel=kvm lvg=VOLUME_GROUP_NAME (e.g. lvg=vg)
y <enter> (reboot)


Visit: https://your-server.com:4085
UN: root
PW: ****

--Add ips as pool with routed mode
IP: --   

Virtualizor fail install in SoYouStart
manekari
Group: Member
Post Group: Working Member
Posts: 212
Status:
Hello,


Sir, if the issue still appears, please open a support ticket so we can resolve it.


Regards,
Virtualizor team.
IP: --   

Virtualizor fail install in SoYouStart
uname-r
Group: Member
Post Group: Newbie
Posts: 38
Status:
have you tried a
modprobe kvm

???  :)

Once you know it all works, edit /etc/modules and add the following two lines :

kvm
kvm-intel

or

kvm
kvm-amd

...depending on your cpu. :)

IP: --   

Virtualizor fail install in SoYouStart
MarmottesB&D
Group: Member
Post Group: Newbie
Posts: 7
Status:
thank you for this guide, I installed Virtuozo (KVM) without worries on a SoYouStart  :D
IP: --   

Virtualizor fail install in SoYouStart
MarmottesB&D
Group: Member
Post Group: Newbie
Posts: 7
Status:
Quote From : MarmottesB&D September 5, 2014, 10:04 pm
thank you for this guide, I installed Virtuozo (KVM) without worries on a SoYouStart  :D

Virtualizor .. of course
IP: --   

Virtualizor fail install in SoYouStart
jameshsi
Group: Member
Post Group: Newbie
Posts: 14
Status:
Quote From : siddhesh May 19, 2014, 7:19 am
Hi ,

Sir you have to boot the server in the default kernel .
As ovh kernel dose not allow to load the kvm module .

Here are the steps to boot server into default kernel :-

Quote
yum install kernel
rm -rf /etc/mtab
mount -o remount -a
new-kernel-pkg --mkinitrd --depmod --install 2.6.32-431.17.1.el6.x86_64
(here grubby will give you an error skip it it is normal ...)
reboot


After following this method server will be able to load kvm module .

Also when you reload os there is an option to install server with default kernel .

If you face same issue after following the provided steps you can open support ticket .

Regards,
Virtualizor Team


This helps me out, Appreciate.
IP: --   

« Previous    Next »

Threaded Mode | Print  

2


Jump To :


Users viewing this topic
1 guests, 0 users.


All times are GMT. The time now is March 19, 2024, 10:42 am.

  Powered By AEF 1.0.8 © 2007-2008 Electron Inc.Queries: 11  |  Page Created In:0.032