Installing HyperVM On CentOS- W/ YUM

Nov 4, 2007

I'm trying to install HyperVM like the following:

Code:
[root@server ~]# sh ./hypervm-install-master.sh --virtualization-type=openvz
Here is the output it's returning to me (From log file)

Code:
Installing packages which lxlighttpd zip unzip lxphp lxzend curl mysql mysql-server mysqlclient10...
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package lxphp.i386 0:5.2.1-90 set to be updated
---> Package lxzend.i386 0:3.3-lxa set to be updated
---> Package lxlighttpd.i386 0:1.4.13-1 set to be updated
--> Running transaction check
--> Processing Dependency: libmysqlclient.so.14(libmysqlclient_14) for package: lxphp
--> Processing Dependency: libmysqlclient.so.14 for package: lxphp
--> Finished Dependency Resolution
Up2date Gave Error... Trying Again...

This continues to loop

View 4 Replies


ADVERTISEMENT

Quota Problem In OpenVZ/HyperVM/CentOS

Jun 9, 2008

Anyone of the top of their head know how to fix the CPanel "Unlimited" Quota problem in CentOS/OpenVZ/HyperVM?

This post is not related to Infinitie, I personally have a few VPS servers I run and they are on CentOS 4.6 and the latest HyperVM, secondary quotas is enabled but I still keep having that problem where I cannot get quotas.

View 8 Replies View Related

Unknown Host Error On Hypervm/lxadmin On CentOS

Apr 3, 2008

I run hypervm/lxadmin and centos

My issue is that my websites I have hosted there just come and go. They will be accessible for a few minutes, then return "unknown host" errors for a while, and then come back like it never happened.

I am amusiming this is a dns issue, but I am not really sure where to start. My dns template looks ok, but past that I am lost.

View 6 Replies View Related

Installing CentOS

Jul 9, 2008

I'm testing out the old version of CentOS which is CentOS 2.1 on Virtual PC and I'm running into some problems. After installation of CentOS, it asks me to reboot the system so then I reboot it. Then it prompts me for the login and password.

I type in "root" and my password. Then I'm stuck inside this command prompt that says:

[root@localhost root]#

Now, how exactly do I get into CentOS graphical user interface, or is this it?

View 14 Replies View Related

Installing VNC On CentOS 4.5

Aug 12, 2007

Ive gotten all of it to work.. but instead of using SSH (caus I really dont understand it) Am I able to install VNC? And just connect + use the desktop like that?

my question is pretty much can I install VNC on CentOS 4.5 using SSH?

View 0 Replies View Related

Installing ImageMagick On CentOS

Aug 20, 2007

I'm trying to install imagemagick on centos using yum... I did the yum update, then tried 'yum install ImageMagick', but that didn't work - "Nothing to do". I also tried the i386 RPM, which also did not work, I'm missing a bunch of dependencies, has anyone installed this on CentOS know of a specific rpm or another way to install? Ideally, without installing through source.

View 8 Replies View Related

Installing Open VPN On CentOS

Nov 11, 2008

I followed a combination of this tutorial:[URL]and this tutorial [URL] (I had to use a combination since following each individually brought up errors along the way).

Anyhow, installing OpenVPN was a breeze but I think I am getting hung up on the configuration part. Basically after generating all of the certificate files and stuff, when i try to "service openvpn start" i just get the message "FAILED".

Where do I look to see what the reason for the failed start could be?

View 1 Replies View Related

Installing CentOS 5.2 On New Server

Jul 4, 2008

I decided to go with Cent OS after reading about it in the forums here, but I've had nothing but problems trying to install it. I first tried to do a net install but the installation took nearly an entire day because it would keep popping up messages about corrupt files when downloading the package files. Eventually it just gave up or rebooted because I came in in the morning to find it at a message saying "No OS installed". I then burned all 7 installation disks and tried that way, still got a few of the corrupt file messages (but far fewer than the previous time) and made it through the installation only to still have it say "no os installed" again after the reboot. I thought maybe it had something to do with the fact that I was not installing a boot loader (there is no other OS installed anyways) but when I tried to reinstall a third time, this time with the boot loader, it now says that the CD drive (USB) is already mounted on tty2 and I can't even start the installation? WTH!

The server is a Dell PowerEdge R300 with two Intel Core 2 Duo 64-bit processors. I'm using the x86_64 ISOs from the Centos.org mirrors.

View 1 Replies View Related

Installing Xen On CentOS With SATA

Feb 16, 2008

I've got a 'virgin' machine from Nocster running CentOS 5, including a SATA drive (shows up as "SCSI").

It looks like it'll be a straight-forward install [url], but I wondered if anyone has had this exact combination before and if there are any problems I should expect? Given that it's a dedicated machine I don't have physical access to, I'm slightly paranoid about screwing up.

View 2 Replies View Related

Installing CentOS Manually

Jul 8, 2008

how to install CentOS by not using the installer. This guide should be great when installing over networks, don't have a graphical console available (for installing over serial), when you're not content with the installer's job, installing CentOS from another distro, or plainly want to learn more about how CentOS works.

Requirements:
* Have a host OS that has the "rpm" package manager available. Some distributions have it in their repositories (even if the package manager for the distro itself is not rpm), and knoppix (a linux live/rescue CD) has it aboard too. You can use the first CentOS ISO CD too (use linux rescue at boot), and it has all the necessairy packages aboard
* Access to the CentOS base repository. It's on the first CentOS ISO CD
* Use your BRAIN. This guide is ment to be interpreted, not copy/pasted


Code:
# First, setup your disks to your liking. You can use whatever you want here,
# RAID, LVM, etc... Remember your disk configuration because you'll need it
# to configure grub, menu.lst and fstab. Using RAID, LVM, or others will require
# more configuration than this guide covers. To keep it simple I'm using a
# single disk. An example:

$ fdisk /dev/sda
$ mount /dev/sda3 /target
$ mkdir /target/boot
$ mount /dev/sda1 /target/boot

# Depending on the host OS you're using, you may need to initialize the rpm db
# on the host OS
$ rpm --initdb

# Use the following command to install the packages. I'll be addressing this
# command as $rpm.

$ rpm --root /target -i

# Use your shell's tab completion to complete the package filenames. I
# deliberatly left out the versions so these instructions apply to a wide range
# of versions

# Let's install some basics
$rpm setup basesystem filesystem

# Install bash first, this is needed for post-install scripts
$rpm bash glibc glibc-common termcap libgcc tzdata mktemp libtermcap

# Install some dependencies (this is mainly to keep the next command smaller)
$rpm grep pcre libstdc++ info ncurses zlib gawk sed ethtool

# Install the bulk of the system
$rpm coreutils libselinux libacl libattr pam audit-libs cracklib-dicts
cracklib libsepol mcstrans libcap chkconfig python db4 openssl readline
bzip2-libs gdbm findutils krb5-libs initscripts util-linux popt udev MAKEDEV
centos-release shadow-utils keyutils-libs iproute sysfsutils SysVinit
net-tools module-init-tools e2fsprogs e2fsprogs-libs glib2 mingetty
device-mapper sysklogd psmisc centos-release-notes procps libsysfs iputils

# Install package manager
$rpm rpm beecrypt elfutils-libelf rpm-libs sqlite

# Install YUM
$rpm yum python-elementtree rpm-python yum-metadata-parser python-sqlite
expat libxml2 python-urlgrabber m2crypto python-iniparse

# You may also want to install your favorite editor
$rpm nano

# This provides /root with some defaults, like color highlighting on `ls`
$rpm rootfiles

# Right now you have system which you can chroot to, so we can start setting up
# the basics

# Mount directories for chroot operation
$ mount --bind /dev /target/dev
$ mount -t proc none /target/proc
$ mount -t sysfs none /target/sysfs
$ chroot /target

# This constructs /etc/shadow
$ pwconv

# Configure fstab
$ nano -w /etc/fstab

# Installing the kernel. Do this back outside the chroot in the host OS system
$ exit
$rpm kernel mkinitrd cpio device-mapper-multipath dmraid gzip kpartx lvm2 nash
tar less device-mapper-event

# Install the bootloader, grub.
$rpm grub diffutils redhat-logos

# Let's chroot again to configure our bootloader
$ chroot /target

# We start by configuring the bootloader. Open /boot/grub/menu.lst, and put the
# following there

<<<MENU.LST
timeout 5
default 0

# (0) CentOS
title CentOS
root (hd0,0)
kernel /vmlinuz-2.6.18-92.el5 root=/dev/sda3 ro
initrd /initrd-2.6.18-92.el5.img
>>>

# If this command gives an error, you can safely ignore this because it's not
# of importance. What is important is that grub-install copied the right files
# to /boot/grub that we need for booting.
$ /sbin/grub-install /dev/sda

# Manually install grub if the previous step failed. - means type it in the grub
# shell
$ grub
$- root (hd0,0)
$- setup (hd0)

# Optional packages
# You may want to install passwd so you can set passwords ;-)
$rpm passwd libuser openldap cyrus-sasl-lib

# These are used to set the keyboard language (loadkeys)
$rpm kbd usermode

# ** Right now you should have a bootable system! Here are some tips to help you
# through your 1st boot ***

# Most of the system configuration happens in /etc/sysconfig. See

/usr/share/doc/initscripts

for full documentation.

Some quick post-install tips:
* Configure your keyboard in
/etc/sysconfig/keyboard
using the KEYTABLE variable

* Configure networking
Take a look at /etc/sysconfig/network-scripts. See ifcfg-lo for an example.

# This recreates the RPM database. If the host OS you used has a different
# version of db, rpm will complain with
# rpmdb: unable to lock mutex: Invalid argument
$ rpmdb --rebuilddb

View 2 Replies View Related

Installing CentOS 4.4 From A Floppy

Apr 27, 2007

Apparently on of my colo customers sent the server without the OS or CD drive, and wants us to install CentOS 4.4 64 bit.

Any way to get "download" version of it, put it on a floppy, put it in the server and let the server download the rest from the internet (after we enter the IP info, so it can connect)?

View 14 Replies View Related

Installing Yum On CentOS + Plesk (Virtuozzo) VPS

Jul 21, 2008

I found this tutorial on how to install yum. The only issue is, we have CentOS 5. Is there a more recent article with the latest files needed to install yum on CentOS5 / Plesk VPS?

[url]

View 1 Replies View Related

CentOS 5 - Problem Installing OpenVZ Kernel

Jun 22, 2008

Just to make things clear, i am not new at setting up VPS nodes, i have set up all of my servers with the HyperVM/OpenVZ setup and they work perfectly, but im having a problem with a new server.

Just received my new server, installed HyperVM-Slave, rebooted but the OpenVZ kernel was not installed for some reason, so i manually installed the OpenVZ Kernel using the RPM as yum seemed to install the wrong kernel.

I then installed the kernel using RPM and got this error at the end of installation:

grubby: unable to open /dev/hda: No such file or directory
grubby: unable to open /boot/boot.b: No such file or directory
grubby fatal error: unable to find a suitable template

I have never encountered this error with any of my other servers before...

Also after installation everything seems to be correct. /etc/grub.conf has the new OpenVZ kernel displayed, and default is set to 0, so upon startup it should be booting the correct kernel, but the thing is, when i reboot the machine the default kernel is loaded even though the grub.conf is configured to load the OpenVZ Kernel.

Im thinking that this may be due to the error i got when installing the kernel.

View 1 Replies View Related

Installing GPAC On Cpanel Based Centos

Apr 28, 2009

Anybody have successfully installed GPAC in Centos system?

View 0 Replies View Related

Plesk 12.x / Linux :: Installing Magento (Centos 7)

Oct 11, 2014

I am trying to install a magento on Plesk Version 12.0.18 Update #19 / CentOS Linux 7.0.1406 (Core).

Plesk is reporting that it cant install magento because php-mcrypt is missing. So I tried the following:

Code:

1) rpm -ivh [URL] ....
2) yum update
3) yum install php-mcrypt

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: ftp.plusline.de
* epel: mirror.23media.de
* extras: ftp.plusline.de
* updates: mirror.netcologne.de

[Code] ......

What can i do to install mcrypt without breaking other dependencies ?

View 5 Replies View Related

Plesk 12.x / Linux :: Installing Mcrypt On Linux Centos 5.5 PHP 5.3.3

Jun 20, 2014

I am trying to install Magento on my apache server. I am running into the dreaded mcrypt issue as Magento needs it to run. I have now been googling for the past few hours and have gotten nowhere.

Here are my details:

Linux
Centos 5.5
PHP 5.3.3
x86_64
Plesk 12

I have tried installing all sorts of different repos and it just isn't working.

When I try to install using # yum install php-mcrypt I get the following:

Loaded plugins: fastestmirror
Package php-mysql is obsoleted by php-mysqlnd, trying to install php-mysqlnd-5.5.13-3.el5.remi.x86_64 instead
--> Processing Dependency: php53-gd for package: psa-php53-configurator
--> Processing Dependency: php53-imap for package: psa-php53-configurator

[Code].....

View 6 Replies View Related

Difference Between CentOs 5.0 And Centos 4.5? Both With Plesk

Oct 1, 2007

What is the difference between CentOs 5.0 and Centos 4.5? (Both contains Plesk)

Would CentOS 5 contain more updates and fixes? CentOS 4.5 be more stable?

View 0 Replies View Related

XEN Without HyperVM

May 11, 2009

Anyone know of a host that runs XEN without HyperVM as it's control panel? I want to avoid HyperVM due to the 0day exploit in it.

View 10 Replies View Related

HyperVM VPS IP

Jun 18, 2008

I'm trying to setup a VPS with an IP from the pool and the pool is showing the folowing state:

85.xx.xxx.xxx 85.xxx.xxx.46 85.xxx.xxx.50 4/5

And the state ball it's grey and says All Assigned, but 85.xxx.xxx.50 shouldn't! And really the IP pings!

When I make ls -la in /vz/private it have a temp VPS I think.

total 28
drwxr-xr-x 6 root root 4096 Jun 18 01:32 .
drwxr-xr-x 8 root root 4096 May 9 03:01 ..
drwxr-xr-x 25 root root 4096 Jun 17 21:55 110
drwxrwxr-x 23 root root 4096 Jun 11 10:41 120
drwxr-xr-x 22 root root 4096 Jun 16 15:08 130
drwxr-xr-x 3 root root 4096 Jun 5 00:19 tmp.130-1

In the front page table it says 5 used IP but I have a directly assigned IP to the server 85.xxx.xxx.246 and I have no pools configured for it!

What can I do! I have already checked and I only have eth0 not secondary eth0:x

View 5 Replies View Related

Do You Use HyperVM

Aug 15, 2008

I see an enormous amount of companies offering HyperVM. I'm curios as to how many companies use it.. probably a large majority.

View 14 Replies View Related

Hypervm And Ips

Jul 25, 2007

I currently have vps with Hypervm and I was wondering how do I add additional ip's from the ip pool? I do not see the ip pool in my administration panel. Would it be under the server pool? My provider allocates ips to the ip pool but I do not know how to add them myself.

View 1 Replies View Related

Firewall On The Hypervm

May 16, 2009

I installed CSF on my hypervm node. Its installed and work correctly. But when i block a port, for example "80" i see "80" blocked to all vps too!

Where is issue and how can fix this problem?

View 5 Replies View Related

HyperVM Ostemplates (xen)

Apr 26, 2008

Does anyone know where i can find an Trixbox ostemplate for HyperVM (xen)?

Or perhaps a site with ostemplate collections or something?

Or.. and this is fine too, a site with an explenation on how i can make my own templates?

View 14 Replies View Related

HyperVM Or VMware?

Jul 5, 2009

which is better ? for create windows and linux VPS!

View 14 Replies View Related

Hypervm And Openvz Vps

Apr 25, 2009

I am trying to create some vps using openvz but after creating the vps with the Centos basic template 304mb i can't ping the ip and i can't view the centos welcome page in my browser (using ip and not domain, so i don't need to change there anything yet) and the most important is that i can't connect to the vps using ssh

I aks for many good users about my problem but i don' found a solution yet.

I ask my DC about ip's and they told me that the ip's are routed in my server.

I follow this instructions:

Filesystem Size Used Avail Use% Mounted on
/dev/sda1 50G 2.8G 44G 6% /
/dev/sda3 198M 21M 168M 11% /boot
/dev/sda5 408G 2.4G 385G 1% /vz
tmpfs 1012M 0 1012M 0% /dev/shm

I follow this:

I disable selinux by editing /etc/sysconfig/selinux and changing the line to selinux=disabled
and then run:

I just login using ssh as root and run the folllowing commands.
Did i have to move to another directory to run them or ?

setenforce 0
wget[url]

Next i open /etc/grub.conf
vi /etc/grub.conf
and change default=1 to default=0

Then i add the ip's at the pool and create a plan and then create a vps without any errors but nothing.

I try with my DC resolvers or the 4.2.2.1 4.2.2.2 but nothing.

I alo add at the settings the gateway with no results at all.

After all i can't ping the ip that the vps got from the pool even ping it and not possible to connect to it using the ssh Sad

View 14 Replies View Related

Add Windows VPS ON Xen-HyperVM

May 9, 2009

How Can I Provide a Windows VPS On Xen-HyperVM!

View 6 Replies View Related

Is HyperVM Free

Feb 8, 2009

Is HypereVm free? and if so how do you set it up.. do you just run the shell or?

View 14 Replies View Related

HyperVM+OpenVZ

Apr 17, 2009

When you're creating VPS container, you can ssh with that IP and login with your username and password correct? But, what is the problem when I successfully created a VPS, and when trying ssh into it, I can't. Ok, here we go. I want to create a 2nd vps and will be using it as my DNS server. I enter a set of IPs into HyperVM's IPpool. First IP: x.x.x.178 Last IP: x.x.x.182 Resolv Entries (space Separated) : Gateway (IP): x.x.x.x.177 NetMask: 255.255.255.248

Then I created a vps resource plan. And then I created a VPS and it use the first IP from above. I want to connect to SSH and want to make it as my DNS server but seems the IP are not responding, it wasn't even live. So, what is the problem here? Where I did wrong? Just to let you know, I successfully created 1 VPS before that and it works without any hiccups. Got even whm/cpanel installed as well on it. The thing that I suspected is that my DC pulled the IPs off me and assigned them to other server. Waiting for their reply on this though.

View 14 Replies View Related

What Does OpenVZ / W HyperVM

Aug 21, 2008

What does OpenVZ / w HyperVM

Can I distribute VPS through?

View 5 Replies View Related

Xen Or Openvz On Hypervm?

Feb 12, 2008

i have dedicated server. i want install hypervm on this server my work is sell vps.
of your seems xen is better or openvz for my work?

server is :
Intel 2.13Ghz Quad-Core Xeon X3210 Dell PowerEdge 840, 1066MHz, 2x4 MB L2 Cache

4GB DDR2 RAM

2x250GB HDD

View 6 Replies View Related

Virtuozzo Vs HyperVM

Feb 18, 2008

Can someone point me to the a good thread where these two options are compared? Or can we start on here?

I am thinking about it from a VPS host perspective.

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved