{"id":256,"date":"2017-11-01T07:30:11","date_gmt":"2017-11-01T12:30:11","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=256"},"modified":"2018-01-25T06:32:11","modified_gmt":"2018-01-25T12:32:11","slug":"install-anchor-cms-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/","title":{"rendered":"Install Anchor CMS on CentOS 7"},"content":{"rendered":"<div id=\"linux-2484241167\" 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>We&#8217;ll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP and comes with markdown support, custom fields, themes, i18n compatibility and many more. In this tutorial, we gonna show you How to install Anchor CMS on CentOS 7.<\/p>\n<p><!--more--><\/p>\n<p>In order to run Anchor CMS on your VPS, the following <strong>requirements<\/strong> have to be installed:<\/p>\n<ul>\n<li>MySQL<\/li>\n<li>PHP<\/li>\n<li>Apache 2.4 with mod_php module<\/li>\n<\/ul>\n<p>In this tutorial, we will install the latest version of Anchor CMS on CentOS 7, with MySQL, PHP and Apache.<\/p>\n<h2>1. Update the system<\/h2>\n<p>First of all login to your CentOS 7 VPS via SSH as user root:<\/p>\n<pre>ssh root@IP_Address<\/pre>\n<p>and make sure that it is fully up to date:<\/p>\n<pre>yum -y update<\/pre>\n<h2>2. Install MySQL server<\/h2>\n<p>Anchor CMS requires an empty database, so we will install MySQL server:<\/p>\n<pre>wget http:\/\/dev.mysql.com\/get\/mysql57-community-release-el7-7.noarch.rpm\r\nyum localinstall mysql57-community-release-el7-7.noarch.rpm\r\nyum install mysql-community-server<\/pre>\n<p>Once it is installed, start MySQL and enable it to start on boot:<\/p>\n<pre>systemctl start mysqld\r\nsystemctl enable mysqld<\/pre>\n<p>and run the <code>mysql_secure_installation<\/code> post-installation script to finish the MySQL set-up:<\/p>\n<pre>mysql_secure_installation\r\n\r\nSecuring the MySQL server deployment.\r\n\r\nConnecting to MySQL using a blank password.\r\n\r\nVALIDATE PASSWORD PLUGIN can be used to test passwords\r\nand improve security. It checks the strength of password\r\nand allows the users to set only those passwords which are\r\nsecure enough. Would you like to setup VALIDATE PASSWORD plugin?\r\n\r\nPress y|Y for Yes, any other key for No:y\r\nThere are three levels of password validation policy:\r\nLOW    Length &gt;= 8\r\nMEDIUM Length &gt;= 8, numeric, mixed case, and special characters\r\nSTRONG Length &gt;= 8, numeric, mixed case, special characters and dictionary                  file\r\nPlease enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2\r\nPlease set the password for root here.\r\nNew password: Set New MySQL Password\r\nRe-enter new password: Re-enter New MySQL Password\r\nEstimated strength of the password: 100 \r\nDo you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y\r\nBy default, a MySQL installation has an anonymous user,\r\nallowing anyone to log into MySQL without having to have\r\na user account created for them. This is intended only for\r\ntesting, and to make the installation go a bit smoother.\r\nYou should remove them before moving into a production\r\nenvironment.\r\nRemove anonymous users? (Press y|Y for Yes, any other key for No) : y\r\nSuccess.\r\nNormally, root should only be allowed to connect from\r\n'localhost'. This ensures that someone cannot guess at\r\nthe root password from the network.\r\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : y\r\nSuccess.\r\nBy default, MySQL comes with a database named 'test' that\r\nanyone can access. This is also intended only for testing,\r\nand should be removed before moving into a production\r\nenvironment.\r\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : y\r\n- Dropping test database...\r\nSuccess.\r\n- Removing privileges on test database...\r\nSuccess.\r\nReloading the privilege tables will ensure that all changes\r\nmade so far will take effect immediately.\r\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : y\r\nSuccess.\r\nAll done!<\/pre>\n<p>Once MySQL is installed, login to the database server as user root, and create database and user for Anchor CMS:<\/p>\n<pre>mysql -u root -p\r\n\r\nmysql&gt; CREATE DATABASE anchor;\r\nmysql&gt; GRANT ALL PRIVILEGES ON anchor.* TO 'anchoruser'@'localhost' IDENTIFIED BY 'YOURPASSWORD';\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; \\q<\/pre>\n<h2>3. Install Apache Web Server<\/h2>\n<p>Next, we will install Apache web server:<\/p>\n<pre>yum install httpd -y<\/pre>\n<p>start Apache and make it start on boot:<\/p>\n<pre>systemctl start httpd.service\r\nsystemctl enable httpd.service<\/pre>\n<h2>4. Install PHP 7.1<\/h2>\n<p>The default PHP version on CentOS 7 is PHP 5.4. In this tutorial, we will install PHP version 7.1.<\/p>\n<p>Install Remi and EPEL repository packages:<\/p>\n<pre>rpm -Uvh http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm\r\nrpm -Uvh https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-7.noarch.rpm<\/pre>\n<p>Enable Remi PHP 7.1 repo:<\/p>\n<pre>yum-config-manager --enable remi-php71<\/pre>\n<p>and install PHP 7.1 and several PHP modules required by Anchor CMS by executing the following command:<\/p>\n<pre>yum -y install php php-mysql php-pecl-zip php-xml php-mbstring php-gd<\/pre>\n<p>Next, open the PHP configuration file and increase the upload file size. You can find the location of the PHP configuration file by executing the following command:<\/p>\n<pre>php --ini |grep Loaded\r\nLoaded Configuration File:         \/etc\/php.ini<\/pre>\n<p>In our case, we have to make changes to the \/etc\/php.ini file. We will increase the default upload limit to 100 MB. You can set the values according to your needs. Run the following commands:<\/p>\n<pre>sed -i \"s\/post_max_size = 8M\/post_max_size = 100M\/\" \/etc\/php.ini\r\nsed -i \"s\/upload_max_filesize = 2M\/upload_max_filesize = 100M\/\" \/etc\/php.ini<\/pre>\n<p>and restart the web server:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>5. Install Anchor CMS<\/h2>\n<p>Go to <a href=\"https:\/\/anchorcms.com\/docs\/getting-started\/installing\">Anchor&#8217;s official website<\/a> and download the latest stable release of the application<\/p>\n<pre>wget https:\/\/github.com\/anchorcms\/anchor-cms\/archive\/0.12.3a.zip<\/pre>\n<p>unpack the downloaded zip archive to the document root directory on your server<\/p>\n<pre>unzip 0.12.3a.zip -d \/var\/www\/html\/\r\nmv \/var\/www\/html\/anchor-cms-0.12.3a \/var\/www\/html\/anchor<\/pre>\n<p>Set the Apache user to be owner of the Anchor CMS files<\/p>\n<pre>chown -R apache:apache \/var\/www\/html\/anchor\/<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018anchor.conf\u2019 on your virtual server:<\/p>\n<pre>touch \/etc\/httpd\/conf.d\/anchor.conf\r\nnano \/etc\/httpd\/conf.d\/anchor.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost YOUR_SERVER_IP:80&gt;\r\nServerAdmin webmaster@yourdomain.com\r\nDocumentRoot \"\/var\/www\/html\/anchor\/\"\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\nErrorLog \"\/var\/log\/httpd\/yourdomain.com-error_log\"\r\nCustomLog \"\/var\/log\/httpd\/yourdomain.com-access_log\" combined\r\n\r\n&lt;Directory \"\/var\/www\/html\/anchor\/\"&gt;\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n&lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;\r\n\r\n<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<p>Install Composer<\/p>\n<p>Composer is a dependency manager for PHP with which you can install packages. Composer will pull in all the required libraries and dependencies you need for your project.<\/p>\n<pre>curl -sS https:\/\/getcomposer.org\/installer | php\r\nmv composer.phar \/usr\/local\/bin\/composer<\/pre>\n<p>Now go to the Anchor CMS directory and run the following command:<\/p>\n<pre>cd \/var\/www\/html\/anchor\r\ncomposer install<\/pre>\n<p>Finally, open your favorite web browser, navigate to http:\/\/your-domain.com\/ and if you configured everything correctly the Anchor CMS installer should be starting. You should follow the easy instructions on the install screen inserting the necessary information as requested.<\/p>\n<p>That is it. The Anchor CMS installation is now complete.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to install Anchor CMS on CentOS 7 if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Hosting and Server Support\u00a0services<\/a>, in which case you can simply ask our expert Linux admins to install Anchor CMS on CentOS 7 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 on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-3647265465\" 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>We&#8217;ll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP and comes with markdown support, custom fields, themes, i18n compatibility and many more. In this tutorial, we gonna show you How to install Anchor CMS on CentOS 7.<\/p>\n","protected":false},"author":1,"featured_media":258,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[60,61,56,79],"class_list":["post-256","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-anchorcms","tag-centos-7","tag-how-to","tag-linux-host-support"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install Anchor CMS on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We&#039;ll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP\" \/>\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\/install-anchor-cms-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Anchor CMS on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We&#039;ll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/\" \/>\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-11-01T12:30:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-25T12:32:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png\" \/>\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\/png\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"Install Anchor CMS on CentOS 7\",\"datePublished\":\"2017-11-01T12:30:11+00:00\",\"dateModified\":\"2018-01-25T12:32:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/\"},\"wordCount\":572,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/Install-Anchor-CMS-on-CentOS-7.png\",\"keywords\":[\"anchorcms\",\"centos 7\",\"how to\",\"Linux host support\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/\",\"name\":\"Install Anchor CMS on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/Install-Anchor-CMS-on-CentOS-7.png\",\"datePublished\":\"2017-11-01T12:30:11+00:00\",\"dateModified\":\"2018-01-25T12:32:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We'll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/Install-Anchor-CMS-on-CentOS-7.png\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/Install-Anchor-CMS-on-CentOS-7.png\",\"width\":1200,\"height\":600,\"caption\":\"Install Anchor CMS on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/install-anchor-cms-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Anchor CMS on CentOS 7\"}]},{\"@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":"Install Anchor CMS on CentOS 7 | LinuxHostSupport","description":"We'll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP","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\/install-anchor-cms-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Install Anchor CMS on CentOS 7 | LinuxHostSupport","og_description":"We'll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP","og_url":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-11-01T12:30:11+00:00","article_modified_time":"2018-01-25T12:32:11+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"Install Anchor CMS on CentOS 7","datePublished":"2017-11-01T12:30:11+00:00","dateModified":"2018-01-25T12:32:11+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/"},"wordCount":572,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png","keywords":["anchorcms","centos 7","how to","Linux host support"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/","name":"Install Anchor CMS on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png","datePublished":"2017-11-01T12:30:11+00:00","dateModified":"2018-01-25T12:32:11+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We'll show you, how to Install Anchor CMS on CentOS 7. Anchor CMS\u00a0is an open-source, lighter-weight and ultra-simple blogging system.It\u2019s written in PHP","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/Install-Anchor-CMS-on-CentOS-7.png","width":1200,"height":600,"caption":"Install Anchor CMS on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/install-anchor-cms-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Anchor CMS on CentOS 7"}]},{"@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\/256","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=256"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/256\/revisions"}],"predecessor-version":[{"id":408,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/256\/revisions\/408"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/258"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}