How to install Backdrop 1.10.1 on MX Linux 17
To install Backdrop 1.10.1 on MX Linux 17
Backdrop CMS is a full-featured content management system that permits the non-technical users to manage a wide variety of content. It can be used to create all kinds of websites including blogs, image galleries, social networks, intranets, and more. In this tutorial, we will cover the installation of Backdrop on MX Linux 17.
Prerequisites
Install LAMP(Apache, MariaDB, php7) In MariaDB (create database and user and give privileges to that user )
Php installation with required following modules
add-apt-repository ppa:ondrej/php
apt-get update
apt-get install php7.0 php7.0-mysql php7.0-curl php7.0-json php7.0-cgi libapache2-mod-php7.0 php7.0-mcrypt php7.0-xmlrpc php7.0-gd php7.0-mbstring php7.0 php7.0-common php7.0-xmlrpc php7.0-soap php7.0-xml php7.0-intl php7.0-cli php7.0-ldap php7.0-zip php7.0-readline php7.0-imap php7.0-tidy php7.0-recode php7.0-sq php7.0-intl
Installation
Download a Backdrop package by using wget command.
root@linuxhelp:~# wget https://github.com/backdrop/backdrop/releases/download/1.10.1/backdrop.zip
--2018-09-15 02:49:32-- https://github.com/backdrop/backdrop/releases/download/1.10.1/backdrop.zip
Resolving github.com (github.com)... 192.30.253.113, 192.30.253.112
Connecting to github.com (github.com)|192.30.253.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
.
.
HTTP request sent, awaiting response... 200 OK
Length: 9281674 (8.9M) [application/octet-stream]
Saving to: ‘backdrop.zip’
backdrop.zip 100%[==================================>] 8.85M 1.13MB/s in 9.7s
2018-09-15 02:49:44 (932 KB/s) - ‘backdrop.zip’ saved [9281674/9281674]
After Downloading extract the downloaded package by using unzip command.
root@linuxhelp:~# unzip backdrop.zip
Archive: backdrop.zip
inflating: backdrop/files/.htaccess
inflating: backdrop/files/README.md
inflating: backdrop/core/includes/database/mysql/query.inc
inflating: backdrop/core/includes/database/mysql/install.inc
inflating: backdrop/core/includes/database/mysql/database.inc
inflating: backdrop/core/includes/database/mysql/schema.inc
inflating: backdrop/core/includes/database/query.inc
.
.
inflating: backdrop/sites/sites.php
inflating: backdrop/sites/README.md
inflating: backdrop/index.php
inflating: backdrop/robots.txt
inflating: backdrop/.htaccess
inflating: backdrop/.editorconfig
inflating: backdrop/README.md
inflating: backdrop/.gitignore
inflating: backdrop/settings.php
Move the extracted file into the HTML directory
root@linuxhelp:~# mv backdrop /var/www/
Navigate to the apache document root directory
root@linuxhelp:~# cd /var/www/
Change ownership and permission of the as Backdrop follows
root@linuxhelp:/var/www# chown -R www-data.www-data backdrop
root@linuxhelp:/var/www# chmod -R 775 backdrop
Create a new virtual host configuration for accessing the Backdrop
root@linuxhelp:/var/www# vim /etc/apache2/sites-available/backdrop.conf
<VirtualHost *:80>
ServerName www.linuxhelp1.com
DocumentRoot /var/www/backdrop/
<Directory /var/www/backdrop/>
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Enable the site access
root@linuxhelp:/var/www# a2ensite backdrop.conf
Enabling site backdrop.
To activate the new configuration, you need to run:
service apache2 reload
Disable the default access
root@linuxhelp:/var/www# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
service apache2 reload
Enable the rewrite module
root@linuxhelp:/var/www# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
service apache2 restart
Restart the apache service to make the changes effect
root@linuxhelp:/var/www# service apache2 restart
[ ok ] Restarting Apache httpd web server: apache2
Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://<ipaddress or domain name

Choose the language for using Backdrop as shown below

Configure the Database setup as follows

You will see the installation of backdrop

Configure the Site information and Admin user setup as follow

After the configuration, you will see the Homepage as shown below
Access the login page from the options shown below
You will see the version of Backdrop

With this, the method to install Backdrop on MX Linux 17 comes to an end.
Comments ( 0 )
No comments available