Basic OpenVZ commands To set up a VPS from the default CentOS 5 template you have to use the below command: vzctl create 101 –ostemplate centos-5-x86 –config basic The 101 must be a uniqe ID – each virtual machine must have its own unique ID. If you want to have the vm started at boot, …
Tag: Raw Server
How to install OpenVZ Kernel in Linux Server
How to install OpenVZ Kernel in Linux Server In order to install OpenVZ, we need to add the OpenVZ repository to yum: cd /etc/yum.repos.d wget http://download.openvz.org/openvz.repo rpm –import http://download.openvz.org/RPM-GPG-Key-OpenVZ Now open openvz.repo. vi openvz.repo and disable the [openvz-kernel-rhel6] repository (enabled=0) and enable the [openvz-kernel-rhel5] repository instead (enabled=1): yum search …
How to install Kloxo control Panel on linux Raw Server
How to install Kloxo control Panel on linux Raw Server cd /usr/src/download wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh sh ./kloxo-installer.sh –type=master passwd Once the installation is complete then try accessing the panel using server IP with port number.
How to install FFmpeg on linux server
How to install FFmpeg on linux server Create the repo file using the below command. vi /etc/yum.repos.d/dag.repo Insert below code in that file. [dag] name=Dag RPM Repository for Red Hat Enterprise Linux baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag gpgcheck=1 enabled=1 Then yum update and search for ffmpeg and install all ffmpeg packages including devel. yum update yum list ffmpeg* …
How to Install MySql on CentOS server
How to install MySql on CentOS server Please check whether MySql packages are available under yum. yum list mysql* If yes, then install mysql using below command. yum install mysql* Now install the Mysql database on the server using below command. mysql_install_db It will create mysql database on mysql server. Now, we have to reset …