How VPS - How to use/setup VPS
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System CentOS

Installing Anchor CMS on CentOS 7

How VPS by How VPS
October 1, 2019
in CentOS
0
0
SHARES
9
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Using a Different System?
  2. Requirements
  3. Before you begin
  4. Step 1 – Install NGINX
  5. Step 2 – Install MySQL or MariaDB
  6. Step 3 – Install PHP and required PHP extensions
  7. Step 4 – Configure NGINX
  8. Step 5 – Download and install Composer
  9. Step 6 – Download and install Anchor CMS
  10. Want to contribute?

Using a Different System?

  • Installing Anchor CMS on Fedora 28

Are we missing a guide for your target system? Request one, or submit your own!


Anchor is a lightweight open source blog CMS written in PHP. Anchor’s source code is hosted on GitHub. This guide will show you how to install Anchor CMS on a fresh CentOS 7 LTS Vultr instance.

Requirements

Make sure your server meets the following requirements.

  • MySQL 5.2+
  • PHP 5.6+
  • PHP extensions:
    • curl
    • mcrypt
    • gd
    • php-mbstring
    • pdo/_mysql or pdo/_sqlite

NOTE: If you don’t have the necessary requirements, you will not be able to install Anchor.

Before you begin

Check OS version.

cat /etc/centos-release
# CentOS Linux release 7.4.1708 (Core)

Create a new non-root user account with sudo access and switch to it.

useradd -c "John Doe" johndoe && passwd johndoe
usermod -aG wheel johndoe
su - johndoe

NOTE: Replace johndoe with your username.

Set up the timezone.

timedatectl list-timezones
sudo timedatectl set-timezone 'Region/City'

Ensure that your system is up to date.

sudo yum update -y

Install required and useful packages.

sudo yum install -y wget vim unzip bash-completion

Disable SELinux.

sudo setenforce 0

Step 1 – Install NGINX

Anchor CMS will work fine with Apache or NGINX. In this tutorial, we will use the latest NGINX software.

Become a root user for a moment,

sudo su - root

Create a new file, nginx_mainline.repo, in the /etc/yum.repos.d/ directory.

cat > /etc/yum.repos.d/nginx_mainline.repo

Then copy/paste the following lines to your terminal window and hit CTRL + D.

[nginx]
name=nginx repo
baseurl=https://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck=1
enabled=1

Logout from the root user.

exit

Download the NGINX repository PGP key.

wget https://nginx.org/keys/nginx_signing.key
sudo rpm --import nginx_signing.key
rm nginx_signing.key

Install NGINX.

sudo yum install -y nginx

Start and enable NGINX.

sudo systemctl enable nginx.service && sudo systemctl start nginx.service

Step 2 – Install MySQL or MariaDB

Anchor supports MySQL and SQLite databases. In this tutorial, however, we will be using the MariaDB database, which is a drop in replacement of MySQL.

Create a MariaDB YUM repository for CentOS.

sudo vim /etc/yum.repos.d/MariaDB.repo

Copy/paste the following into it.

# MariaDB 10.2 CentOS repository list - created 2017-12-11 23:19 UTC
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name=MariaDB
baseurl=https://yum.mariadb.org/10.2/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

After the file is in place, install MariaDB.

sudo yum install -y MariaDB-server MariaDB-client

Start and enable MariaDB.

sudo systemctl enable mariadb.service && sudo systemctl start mariadb.service

Run the mysql_secure_installation script to improve the security of your MariaDB installation and to set the root user password.

sudo mysql_secure_installation

The last step is to create a new database and user for Anchor CMS.

Login to MariaDB.

mysql -u root -p

Create the database and user.

CREATE DATABASE db_name;
GRANT ALL ON db_name.* TO 'user' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;

Exit from MariaDB.

exit

Step 3 – Install PHP and required PHP extensions

CentOS does not provide the newer PHP versions in its default software repositories. We’ll need to add a Webtatic YUM repo. Follow this Vultr guide for instructions on that.

Install PHP 7.2 and PHP required extensions.

sudo yum install -y php72w-cli php72w-fpm php72w-mbstring php72w-curl php72w-mysql php72w-sqlite3 php72w-mcrypt php72w-gd php72w-dom

Check the PHP version.

php --version
# PHP 7.2.2 (cli) (built: Feb  4 2018 10:14:07) ( NTS )

Enable and start php-fpm.service.

sudo systemctl enable php-fpm.service && sudo systemctl start php-fpm.service

Step 4 – Configure NGINX

Run sudo vi /etc/nginx/conf.d/anchor.conf and populate it with the following configuration.

server {
    listen 80;

    server_name example.com;

    root /var/www/anchor;
    index index.php index.html;

    location / {
        try_files $uri $uri/ /index.php;
    }

    location ~ /.php$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

}

Test the NGINX configuration.

sudo nginx -t

Reload NGINX.

sudo systemctl reload nginx.service

Step 5 – Download and install Composer

To successfully install Anchor, we will need to install Composer.

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer

Check the Composer version.

composer --version
# Composer version 1.6.3 2018-01-31 16:28:17

Step 6 – Download and install Anchor CMS

Create a document root directory.

sudo mkdir -p /var/www/anchor

Change ownership of the /var/www/anchor directory to johndoe.

sudo chown -R johndoe:johndoe /var/www/anchor

Go to the document root directory.

cd /var/www/anchor

Download the latest release of Anchor CMS.

composer create-project anchorcms/anchor-cms .

Change ownership of the /var/www/anchor directory to nginx.

sudo chown -R nginx:nginx /var/www/anchor

Open /etc/php-fpm.d/www.conf and set the user and group to nginx.

sudo vim /etc/php-fpm.d/www.conf

# user = nginx
# group = nginx

Restart php-fpm.service.

sudo systemctl restart php-fpm.service

Create /var/lib/php/session/ and change ownership to user nginx.

sudo mkdir -p /var/lib/php/session/ && sudo chown -R nginx:nginx /var/lib/php/session/

Using your preferred web browser, open your site and follow the Anchor CMS installer. After following the installer you will have Anchor up and running. To access the Anchor admin area just append /admin to your site URL. For security purposes, delete the /var/www/anchor/install directory when you are done with the installation.

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
How VPS

How VPS

Related Posts

Failed to download metadata for repo 'appstream' on Centos 8
CentOS

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Install BoltWire CMS on CentOS 7
CentOS

How to Install BoltWire CMS on CentOS 7

February 14, 2020
Showterm.io – A Terminal/Shell Recording, Upload and Share Tool for Linux
CentOS

Setup HTTP Authentication With Nginx on CentOS 7

February 14, 2020
Next Post

Setup Magento on CentOS 6

How to Install Cerb on CentOS 7

How To Install Vagrant On CentOS 6

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Follow Us

  • 121 Followers
  • 87.2k Followers

Recommended

How to Install Mattermost 4.1 on CentOS 7

3 years ago

How to Install BookStack on CentOS 7

3 years ago

How to Use 8 Useful ‘Debian Goodies Utilities’ to Manage Debian Packages

4 years ago

How to Install InvoicePlane on Debian 9

3 years ago

Instagram

    Please install/update and activate JNews Instagram plugin.

Categories

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel

Topics

Apache Web Server Bluehost Review 2019 Bluehost Review 2020 Bluehost Review 2021 Centmin Mod CentminMod centos install htop fsck htop install HTTP DoS attack Install Snort on an Ubuntu install Zabbix on CentOS install Zabbix on CentOS 7 Linux Commands linux guide linux install htop linux vps setup guide MariaDB MariaDB Error Mysql mysqld error optimize MariaDB optimize Mysql snort Ubuntu
No Result
View All Result

Highlights

Top Free Web Hosting Control Panels To Manage VPS/Dedicated Servers

Webmin Reviews

Virtualmin Reviews

CentOS Web Panel Reviews

Ajenti Reviews

ISPConfig Reviews

Trending

Failed to download metadata for repo 'appstream' on Centos 8
CentOS

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

by How VPS
February 25, 2022
0

I tried to update some extensions by use yum on centOs which I specified in Dockerfile. After...

How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020
Top Free Web Hosting Control Panels To Manage VPS/Dedicated Servers

Top Free Web Hosting Control Panels To Manage VPS/Dedicated Servers

February 17, 2020
Webmin Reviews

Webmin Reviews

February 17, 2020
How VPS – How to use/setup VPS

We bring you the best Premium WordPress Themes that perfect for news, magazine, personal blog, etc. Visit our landing page to see all features & demos.
LEARN MORE »

Recent News

  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8 February 25, 2022
  • How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”? November 17, 2020
  • How to optimize Mysql or MariaDB November 3, 2020

Categories

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel

[mc4wp_form]

© 2018 JNews - City News Magazine WordPress theme. All rights belong to their respective owners.
JNews is a top selling 2018 WordPress News, Blog, Newspaper & Magazine Theme.

No Result
View All Result
  • Home

© 2023 JNews - Premium WordPress news & magazine theme by Jegtheme.