{"id":230,"date":"2017-10-04T08:17:34","date_gmt":"2017-10-04T13:17:34","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=230"},"modified":"2020-08-02T11:42:10","modified_gmt":"2020-08-02T16:42:10","slug":"how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/","title":{"rendered":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes"},"content":{"rendered":"<div id=\"linux-584626515\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and install, we\u2019re going to make this process even easier. We&#8217;ve put together a script containing some commands which will help you set up and install WordPress on your CentOS 7 machine in no time.\u00a0\u00a0Installing WordPress on a CentOS 7 VPS\u00a0 is really an easy task and it can be done in less than 2 minutes.<br \/>\n<!--more--> All you have to do\u00a0is to copy and paste the script into a file, execute it, and answer a few basic questions. But before we begin, you will need to have your MySQL &#8216;root&#8217; password set. If not, please run:<\/p>\n<pre class=\"brush: bash; gutter: true\">mysql_secure_installation<\/pre>\n<p>Set your MySQL &#8216;root&#8217; password before executing the script below. If for some reason you don&#8217;t remember your MySQL password, then you can easily reset your MySQL &#8216;root&#8217; password as described here.<\/p>\n<p><strong>NOTE:<\/strong> Keep in mind that you need to have a domain name registered and pointing to your server&#8217;s IP address before installing WordPress, or else this script will not work.<\/p>\n<p>This is the script, you will need to open up your favorite text editor, copy and paste this script into your editor, and save it with a name of your choice.<\/p>\n<pre>#!\/bin\/bash\r\n#Install WordPress on a CentOS 7 VPS\r\n\r\n#Set variables and create database\r\n\r\nclear\r\necho -n \"Enter your MySQL root password: \"\r\nread -s rootpass\r\necho \"\"\r\nread -p \"Database name: \" dbname\r\nread -p \"Database username: \" dbuser\r\nread -p \"Enter a password for user $dbuser: \" userpass\r\nmysql -uroot -p$rootpass &lt;&lt;MYSQL_SCRIPT\r\nCREATE DATABASE $dbname CHARACTER SET utf8 COLLATE utf8_general_ci;\r\nDELETE FROM mysql.user WHERE user='$dbuser' AND host = 'localhost';\r\nFLUSH PRIVILEGES;\r\nCREATE USER $dbuser@localhost;\r\nGRANT ALL PRIVILEGES ON $dbname.* TO $dbuser@localhost IDENTIFIED BY '$userpass';\r\nFLUSH PRIVILEGES;\r\nMYSQL_SCRIPT\r\necho \"Database created. Starting installation!\"\r\nsleep 2\r\n\r\n#Download, install, and configuration of WordPress\r\n\r\nread -p \"Enter your server's public IP address: \" address\r\nread -r -p \"Enter your WordPress URL [e.g. mydomain.com]: \" wordurl\r\nmkdir -p \/var\/www\/html\/$wordurl\r\ncd \/tmp\/\r\nwget -q http:\/\/wordpress.org\/latest.tar.gz\r\ntar -xzf latest.tar.gz -C \/var\/www\/html\/\r\nrm -f \/tmp\/latest.tar.gz\r\nmv \/var\/www\/html\/wordpress \/var\/www\/html\/$wordurl\r\ncd \/var\/www\/html\/$wordurl\r\nsed -e \"s\/database_name_here\/\"$dbname\"\/\" -e \"s\/username_here\/\"$dbuser\"\/\" -e \"s\/password_here\/\"$userpass\"\/\" wp-config-sample.php &gt; wp-config.php\r\nchown apache: -R \/var\/www\/html\/$wordurl\r\n\r\n#Create a Virtual Host\r\n\r\necho \"\r\n\r\n&lt;VirtualHost $address:80&gt;\r\n ServerName www.$wordurl\r\n DocumentRoot \"\/var\/www\/html\/$wordurl\"\r\n DirectoryIndex index.php\r\n Options FollowSymLinks\r\n ErrorLog logs\/$wordurl-error_log\r\n CustomLog logs\/$wordurl-access_log common\r\n&lt;\/VirtualHost&gt;\r\n\r\n\" &gt;&gt; \/etc\/httpd\/conf\/httpd.conf\r\n\r\n#Create .htaccess file\r\n\r\necho \"\r\n\r\n# BEGIN WordPress\r\n&lt;IfModule mod_rewrite.c&gt;\r\nRewriteEngine On\r\nRewriteBase \/\r\nRewriteRule ^index\\.php$ - [L]\r\nRewriteCond %{REQUEST_FILENAME} !-f\r\nRewriteCond %{REQUEST_FILENAME} !-d\r\nRewriteRule . \/index.php [L]\r\n&lt;\/IfModule&gt;\r\n# END WordPress\r\n\r\n\" &gt;&gt; \/var\/www\/html\/$wordurl\/.htaccess\r\n\r\nsystemctl restart httpd\r\n\r\necho \"Continue your installation at http:\/\/www.$wordurl\/wp-admin\/install.php\"\r\n\r\n#End of script<\/pre>\n<p>Once you have saved this file, now you will need to make this executable by running this command:<\/p>\n<pre>chmod +x &lt;name of your file&gt;<\/pre>\n<p>Now that you have made your file executable, you can now execute your script and install WordPress:<\/p>\n<pre>.\/&lt;name of your file&gt;<\/pre>\n<p>The script will then ask you for information to create a MySQL database for your WordPress installation, after which it then downloads, installs, and configures your installation to work with your database. Finally, it creates a virtual host with which your WordPress installation will be served to a web browser. Altogether, this should take no more than a few minutes to set up and run.<\/p>\n<p>Now that you have successfully installed WordPress on your server, the last thing you&#8217;ll need to do is to navigate to <strong>http:\/\/&lt;yourwebsitehere&gt;.com\/wp-admin\/install.php<\/strong> and finish configuring your WordPress installation.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/\">Linux Host Support<\/a>\u00a0services, in which case you can simply ask our expert Linux admins to install this for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post, please share it with your friends on the social networks using the buttons below, or simply leave a comment. Thanks.<\/p><div id=\"linux-185646130\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and install, we\u2019re going to make this process even easier. We&#8217;ve put together a script containing some commands which will help you set up and install WordPress [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":232,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[17,45,79,44,3],"class_list":["post-230","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-linux","tag-linux-host-support","tag-vps","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-10-04T13:17:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:42:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install WordPress on a CentOS 7 VPS in less than 2 minutes\",\"datePublished\":\"2017-10-04T13:17:34+00:00\",\"dateModified\":\"2020-08-02T16:42:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/\"},\"wordCount\":440,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/10\\\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg\",\"keywords\":[\"centos\",\"linux\",\"Linux host support\",\"vps\",\"wordpress\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/\",\"name\":\"How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/10\\\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg\",\"datePublished\":\"2017-10-04T13:17:34+00:00\",\"dateModified\":\"2020-08-02T16:42:10+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/10\\\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/10\\\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install WordPress on a CentOS 7 VPS in less than 2 minutes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport","description":"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and","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:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/","og_locale":"en_US","og_type":"article","og_title":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport","og_description":"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-10-04T13:17:34+00:00","article_modified_time":"2020-08-02T16:42:10+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes","datePublished":"2017-10-04T13:17:34+00:00","dateModified":"2020-08-02T16:42:10+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/"},"wordCount":440,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg","keywords":["centos","linux","Linux host support","vps","wordpress"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/","name":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg","datePublished":"2017-10-04T13:17:34+00:00","dateModified":"2020-08-02T16:42:10+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"This tutorial will show you how to setup and install WordPress on your CentOS 7 VPS in less than 2 minutes. While WordPress is already easy to setup and","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes.jpg","width":1200,"height":600,"caption":"How-to-install-WordPress-on-a-CentOS-7-VPS-in-less-than-2-minutes"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-wordpress-on-a-centos-7-vps-in-less-than-2-minutes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install WordPress on a CentOS 7 VPS in less than 2 minutes"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/230","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=230"}],"version-history":[{"count":4,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/230\/revisions"}],"predecessor-version":[{"id":1224,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/230\/revisions\/1224"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/232"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=230"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=230"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=230"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}