{"id":3374,"date":"2017-09-13T11:05:27","date_gmt":"2017-09-13T15:05:27","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=3374"},"modified":"2020-03-06T11:44:22","modified_gmt":"2020-03-06T16:44:22","slug":"create-openvz-vps-server-c6","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/","title":{"rendered":"How to Create an OpenVZ VPS Server on CentOS 6"},"content":{"rendered":"<h1>How to Create an OpenVZ VPS Server on CentOS 6<\/h1>\n<p><a href=\"https:\/\/openvz.org\/Main_Page\" rel=\"nofollow\" data-wplink-edit=\"true\">Open Virtuozzo<\/a>, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to as containers, virtual private servers (VPS), or a virtual environment (VE). Similar to other virtualization technology providers, OpenVZ runs multiple operating systems. However, OpenVZ uses a single Linux kernel; this means OpenVZ can only run Linux-based operating system virtualization.<\/p>\n<h2>Getting Started<\/h2>\n<p>Before we start with creating the OpenVZ VPS server and installing the web panel, make sure you have root access to your <a href=\"https:\/\/www.globo.tech\/dedicated-server-hosting\">CentOS 6 server<\/a>. The setup will not work properly if root access is not utilized.<\/p>\n<h2>Creating an OpenVZ VPS Server<\/h2>\n<p><strong>Preparing the Server<\/strong><br \/>\nNow that you&#8217;re running root access on your CentOS server, it&#8217;s time to verify that your server is up-to-date by running the following command:<br \/>\n<code>yum -y update<\/code><\/p>\n<p>Once you&#8217;ve confirmed that your server is current, you need to disable SELinux:<br \/>\n<code>sed -i 's|enabled|disabled|' \/etc\/sysconfig\/selinux<\/code><\/p>\n<p><strong>Installing OpenVZ<\/strong><br \/>\nAfter disabling SELinux, we can start installing OpenVZ on your CentOS system. The first step for this is adding the OpenVZ repository:<br \/>\n<code>wget -P \/etc\/yum.repos.d\/ http:\/\/ftp.openvz.org\/openvz.repo<br \/>\nrpm --import http:\/\/ftp.openvz.org\/RPM-GPG-Key-OpenVZ<\/code><\/p>\n<p>When the installation of the repository has completed, you can proceed with installing the OpenVZ kernel:<br \/>\n<code>yum install vzkernel<\/code><\/p>\n<p><strong>Configuring the Kernel Parameters<\/strong><br \/>\nNow it&#8217;s time to work on configuring some parameters for your server by editing the sysctl.conf file. The parameters listed below may already exist in the file, but the values should be adjusted to the illustrated values. Any parameters that are not included should be added:<br \/>\n<code>nano \/etc\/sysctl.conf<\/code><\/p>\n<p>Once you&#8217;ve adjusted the sysctl.conf file, confirm that each of the required parameters is included:<br \/>\n<code class=\"gris\">net.ipv4.ip_forward = 1<br \/>\nnet.ipv6.conf.default.forwarding = 1<br \/>\nnet.ipv4.conf.default.proxy_arp = 0<br \/>\nnet.ipv4.conf.default.send_redirects = 1<br \/>\nnet.ipv4.conf.all.send_redirects = 0<br \/>\nnet.ipv6.conf.all.forwarding = 1<br \/>\nnet.ipv4.conf.all.rp_filter = 1<br \/>\nkernel.sysrq = 1<\/code><\/p>\n<p>After confirming the values are listed, save the file and then reload the sysctl parameters for your server:<br \/>\n<code>sysctl -p<\/code><\/p>\n<p>The final configuration step, now that you&#8217;ve reloaded the parameters, is to install the OpenVZ utilities:<br \/>\n<code>yum -y install vzctl vzquota ploop<\/code><\/p>\n<p><strong>Reboot the Server<\/strong><br \/>\nNow that the OpenVZ kernel has been installed, the parameters have been adjusted, and the OpenVZ utilities have been added, it&#8217;s time to reboot your server. Usually your server will reboot into the OpenVZ kernel automatically. If that is not the case, you may need to edit the grub menu and comment out the other entries.<\/p>\n<p>Additionally, you can choose to enable neighbor devices using different subnets between the OpenVZ host and guests:<br \/>\n<code>nano \/etc\/vz\/vz.conf<\/code><br \/>\n<code class=\"gris\">Find out the following entry in the vz.conf file:<br \/>\n#NEIGHBOUR_DEVS=detect<br \/>\nChange it for:<br \/>\nNEIGHBOUR_DEVS=all<\/code><\/p>\n<p><strong>Installing the OpenVZ Web Panel<\/strong><br \/>\nFirst, we need to install the web panel dependencies:<br \/>\n<code>yum install rubygems ruby ruby-sqlite3.x86_64 git<\/code><\/p>\n<p>Once completed, collect the installation script and hotfix it:<br \/>\n<code>cd \/root<br \/>\nwget https:\/\/raw.githubusercontent.com\/sibprogrammer\/owp\/master\/installer\/ai.sh<br \/>\nsed -i 's|http:\/\/ovz-web-panel.googlecode.com\/files\/|https:\/\/storage.googleapis.com\/google-code-archive-downloads\/v2\/code.google.com\/ovz-web-panel\/|' ai.sh<\/code><\/p>\n<p>That installation script should be run after completing the previous step:<br \/>\n<code>sh ai.sh<\/code><\/p>\n<p>After the installation script has completed running, it&#8217;s time to adjust the firewall rules:<br \/>\n<code>nano \/etc\/sysconfig\/iptables<\/code><\/p>\n<p>The following line needs to be added to the existing iptables configuration file:<br \/>\n<code>-A INPUT -m state --state NEW -m tcp -p tcp --dport 3000 -j ACCEPT<\/code><\/p>\n<p>Once you&#8217;ve added the line to the iptables configuration file, the iptables service needs to be restarted for the change to take effect:<br \/>\n<code>service iptables restart<\/code><\/p>\n<p><strong>Configuring the OpenVZ Web Panel<\/strong><br \/>\nNow that OpenVZ has been installed and the web panel has been installed, it&#8217;s time to start the initial configuration of the environment. Shortly we&#8217;ll discuss acquiring virtual machine templates and setting up your web panel.<\/p>\n<p><strong>Access the OpenVZ Web Panel Interface<\/strong><br \/>\nTo begin our configuration of the web panel, use your web browser to access the following address: http:\/\/server.ip:3000<\/p>\n<p>The default login credentials for http:\/\/server.ip:3000 are:<br \/>\n<code class=\"gris\">Login: admin<br \/>\nPassword: admin <\/code><\/p>\n<p>Once you&#8217;ve logged in, the default interface should resemble the following screenshot:<br \/>\n<img loading=\"lazy\" decoding=\"async\" width=\"1915\" height=\"945\" class=\"aligncenter size-full wp-image-3375\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png\" alt=\"OpenVZ Web Panel\" \/><\/p>\n<p><strong>Change the Administrator Password<\/strong><br \/>\nChanging the administrator account password is essential since the default password is &#8220;admin.&#8221; This generic password makes changing the default administrator password a priority.<\/p>\n<p>To modify the password, click on <img loading=\"lazy\" decoding=\"async\" width=\"87\" height=\"25\" class=\"aligncenter size-full wp-image-3377\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxmyp.png\" alt=\"MyProfile\" \/>. During this step, you can also specify an email address and name for your account:<br \/>\n<img loading=\"lazy\" decoding=\"async\" width=\"417\" height=\"237\" class=\"aligncenter size-full wp-image-3376\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ2.png\" alt=\"OpenVZ - My Profile\" \/><\/p>\n<p>Once you&#8217;ve changed your password and included any optional details, you can click save to complete the reset.<\/p>\n<p><strong>Configure Your IP Addresses<\/strong><br \/>\nNow we&#8217;re moving on to set up the IP addresses for your web panel. On the left menu click on <img loading=\"lazy\" decoding=\"async\" width=\"102\" height=\"22\" class=\"aligncenter size-full wp-image-3378\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxipad.png\" alt=\"IP Addresses\" \/><\/p>\n<p>There are currently no IP addresses configured by default, so we need to add a new &#8220;IP Pool&#8221; by clicking on <img loading=\"lazy\" decoding=\"async\" width=\"96\" height=\"27\" class=\"aligncenter size-full wp-image-3379\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxippool.png\" alt=\"Create IP Pool\" \/><\/p>\n<p>To provide an example, we&#8217;re going to imagine the server was assigned a few IP addresses in the form of a single subnet. For this example, we&#8217;re going to say it is 67.215.1.0\/28.<\/p>\n<p>We would then select 67.215.1.2 to be our new server&#8217;s primary address while keeping 67.215.1.3 through 67.215.1.14 for our virtual machines. We would populate that information in the IP Pool selection like in the below picture:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"417\" height=\"159\" class=\"aligncenter size-full wp-image-3380\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ3.png\" alt=\"Create IP Pool\" \/><\/p>\n<p>Once you&#8217;ve similarly filled in your addresses, press the create icon. This then creates your IP address pool that can be attributed to virtual machines in the future.<\/p>\n<p><strong>Configuring Operating System Templates<\/strong><br \/>\nTo correctly provision our virtual machines, we need to make sure to add operating system templates to the system.<\/p>\n<p>The web panel allows you to download them in a convenient manner directly from the interface, so follow the below steps to configure these easily.<\/p>\n<p>On the left navigation panel, click on <img loading=\"lazy\" decoding=\"async\" width=\"94\" height=\"23\" class=\"aligncenter size-full wp-image-3381\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxlocal.png\" alt=\"localhost\" \/><\/p>\n<p>This option will open the host&#8217;s server page. Click on <img loading=\"lazy\" decoding=\"async\" width=\"89\" height=\"25\" class=\"aligncenter size-full wp-image-3382\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/templates.png\" alt=\"OStemplates\" \/> and you&#8217;ll be taken to the templates section, which will resemble the following screenshot:<br \/>\n<img loading=\"lazy\" decoding=\"async\" width=\"1919\" height=\"900\" class=\"aligncenter size-full wp-image-3383\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxostemp.png\" alt=\"OS templates on physical server localhost\" \/><\/p>\n<p>To open the selection menu, click on <img loading=\"lazy\" decoding=\"async\" width=\"145\" height=\"23\" class=\"aligncenter size-full wp-image-3384\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xinstal.png\" alt=\"Install New OS Template\" \/><\/p>\n<p>A menu will open that gives you the option to select different templates to download. After making your selections, press the install icon to begin the download:<br \/>\n<img loading=\"lazy\" decoding=\"async\" width=\"405\" height=\"411\" class=\"aligncenter size-full wp-image-3385\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xx02348.png\" alt=\"Installation of New OS Template\" \/><\/p>\n<p>Allow the system to run for a few minutes while the images download. The base templates are small, so the installation process should be quick. Once the download completes, you can begin creating your first virtual machine.<\/p>\n<p><strong>Create Your First Virtual Machine<\/strong><br \/>\nYou&#8217;ve completed your deployment of your OpenVZ server and web panel, configured your IP addresses, and downloaded operating system templates, so now it&#8217;s time to deploy your first virtual machine.<\/p>\n<p>To start setting up your first virtual machine, click on <img loading=\"lazy\" decoding=\"async\" width=\"94\" height=\"23\" class=\"aligncenter size-full wp-image-3381\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxlocal.png\" alt=\"localhost\" \/> and we&#8217;ll be taken here:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1913\" height=\"899\" class=\"aligncenter size-full wp-image-3389\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxbegin.png\" alt=\"Physical Server localhost\" \/><\/p>\n<p>Click through <img loading=\"lazy\" decoding=\"async\" width=\"125\" height=\"25\" class=\"aligncenter size-full wp-image-3390\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxxcvs.png\" alt=\"Create Virtual Server\" \/> to continue setting up your virtual machine. Dialog boxes will open, prompting you to fill in details for your new machine.<\/p>\n<p>During this process, you will select the operating system template you would like to use, as well as any resources you&#8217;d like to attribute to your virtual machine. You will also need to select an IP address and assign a root password to your virtual machine. The below screenshot is an example:<br \/>\n<img loading=\"lazy\" decoding=\"async\" width=\"422\" height=\"481\" class=\"aligncenter size-full wp-image-3391\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/xxvmcreate.png\" alt=\"Create New VM\" \/><\/p>\n<p>After filling in this information and documenting it someplace safe, press the create icon, and your virtual machine will generate shortly.<\/p>\n<p>Congratulations! You&#8217;ve completed configuring your new OpenVZ VPS server, installed the management panel, and created your first virtual machine on your CentOS 6 server.<\/p>\n<h2>Conclusion<\/h2>\n<p>You&#8217;ve successfully created an OpenVZ VPS Server and installing the Web Panel on CentOS 6. You&#8217;re now ready to move your VPS server into production and get started with your virtual operating system desktop. If you found this guide helpful during your setup process, please share it with other users that are going through the same process or may be interested.<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>How to Create an OpenVZ VPS Server on CentOS 6 Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to as containers, virtual private servers (VPS), or a virtual environment (VE). Similar to other virtualization technology providers, OpenVZ runs multiple operating systems.<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[60],"tags":[],"class_list":["post-3374","post","type-post","status-publish","format-standard","hentry","category-virtualization","operating_system-centos-6"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2017-09-13T15:05:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-06T16:44:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/\",\"name\":\"How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png\",\"datePublished\":\"2017-09-13T15:05:27+00:00\",\"dateModified\":\"2020-03-06T16:44:22+00:00\",\"author\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...\",\"breadcrumb\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png\",\"contentUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png\",\"width\":1915,\"height\":945,\"caption\":\"OpenVZ Web Panel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.globo.tech\/learning-center\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create an OpenVZ VPS Server on CentOS 6\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\/\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech","description":"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/","og_locale":"en_US","og_type":"article","og_title":"How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech","og_description":"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...","og_url":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/","og_site_name":"Globo.Tech","article_published_time":"2017-09-13T15:05:27+00:00","article_modified_time":"2020-03-06T16:44:22+00:00","og_image":[{"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png","type":"","width":"","height":""}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/","url":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/","name":"How to Create an OpenVZ VPS Server on CentOS 6 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png","datePublished":"2017-09-13T15:05:27+00:00","dateModified":"2020-03-06T16:44:22+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"Open Virtuozzo, often abbreviated as OpenVZ, is a technology for Linux systems that allows users to run isolated operating system instance, referred to ...","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2017\/09\/OpenVZ.png","width":1915,"height":945,"caption":"OpenVZ Web Panel"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/create-openvz-vps-server-c6\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Create an OpenVZ VPS Server on CentOS 6"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3374","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=3374"}],"version-history":[{"count":9,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3374\/revisions"}],"predecessor-version":[{"id":4825,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/3374\/revisions\/4825"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=3374"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=3374"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=3374"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}