How to install Landing cms on ubuntu 18.10
- 0:43 lsb_release -a
- 0:58 wget https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.zip
- 01:17 unzip 0.0.6.zip
- 01:33 mv Landing-CMS-0.0.6 /var/www/landing
- 01:50 chown -R www-data.www-data /var/www/landing
- 02:13 chmod -R 755 /var/www/landing
- 02:30 vim /etc/apache2/sites-available/landing.conf
- 03:32 a2dissite 000-default.conf
- 03:50 a2ensite landing.conf
- 04:13 a2enmod rewrite
- 04:23 systemctl restart apache2
Installation of landing cms 0.0.6 on Ubuntu 18.10
Installation procedure
You need to configure the LAMP setup For the Installation of Landing CMS If you dont have the Lamp setup Refer Here
Check the Ubuntu version by using the following command
root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.10
Release: 18.10
Codename: cosmic
Download the landing cms package by using wget command
root@linuxhelp:~# wget https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.zip
--2019-04-11 10:32:23-- https://github.com/Elias-Black/Landing-CMS/archive/0.0.6.zip
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/Elias-Black/Landing-CMS/zip/0.0.6 [following]
--2019-04-11 10:32:24-- https://codeload.github.com/Elias-Black/Landing-CMS/zip/0.0.6
Resolving codeload.github.com (codeload.github.com)... 192.30.253.121, 192.30.253.120
Connecting to codeload.github.com (codeload.github.com)|192.30.253.121|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘0.0.6.zip’
0.0.6.zip [ <=> ] 2.25M 627KB/s in 3.7s
2019-04-11 10:32:29 (627 KB/s) - ‘0.0.6.zip’ saved [2359509]
After download is completed extract the download package using unzip command
root@linuxhelp:~# unzip 0.0.6.zip
Archive: 0.0.6.zip
61d4ba5ff68cfe80e7f5a19d7d0e42d6c242acc0
creating: Landing-CMS-0.0.6/
inflating: Landing-CMS-0.0.6/LICENSE
inflating: Landing-CMS-0.0.6/README.md
creating: Landing-CMS-0.0.6/assets/
creating: Landing-CMS-0.0.6/assets/_cms/
creating: Landing-CMS-0.0.6/assets/_cms/css/
inflating: Landing-CMS-0.0.6/assets/_cms/css/main.css
inflating: Landing-CMS-0.0.6/assets/_cms/css/no_js.css
creating: Landing-CMS-0.0.6/assets/_cms/img/
extracting: Landing-CMS-0.0.6/assets/_cms/img/50-black.png
extracting: Landing-CMS-0.0.6/assets/_cms/img/50-white.png
extracting: Landing-CMS-0.0.6/assets/_cms/img/icon-collapse.png
extracting: Landing-CMS-0.0.6/assets/_cms/img/icon-copy-black.png
.
.
.
Creating: Landing-CMS-0.0.6/cms/login/
inflating: Landing-CMS-0.0.6/cms/login/index.php
creating: Landing-CMS-0.0.6/cms/password/
inflating: Landing-CMS-0.0.6/cms/password/index.php
inflating: Landing-CMS-0.0.6/index.php
inflating: Landing-CMS-0.0.6/install.php
creating: Landing-CMS-0.0.6/modules/
inflating: Landing-CMS-0.0.6/modules/rand_num.php
inflating: Landing-CMS-0.0.6/robots.txt
Move the landing cms directory to apache root directory
ot@linuxhelp:~# mv Landing-CMS-0.0.6 /var/www/landing
Set the ownership and permission for the Landing cms
root@linuxhelp:~# chown -R www-data.www-data /var/www/landing
root@linuxhelp:~# chmod -R 755 /var/www/landing
Create a new virtual host configuration for accessing the Landing cms
root@linuxhelp:~# vim /etc/apache2/sites-available/landing.conf
<Virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/landing
</Virtualhost>
Disable default site access
root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
systemctl reload apache2
Enable the site access for landing cms
root@linuxhelp:~# a2ensite landing.conf
Enabling site landing.
To activate the new configuration, you need to run:
systemctl reload apache2
Enable the rewrite module
root@linuxhelp:~# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2
After completing all the step restart the apache service by using the following command
root@linuxhelp:~# systemctl restart apache2
Now you can proceed the further installation and configuration from the browser by navigating to the following domain name
Welcome page of landing cms. Here click ‘Go to CMS’.
Give password for landing cms.
You will see the landing cms dashboard as show below
With this, the method to install Landing cms 0.0.6 on Ubuntu 18.10 comes to an end
Comments ( 0 )
No comments available