• Get In Touch
May 17, 2017

How to Install PimCore CMS on CentOS 7

Want your very own server? Get our 1GB memory, Xeon V4, 25GB SSD VPS for £10.00 / month.
Get a Cloud Server

Pimcore is a free and open source content management web application, object-oriented and PHP based on the Zend Framework that can be used to create and manage web applications and digital presences.

Pimcore comes with a user friendly and easy to use web interface. Pimcore provides lots of features including automatic document/PDF generation, E-Commerce integration module, modern interface and much more.

In this tutorial, we will learn how to install Pimcore CMS on CentOS 7 server.

Requirements

  • A server running Ubuntu CentOS 7 server.
  • A non root user with sudo privileges setup on your server.

Update the System

Before installing any packages, it is recommended to update your system with the latest version. You can do this by running the following command:

sudo yum update -y

Once your system is up to date, you can proceed to the next step.

Install LAMP Server

You will need to install Apache, MariaDB, PHP and other required PHP modules on your system. You can install all of them by running the following command:

sudo yum install httpd mariadb-server mariadb php php-mysql php-dom php-gd php-mbstring php-common -y

Once all the packages are installed, start MariaDB server and apache then enable them to start on boot with the following command:

sudo systemctl start httpd
sudo systemctl enable httpd
sudo systemctl start mariadb
sudo systemctl enable mariadb

Once you have done, you can proceed to the next step.

Configure Database

By default, MariaDB is not secured, so you will need to secure it first. You can do this by running mysql_secure_installation script:

sudo mysql_secure_installation

Answer all the questions as below:

Set root password? [Y/n] n
Remove anonymous users? [Y/n] y
Disallow root login remotely? [Y/n] y
Remove test database and access to it? [Y/n] y
Reload privilege tables now? [Y/n] y

Once MariaDB is secured, log in to the MariaDB console with the following command:

mysql -u root -p

Enter your root password when prompted, then create a database for Pimcore with the following command:

MariaDB [(none)]>CREATE DATABASE pimcoredb;
Query OK, 1 row affected (0.00 sec)

Next, create a username and password for Pimcore with the following command:

MariaDB [(none)]>CREATE USER 'pimcoreuser'@'localhost' IDENTIFIED BY 'password';
Query OK, 1 row affected (0.00 sec)

Next, grant privileges to the Pimcore database with the following command:

MariaDB [(none)]>GRANT ALL PRIVILEGES ON pimcoredb.* TO 'pimcoreuser'@'localhost';
Query OK, 1 row affected (0.00 sec)

Next, you will need to run the FLUSH PRIVILEGES command so that the privileges table will be reloaded by MariaDB and we can use new credential:

MariaDB [(none)]>FLUSH PRIVILEGES;
Query OK, 1 row affected (0.00 sec)

Next, exit from the MariaDB console with the following command:

MariaDB [(none)]>\q

Install Pimcore

First, you will need to download the latest version of the Pimcore. You can download it from their official website with the following command:

wget https://www.pimcore.org/download/pimcore-data.zip

Once the download is complete, unzip the downloaded file to the apache web root directory with the following command:

sudo mkdir /var/www/html/pimcore
sudo unzip pimcore-data.zip -d /var/www/html/pimcore/

Next, change the ownership of the pimcore directory with the following command:

sudo chown -R apache:apache /var/www/html/pimcore/

Configure Apache for Pimcore

First, you will need to create a apache virtual host directive for Pimcore. You can do this by creating pimcore.conf file inside /etc/httpd/conf.d/ directory:

sudo nano /etc/httpd/conf.d/pimcore.conf

Add the following lines:

<VirtualHost *:80>
ServerAdmin webmaster@yourdomain.com
DocumentRoot "/var/www/html/pimcore"
ServerName yourdomain.com
ServerAlias www.yourdomain.com
ErrorLog "/var/log/httpd/pimcore-error_log"
CustomLog "/var/log/httpd/pimcore-access_log" combined

<Directory "/var/www/html/pimcore/">
DirectoryIndex index.php
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

Save and close the file when you are finished, then restart Apache for the changes to take effect:

sudo systemctl restart httpd

Once you are done you can proceed to the next step.

Access Pimcore

Before accessing Pimcore web interface, you will need to set firewall rules for Pimcore to work properly.

You can do this by running the following command:

sudo firewall-cmd --permanent --zone=public --add-port=80/tcp

Next, reload the firewalld with the following command:

sudo firewall-cmd --reload

Finally, open your web browser and type the URL http://yourdomain.com/, you should see the following installation page :

HP_NO_IMG/data/uploads/users/7ecb43a5-b365-4ebf-93d5-f3b632f29f33/1858227879.png” alt=”” />

Here, provide all the details like database username, password, database name, admin username and password. Then click on the Install Now button you should see the following page:

HP_NO_IMG/data/uploads/users/7ecb43a5-b365-4ebf-93d5-f3b632f29f33/1237857945.png” alt=”” />

Here, give your admin username and password then click on the Login button, you will be redirect to the Pimcore default dashboard.

Thats it. You have successfully installed Pimcore on your CentOS 7 server.

Want your very own server? Get our 1GB memory, Xeon V4, 25GB SSD VPS for £10.00 / month.
Get a Cloud Server

Share this Article!

Related Posts

Node.js Authentication – A Complete Guide with Passport and JWT

Node.js Authentication – A Complete Guide with Passport and JWT

Truth be told, it’s difficult for a web application that doesn’t have some kind of identification, even if you don’t see it as a security measure in and of itself. The Internet is a kind of lawless land, and even on free services like Google’s, authentication ensures that abuses will be avoided or at least […]

Node.js and MongoDB: How to Connect MongoDB With Node

Node.js and MongoDB: How to Connect MongoDB With Node

MongoDB is a document-oriented NoSQL database, which was born in 2007 in California as a service to be used within a larger project, but which soon became an independent and open-source product. It stores documents in JSON, a format based on JavaScript and simpler than XML, but still with good expressiveness. It is the dominant […]

Using MySQL with Node.js: A Complete Tutorial

Using MySQL with Node.js: A Complete Tutorial

Although data persistence is almost always a fundamental element of applications, Node.js has no native integration with databases. Everything is delegated to third-party libraries to be included manually, in addition to the standard APIs. Although MongoDB and other non-relational databases are the most common choice with Node because if you need to scale an application, […]

Node.Js Vs Django: Which Is the Best for Your Project

Node.Js Vs Django: Which Is the Best for Your Project

Django and NodeJs are two powerful technologies for web development, both have great functionality, versatile applications, and a great user interface. Both are open source and can be used for free. But which one fits your project best? NodeJs is based on JavaScript, while Django is written in Python. These are two equally popular technologies […]

Nodejs Vs PHP:  Which Works Best?

Nodejs Vs PHP: Which Works Best?

Before getting into the “battle” between Node.js and PHP we need to understand why the issue is still ongoing. It all started with the increased demand for smartphone applications, their success forcing developers to adapt to new back-end technologies that could handle a multitude of simultaneous requests. JavaScript has always been identified as a client-side […]