Our Virtual Private Servers are setup on powerful main nodes with superior connectivity to ensure that each
VPS delivers optimum performance and offers the flexibility to run large websites and install third party applications with ease.
As far as VPS hosting management is concerned, all VPS Hosting plans are fully managed*. VPS hosting management includes setup, software installation,
security monitoring and 24/7 Technical Support which helps customers concentrate more on the growth of their business.
Signup for our Linux VPS Hosting today and experience the difference in server performance!
CPU | Memory | Storage | Bandwidth | Monthly | |
---|---|---|---|---|---|
1 vCPU | 1GB RAM | 25GB | 1000GB | $ 10/mo. | |
1 vCPU | 2GB RAM | 50GB | 2000GB | $ 20/mo. | |
2 vCPU | 2GB RAM | 60GB | 3000GB | $ 25/mo. | |
2 vCPU | 4GB RAM | 80GB | 3000GB | $ 33/mo. | |
4 vCPU | 8GB RAM | 160GB | 5000GB | $ 66/mo. | |
8 vCPU | 16GB RAM | 320GB | 6000GB | $ 132/mo. | |
8 vCPU | 32GB RAM | 100GB SSD | 6000GB | $ 366/mo. | |
16 vCPU | 64GB RAM | 200GB SSD | 7000GB | $ 670/mo. | |
32 vCPU | 128GB RAM | 400GB SSD | 8000GB | $ 1359/mo. | |
16 vCPU | 128GB RAM | 400GB SSD | 8000GB | $ 899/mo. | |
16 vCPU | 128GB RAM | 1.17TB | 8000GB | $ 1238/mo. | |
16 vCPU | 128GB RAM | 2.34TB SSD | 8000GB | $ 1375/mo. |
Cloud Linux
Our servers run on CloudLinux which is specifically designed around web hosting services. It allows us to limit the amount of CPU, memory and processes a single web site can use. This means a more stable environment as a single user is unable to utilize all system resources. In a typical web hosting environment one abusive user would be able to slow down all web sites on the server or even worse crash the system. This won't happen for any customer using our web hosting services.
CPanel
Each of our available web hosting packages are powered by cPanel, the most popular web hosting control panel available today. It makes it possible for you to use many of our great features without the need for much knowledge about servers or anything of that nature. Just a few clicks and you have an email account setup. With another few clicks you'll have your first database setup, allowing you to access and manipulate it through the control panel.
Softaculous
Softaculous is an auto installer growing in popularity as an alternative to other installers and comes pre-installed in all web hosting packages. It provides over 230 scripts allowing one click implementation of the most popular CMS and web applications available like Wordpress and Joomla. With over 230 scripts available Softaculous offers significantly more variety than other installers. It also provides updates at a much more rapid pace than other auto installers available today.
While we are sure you’ll love our web hosting services, we know sometimes you can't evaluate the caliber until you try it. With us, you get the flexibility to cancel the plan within 30 days.
We know the availability of your website is your primary concern and so is ours. Our Tier-3 and Tier-4 data centers enables us to provide you the best uptime.
We ensure that you have a great experience while hosting your websites on our server. Whenever you need any technical assistance, our experts are available 24/7/365 to fix your technical issues.
We never stop striving to deliver to our customers, and settle for nothing less than 100% satisfaction. Our team of highly-trained and experienced technicians, developers and designers understand what your business needs to succeed. We ensure that we will meet those needs and beyond.
Our support staff is always available to help - day or night. Contact us via phone or live support chat, available via your account dashboard. You can also submit a support ticket via our help area. No matter how you choose to contact us, you will always receive a rapid response and resolution from our support team!
We never stop striving to deliver to our customers, and settle for nothing less than 100% satisfaction. Our team of highly-trained and experienced technicians, developers and designers understand what your business needs to succeed. We ensure that we will meet those needs and beyond.
We understand the needs and requirements of your business, on both a technical as well as an aesthetic level. We will help you develop the presence, image and infrastructure that assures you will build a solid relationship with your customers, thus helping you establish and build your brand!
The commands for modifying file permissions and ownership are:
chmod – change permissions
chown – change ownership.
A new folder was created on a data partition called /DATA/SHARE
# sudo chmod -R ugo+rw /DATA/SHARE
The breakdown of the above command looks like:
sudo – this is used to gain admin rights for the command on any system that makes use of sudo (otherwise you'd have to 'su' to root and run the above command without 'sudo')
chmod – the command to modify permissions
-R – this modifies the permission of the parent folder and the child objects within
ugo+rw – this gives User, Group, and Other read and write access.
chown -R "Username" /DATA/SHARE (Replace Username with real username to whom you want to give ownership)
Let's break this down.
sudo – admin rights must be used since we are dealing with a folder that belongs to another user
chown – the command for changing ownership
-R – the recursive switch to make sure all child objects get the same ownership changes
Username – the new owner of the folder
/DATA/SHARE – the directory to be modified
#First rewrite any request to the wrong domain to use the correct one (here www.)
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#Now, rewrite to HTTPS:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
If you have a domain yourdomain.com, your server’s host would be something like server01.yourdomain.com. This what you would use for logging into your root account, while you would be able to run your website at yourdomain.com.
If you want to change Plesk mailbox directories please review this technical article for guidance.
CREATE DIRECTORIES
mkdir -p /home/var/mail
rsync -avz /var/mail /home/var/mail
Connect to the server using SSH/RDP.
Find what SMTP and IMAP/POP3 servers are in use:
# /usr/local/psa/admin/bin/mailmng --features | egrep 'SMTP_Server|IMAP_POP3_Server'
$features['SMTP_Server'] = "Postfix";
$features['IMAP_POP3_Server'] = "Dovecot"; $features['SMTP_Server_package'] = "postfix"; $features['IMAP_POP3_Server_package'] = "dovecot";
Stop the SMTP service:
# service postfix stop
Open the file /etc/psa/psa.conf and change the PLESK_MAILNAMES_D variable:
specify a new location for mailbox directory so that it is like:
# grep PLESK_MAILNAMES_D /etc/psa/psa.conf PLESK_MAILNAMES_D <new_mailnames_directory>
Note: To avoid performance degradation, the new location for the mailboxes directory should be located in the local file system - it should not be mounted as a network share, such as NFS.
Move mailboxes from the current directory to the new location with the
command:
# cp -ap /var/qmail/mailnames/* <new-mailnames-directory> If dovecot is in use, set the new location in the file /etc/dovecot/dovecot.conf by modifying values in the lines below:
# egrep 'mail_home|mail_location' /etc/dovecot/dovecot.conf mail_home = <new_mailnames_directory>/%Ld/%Ln mail_location = maildir:<new_mailnames_directory>/%Ld/%Ln/Maildir
Restart the dovecot service:
# service dovecot restart
After all the steps are done, start SMTP service and reconfigure mail settings using the mchk utility:
# service postfix start
# plesk repair mail
Before creating new mailboxes on new domains configure SELinux in the following way:
following is not required for selinux disabled server.
# chcon -R -t mail_spool_t <new_mailnames_directory>
reference: https://support.plesk.com/hc/en-us/articles/213374889-How-to-change-the-default-location-of-mailboxes-in-Plesk-for-Linux-
IF you want to change virtual hosts location in plesk for linux. Please check below article for assistance.
CHANGING PLESK VHOSTS DIRECTORY FROM /var/www TO /home/var/www
CREATE DIRECTORIES
mkdir -p /home/var/www
rsync -avz /var/www /home/var/www
/usr/local/psa/bin/transvhosts.pl --dest-dir /home/var/www --correct-scripts