Netherland Based Linux Virtual Private Server (VPS)

TEMOK Linux VPS Hosting ready to meet your needs!

  • 24/7 Technical Support
  • Fully Managed Servers
  • Free OS reinstall
  • Free Reboots
  • Lifetime Hardware Guarantee
  • 99.9% Network Uptime
  • Powerful Intel Processors
  • Full Root Access

Linux VPS (Powered by XEN)

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!

Netherland Based Linux Virtual Private Server (VPS)

PACKAGE Basic VPS Hosting EUProfessional VPS Hosting EUBusiness VPS Hosting EUCorporate VPS Hosting EU
Memory512MB RAM1GB RAM2GB RAM2GB RAM
Raid Protected Storage20GB25GB50GB60GB
CPU1 CPU Cores1 CPU Cores1 CPU Cores4 CPU Cores
Premium Bandwidth500GB1000GB2000GB3000GB
Ethernet Port Speed100 Mbps100 Mbps1000 Mbps1000 Mbps
IPv6 AddressAvailableAvailableAvailableAvailable
AccessFull Root SSH AccessFull Root SSH AccessFull Root SSH AccessFull Root SSH Access
Fully Managed*N/AN/AN/AN/A
Setup timeInstantInstantInstantInstant
HypervisorXEN VirtualizationXEN VirtualizationXEN VirtualizationXEN Virtualization
PRICE

Rs 2800

Rs 3600

Rs 6800

Rs 8500

Order Online Today!

Order Now!Order Now!Order Now!Order Now!
Basic VPS Hosting EU
Memory
512MB RAM
Raid Protected Storage
20GB
CPU
1 CPU Cores
Premium Bandwidth
500GB
Ethernet Port Speed
100 Mbps
IPv6 Address
Available
Access
Full Root SSH Access
Fully Managed*
N/A
Setup time
Instant
Hypervisor
XEN Virtualization
PRICE

Rs 2800

Order Online Today!

Professional VPS Hosting EU
Memory
1GB RAM
Raid Protected Storage
25GB
CPU
1 CPU Cores
Premium Bandwidth
1000GB
Ethernet Port Speed
100 Mbps
IPv6 Address
Available
Access
Full Root SSH Access
Fully Managed*
N/A
Setup time
Instant
Hypervisor
XEN Virtualization
PRICE

Rs 3600

Order Online Today!

Business VPS Hosting EU
Memory
2GB RAM
Raid Protected Storage
50GB
CPU
1 CPU Cores
Premium Bandwidth
2000GB
Ethernet Port Speed
1000 Mbps
IPv6 Address
Available
Access
Full Root SSH Access
Fully Managed*
N/A
Setup time
Instant
Hypervisor
XEN Virtualization
PRICE

Rs 6800

Order Online Today!

Corporate VPS Hosting EU
Memory
2GB RAM
Raid Protected Storage
60GB
CPU
4 CPU Cores
Premium Bandwidth
3000GB
Ethernet Port Speed
1000 Mbps
IPv6 Address
Available
Access
Full Root SSH Access
Fully Managed*
N/A
Setup time
Instant
Hypervisor
XEN Virtualization
PRICE

Rs 8500

Order Online Today!

Good to know

  • Order 100% RISK FREE! All VPS Packages are covered with 15 Days Money Back Guarantee!
  • Setup time: within 24 hours Average setup time: 4 hours
  • Upfront payment Discount:3 months (-3%), 6 months (-5%), 12 months (-10%)

Important to know

  • Managed service is included for those VPS accounts having control panel(WHM/cPanel).
  • 1 CPU Core has minimum 2.0Ghz
  • Port Speed is shared between VPS on Main Node.TemokHost Dedicated Servers

FREQUENTLY ASKED QUESTIONS

Change permissions and ownership of file/folder via command line

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.


Changing the ownership of a file or folder is equally as simple:

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

How to Change PLESK MAILBOX DIRETORY FROM /var/mail TO /home/var/mail

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-

How to change virtual hosts location 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 DIRETORY 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

 

reference: https://support.plesk.com/hc/en-us/articles/213367009-How-to-change-virtual-hosts-location-in-Plesk-for-Linux

What is Virtual Private Server (VPS) Hosting?

Virtual Private Servers (VPS) are the most advanced step in server virtualization technology and were developed by Web hosting companies to satisfy the needs of an increasing number of web hosting users requiring more flexibility, custom configurations, root access etc. Virtual Private Servers. Basically, it is still a shared hosting account but unlike a normal shared hosting account, each VPS has its own dedicated slice of the CPU, RAM and disk space. So basically, what you do will not affect the other VPS on the machine. You can reboot your VPS anytime you want and you will have root access.

Show More

We Look Forward To Helping You!


Have questions? Be sure to visit our Knowledge Base Or… Contact Us!

WHY CHOOSE TEMOK.PK?

100% Customer Satisfaction

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.

8 + Years Experience Serving 8000+ Clients Worldwide!

Having been in business for almost a decade now, we have developed the ability to become a world-class source of services and infrastructure. We stay on the leading edge of technology and development platforms to ensure that our clients stay ahead of the curve, with no effort on their part.

Dedicated To Helping You Build Your Brand

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!

Dedicated Customer Support - 24/7/365!

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!

OUR CLIENTS