May
05

How to Create VPS’s on a dedicated server ?

If you are looking to create VPS Hosting packages on a dedicated server and resell them to your clients. BODHost is just the right place for you. We can assist you with complete creation of VPS’s on a dedicated server along with complete management techniques, additional licensing involved and much more. The first step to Setup a Dedicated Server Node is that you need to figure out as to how many VPS’s will you setup on a dedicated server along with calculation of your dedicated server profit. You can select a dedicated server from the following link :

Dedicated Server Hosting Node

Following is the calculation :

If your dedicated server costs : $200.00USD Per Month

You can create 20 VPS’s on it and price it at $30.00USD Per Month. So that means

20 VPS’s x $30USD Per Month = $600.00USD Per Month

Now, the next procedure is to opt for a Virtualization Software. If you opt for OpenVZ, there will be no licensing cost. However, if you opt for Virtuozzo Power Panel, following is the VPS licensing structure :

VZ 1VE   license    = $15.00USD/month

VZ 3VE   license    = $30.00USD/month

VZ 5VE   license    = $40.00USD/month

VZ 10VE license    = $50.00USD/month

VZ 20VE license    = $70.00USD/month

VZ 30VE license    = $90.00USD/month

VZ 40VE license    = $110.00USD/month

VZ 50VE license    = $130.00USD/month

VZ 60VE license    = $150.00USD/month

VZ 70VE license    = $160.00USD/month

VZ 80VE license    = $170.00USD/month

VZ 90VE license    = $180.00USD/month

VZ 100VE license    = $190.00USD/month

VZMC    $90.00USD/month

VZCC    $30.00USD/month

Now, for e.g. if you need to setup 20 VPS’s, you will need a 20 VE licenses. That means,

$200.00USD + $70.00USD = $270.00USD Per Month

And you will also need VZMC installed on the Server in order to manage your VPS’s.

Now, next is we need to think over the installation of cPanel or Plesk or any other control panel on each VPS. You will need to install cPanel or Plesk on each VPS as per your client’s requirements.

Following are the pricing structure of cPanel and Plesk for each VPS :

Plesk 10 Domains : $3.00USD Per Month

Plesk 30 Domains : $5.00USD Per Month

Plesk 100 Domains : $10.00USD Per Month

Plesk 300 Domains : $15.00USD Per Month

Plesk Unlimited Domains : $20.00USD Per Month

cPanel ( WHM ) : $8.00USD Per Month

Fantastico Deluxe – Installation with cPanel : $4.00USD Per Month

Rvskin License / Installation with cPanel : $30.00USD/Year Per VPS

RVSiteBuilder Pro : $10.00USD/Per Month Per VPS

RVSiteBuilder Lite : $6.00USD/Per Month Per VPS

Other Control Panels :

Webmin : Free!

LXAdmin : $4.00USD Per Month Per VPS

Billing System installation and management  :

You will need a Billing System such as WHMCS Or Modenbill – Type of billing account for management of the billing account. We suggest that you should consider WHMCS Automated Billing System for which the pricing are as follows :

WHMCS Automated Billing Software :

Monthly Price (Powered By Line in Client Area): $19.00USDP/M

Monthly Price (None): $29.00USDP/M

Owned License (Powered By Line in Client Area): $299.00 (One-Time)

Owned License (None): $399.00USD

Will BODHost Offer a Complete Hosting Turn-Key Solution ?

Ans. The answer is Yes. We will completely take care of the installation of Virtualization software installations, cPanel – Plesk installations, Installation of WHMCS – Billing System and also Fully Managed Solutions for the dedicated server hosting services.

Post to Twitter Tweet This Post

Comments Off    Read More   
Jun
01
Posted on 01-06-2008
Filed Under (vps hosting) by bodhost

EZ templates on Virtuozzo Power Panel includes the following :

- It has list of softwares that are required for pre-installed applications
- It also includes package manager which specifies packaging system
- In includes repositories
- mirror list where repository file exist
- It also includes linux distribution
- Provides all information on EZ template
- It also inclues a list of environment variables, scripts such as pre-cache, post-cache, pre-install, pre-upgrade, pre-remove

Virtual Private Servers setup on Virtuozzo Power Panel

Post to Twitter Tweet This Post

Comments Off    Read More   
May
31
Posted on 31-05-2008
Filed Under (Linux VPS Hosting) by bodhost

How to install FFmpeg on Linux VPS Hosting?

FFmpeg is an important application software which is used to run a video website with streaming with conversion of video files into various video formats. By following the below steps you can install FFmpeg software easily on Linux VPS Hosting without compiling the files.

yum install ffmpeg

If you will get command not found, then you will have to add few lines in the yum repository for dag installation.

Create a file named dag.repo in /etc/yum.repos.d with the following contents on it

[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

yum install ffmpeg

If everything works fine, then the installation should proceed smoothly and if not then you will get something like warning GPG public key missing .

To fix rpmforge GPG key warning:

rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

Most commonly you have GLIB 2.3 installed instead of GLIB 2.4 version. To check the current GLIB version installed on your server. just use

yum list glib*

and it will list all the packages whether installed or not. Try to see whether Glibc 2.4 installed, if not you will need to upgrade your Centos to latest version of 5.

How to check the ffmpeg working?
Finally, check the ffmpeg whether it is working or not.

> ffmpeg
> ffmpeg -formats
> ffmpeg –help
// This lists path of mpeg, its modules and other path information
> ffmpeg -i Input.file Output.file

To check what audi/video formats are supported
ffmpeg -formats > ffmpeg-format.txt

Open the ffmpeg-formats.txt to see the ooutput

D means decode
E means encode
V means video
A means audio
T = Truncated

How to install FFMPEG-PHP Extension?

FFmpeg-php is a very good extension and wrapper for PHP which can pull useful information about video through API interface on a Linux VPS Hosting. Inorder to install it you will have to download the source file and then compile and install extension on your server. You can download the source tarball from : http://ffmpeg-php.sourceforge.net/

wget /path/to/this/file/ffmpeg-php-0.5.2.1.tbz2

tar -xjf ffmpeg-0.5.2.1.tbz2

phpize

./configure
make
make install

Common types of Errors are as follows:-

1)If you get command not found error for phpize, then you will need to do yum install php-devel

2)If you get an error like shared libraries not found problem and the program stops in the middle, then you must specify the ffmpeg installed path explicitly to the ./configure.

3)“configure: error: ffmpeg shared libraries not found. Make sure ffmpeg is compiled as shared libraries using the –enable-shared option”

How to fix these errors:

1) First find out the ffmpeg path with ffmpeg –help command. The prefix default path should be like /usr/local/cpffmpeg
2) Configure the FFmpeg-php with –with-ffmpeg option

./configure –with-ffmpeg=/usr/local/cpffmpeg

Post to Twitter Tweet This Post

Comments Off    Read More   

VPS Hosting are just an next step to shared hosting packages and which are not really expensive such as a dedicated server. The features that are provided by VPS Servers are more or less like a dedicated server. no shared hosting packages provide full root access on Linux VPS’s or administrator access for Windows VPS Hosting packages. Customization are much more feasible when it comes to a VPS and it also allows third-party applications.

Much better performance when compared to any shared or reseller hosting packages. You will be able to host in a custom environment. However, in most cases good amount of knowledge is required in order to host a VPS. If you have a fully managed VPS, that would do much help and also assist you with major operations.

Also, be assured that you need more information on the VPS in order to host it. Best way is to gain as much knowledge from the host as possible. At the time of signup, please make sure you select the right options in order to meet your requirements. Wise selection of hosting package are always good for your pocket. Once you are aware of the vps you need to signup, please make sure the hosting provider can install it for you. You should not host any application or software that can likely over-load the VPS at the end of the day.

Complete isolated environment and indivualism is maintained on a vps at any point of time. Bodhost provides fully managed VPS Hosting package which are monitored 24×7 round the clock. For more information, please have a look at this link VPS Hosting

Post to Twitter Tweet This Post

Comments Off    Read More   
May
04
Posted on 04-05-2008
Filed Under (Cheap VPS Hosting) by bodhost

What is a Virtuozzo Template on VPS Hosting ?

Ans. It is basically a set of application files and registry settings that are installed on the host OS which can be used by any VE and mount virtuozzo file. It also creates tools for Virtuozzo and installs them to the hardware server node.

- It shares RAM with applications in VE’s that will save more memory
- Shares files in VE’s to disk space
- Application and patch installation
- Different application versions on different VE’s
- Templates include OS termplates and application templates
- OS templates install Operating systems on VE’s. It also includes configuration scripts.
- Application Templates in order to add additional softwares.
- New templates can be installed on the hardware server node
- Add Templates to VE’s
- This is basically called EZ templates

Our cheap vps hosting solutions are setup on Virtuozzo Power Panel

Post to Twitter Tweet This Post

Comments Off    Read More