• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Thursday, July 10, 2025
How VPS - How to use/setup VPS
  • Login
  • 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 Bolt CMS on CentOS 7

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

Contents

  1. Requirements
  2. Before you begin
  3. Step 1 – Install PHP, required PHP extensions, MySQL/MariaDB and NGINX
  4. Step 2 – Configure NGINX
  5. Step 3 – Download and install Bolt CMS
  6. Want to contribute?


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

The steps in this tutorial were written for Bolt 3.4.9, but will likely work on newer versions as well.

Requirements

Make sure your server meets the following requirements.

  • PHP 5.5.9 or higher
  • The following common PHP extensions:
    • pdo
    • mysqlnd (to use MySQL as a database)
    • pgsql (to use PostgreSQL as a database)
    • openssl
    • curl
    • gd
    • intl (optional but recommended)
    • json
    • mbstring (optional but recommended)
    • opcache (optional but recommended)
    • posix
    • xml
    • fileinfo
    • exif
    • zip
  • SQLite, MySQL or PostgreSQL database
  • Apache with mod_rewrite enabled or NGINX

Before you begin

Check the CentOS 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 PHP, required PHP extensions, MySQL/MariaDB and NGINX

CentOS does not provide the latest PHP versions in its default software repositories. We’ll need to add a Webtatic YUM repo. Instructions for adding the Webtatic repo are in this Vultr guide.

Install PHP 7.2 and required PHP extensions.

sudo yum install -y php72w php72w-cli php72w-fpm php72w-mbstring php72w-zip php72w-mysql php72w-pgsql php72w-sqlite3 php72w-curl php72w-simplexml php72w-common php72w-gd php72w-intl php72w-json php72w-opcache php72w-xml php72w-zip php72w-common php72w-process

Check the PHP version.

php --version

PHP 7.2.2 (cli) (built: Feb  4 2018 10:14:07) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies

Install NGINX.

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

# Copy/paste this to the /etc/yum.repos.d/nginx_mainline.repo file

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

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

sudo yum install -y nginx

Check NGINX version.

nginx -v
# nginx version: nginx/1.13.9

Start and enable NGINX.

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

Install MariaDB.

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

# Copy/paste this to the /etc/yum.repos.d/MariaDB.repo file

[mariadb]
name = MariaDB
baseurl = https://yum.mariadb.org/10.2/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

sudo yum install -y MariaDB-server MariaDB-client

Check the MariaDB version.

mysql --version
# mysql  Ver 15.1 Distrib 10.2.13-MariaDB, for Linux (x86_64) using readline 5.1

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.

sudo mysql_secure_installation

Create a database for Bolt and remember the credentials.

mysql -u root -p
# Enter password:

CREATE DATABASE dbname;
GRANT ALL ON dbname.* TO 'username' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit

Step 2 – Configure NGINX

Run sudo vim /etc/nginx/conf.d/bolt.conf and populate it with the following text.

server {
  listen [::]:80;
  listen 80;

  server_name example.com;

  index index.php index.html;
  root /var/www/bolt/public;

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

  location ~ [^/]/.php(/|$) {
    try_files /index.php =404;
    fastcgi_split_path_info ^(.+?/.php)(/.*)$;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTP_PROXY "";
    fastcgi_param HTTPS $https if_not_empty;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    include fastcgi_params;
  }
}

Test the NGINX configuration.

sudo nginx -t

Reload NGINX.

sudo systemctl reload nginx.service

Step 3 – Download and install Bolt CMS

Create a document root directory.

sudo mkdir -p /var/www/bolt

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

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

Navigate to the document root.

cd /var/www/bolt

Download the latest stable release of Bolt CMS from the command line.

wget https://bolt.cm/distribution/bolt-latest.zip

Unzip Bolt CMS, remove the downloaded zip file and move the Bolt CMS files and directories to /var/www/bolt.

unzip bolt-latest.zip
rm bolt-latest.zip
mv bolt-v3.4.9/* bolt-v3.4.9/.* .  # Just press enter on warning
rmdir bolt-v3.4.9/

To finish the installation, you will need to rename the following files:

mv .bolt.yml.dist .bolt.yml
mv composer.json.dist composer.json
mv composer.lock.dist composer.lock
mv src/Site/CustomisationExtension.php.dist src/Site/CustomisationExtension.php 

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

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

Run sudo vim /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

Open your domain/IP in the web browser and follow the Bolt CMS installation wizard. Bolt uses SQLite database by default. If you want to use another supported database, you can configure it in the app/config/config.yml file. After that, you will have Bolt installed on your CentOS 7 server. To access Bolt’s administrative interface, append /bolt to your IP/domain.

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

How To Install LLVM and Clang on CentOS 6

Next Post

Clustering RabbitMQ on CentOS 7

Next Post

Clustering RabbitMQ on CentOS 7

Leave a Reply Cancel reply

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

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

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"?

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

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • 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
  • About
  • Advertise
  • Careers
  • Contact

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

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

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

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In