Quantcast
Viewing all articles
Browse latest Browse all 167

How to Setup Pimcore CMS on Ubuntu 15.10

Hello everybody, welcome to our today's article on installation setup of Pimcore on latest Ubuntu 15.10 server. Pimcore is a free and open-source integrated framework which has a very user friendly content- and data management editing User Interface from documents, pages and photos to complex data structures like E-commerce products. Pimcore is purely written in object-oriented PHP based on the Zend Framework. It has enterprise features such as automatic document/PDF generation via Web2Print. The E-Commerce integration module allow for flexible development of powerful multichannel-publishing applications within the shortest timespan. Editors love the simple and intuitive user interface. The modern interface has all the features which are usually only offered by fully fledged desktop applications.

The installation of Pimcore is dependent upon the LAMP stack, so you must have LAMP (Linux Apache MySQL and PHP) stack installed on your server.

1) System Upgrade

Login to your Ubuntu 15 server using the root credentials or sudo privileged user and run the following commands to update your system packages with latest security patches and update.

# apt-get update

If you are using an old version of Ubuntu then run below command to upgrade to the latest release.But make sure that you have taken backup of your server before upgrading your production server.

# do-release-upgrade

Now you need to setup the LAMP stack on your Ubuntu 15.10 server. Follow the below steps to setup LAMP stack and other PHP modules for Pimcore.

2) Install and Setup MySQL-MariaDB

You can install MariaDB by using the below 'apt-get' command.

# apt-get install mariadb-server

Press 'y' to proceed the installation.

Image may be NSFW.
Clik here to view.
MariaDB installation

By default, MariaDB is not hardened but we can secure MariaDB using the 'mysql_secure_installation' script. Then go through the following steps carefully which will set root password, remove anonymous users, disallow remote root login, and remove the test database and access to secure MariaDB as shown.

# mysql_secure_installation

Image may be NSFW.
Clik here to view.
Secure MariaDB

Next we will need to log in to the MariaDB console and create a database for the Pimcore using the command below.

# mysql -uroot -p

Create the database and assign some user privileges on this database with passowed using below command.

MariaDB [(none)]> CREATE DATABASE pimcore DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;

MariaDB [(none)]> GRANT ALL PRIVILEGES ON pimcore.* TO 'pimcore'@'localhost' IDENTIFIED BY 'password';

MariaDB [(none)]> FLUSH PRIVILEGES;

MariaDB [(none)]> EXIT;

Image may be NSFW.
Clik here to view.
Pimcore DB

3) Install PHP with Modules

To install PHP and its required modules for Pimcore, run the following command and press 'Y' to start the installation process.

# apt-get install php5 libapache2-mod-php5 php5-mcrypt php5-mysql php5-gd

Image may be NSFW.
Clik here to view.
PHP with Modules

4) Install and Setup Pimcore

Open the Pimcore Resources Link to download the latest package of Pimcore.

Image may be NSFW.
Clik here to view.
Download Pimcore

If you have 'wget' utility installed on your system, then copy the download path and run the command to as shown below to download package into the document root directory by creating a new directory.

# mkdir /var/www/html/pimcore

# cd /var/www/html/pimcore

# wget https://www.pimcore.org/download/pimcore-latest.zip

Once you have downloded the package the extract it within the same directory using 'unzip' command and make sure that 'unzip' is installed on your system.

# unzip pimcore-latest.zip

Image may be NSFW.
Clik here to view.
download Pimcore

We will also need to change the pimcore's folders permissions with below command.

# chown www-data:www-data -R /var/www/html/pimcore/

5) Configuring Apache Web Server

In this step we are going to install and configure Apache web server for Pimcore. Create a new virtual host directive in Apache by creating a new Apache configuration file named as ‘pimcore.conf’ in your virtual server using below commands.

# touch /etc/apache2/sites-available/pimcore.conf

# ln -s /etc/apache2/sites-available/pimcore.conf /etc/apache2/sites-enabled/pimcore.conf

# vim /etc/apache2/sites-available/pimcore.conf

After opening the file change your editor to insertion mode and put the following text in it by replacing your own domain name or IP address.


ServerAdmin admin@yourdomain.com
DocumentRoot /var/www/html/pimcore/
ServerName your_domain.com
ServerAlias www.you_domain.com

Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all

ErrorLog /var/log/apache2/your_domain.com-error_log
CustomLog /var/log/apache2/your_domain.com-access_log common

Save and close using ':wq!' and then run below command to enable rewrite module.

# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
service apache2 restart

Now, we can restart Apache web server so that the changes can take place.

# systemctl restart apache2.service

Image may be NSFW.
Clik here to view.
Apache Web Setup

6) Pimcore Web Access

Open your web browser followed by the domain name or IP address of your server. You will be directed towards the Pimcore installation page where you need to configure your MySQL-MariaDB and Admin user settings to start installation as shown in image below.

http://your_domain_or_server_ip/

Image may be NSFW.
Clik here to view.
Pimcore Web

Pimcore will be available on HTTP port 80 by default. If you are working under production environment then make sure to allow port '80' in your firewall and SELinux parameters.

After completing the installation, you can login to the Pimcore using your admin user credentials.

Image may be NSFW.
Clik here to view.
Pimcore Login

Once you have provided the right credentials you will be directed towards the Pimcore Dashboad that will be similar to image below.

Image may be NSFW.
Clik here to view.
Pimcore Dashboard

Conclusion

Congratulations, You have successfully installed Pimcore on your Ubuntu 15.10 VPS. Combining unparalleled ease of use with connect anything technology, total flexibility, and enterprise-grade capabilities, pimcore is the award-winning platform of choice for leading companies around the world, powering more than 65,000 sites, web and mobile applications, intranets and extranets in 18 different languages. Let's install and explore it alot of features and leave your valuable comments.

The post How to Setup Pimcore CMS on Ubuntu 15.10 appeared first on LinOxide.


Viewing all articles
Browse latest Browse all 167

Trending Articles