• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to Install subrion cms on centos 8

  • 00:39 rpm -q centos-release
  • 00:52 wget https://github.com/intelliants/subrion/archive/develop.zip
  • 01:14 unzip develop.zip
  • 01:26 mv subrion-develop/ /var/www/subrion
  • 01:39 chown -R apache:apache /var/www/subrion
  • 01:53 chmod -R 755 /var/www/subrion/
  • 02:05 vim /etc/httpd/conf.d/subrion.conf
  • 03:14 mysql -u root -p
  • 04:35 systemctl restart httpd
{{postValue.id}}

How to Install subrion cms on centos 8

Subrion CMS is a free and open source CMS developed using PHP and MySQl database. It comprises of WYSIWYG editors which are a great way for publishing content these days. They follow SEO Concepts to make your content SEO-friendly as possible. This tutorial covers method to install Subrion CMS On CentOS 8.

Installation process :

Check the CentOS version by using the following command

[root@linuxhelp ~]# rpm -q centos-release
centos-release-8.1-1.1911.0.8.el8.x86_64

Before the installation, you need to download the Subrion installation package.

 [root@linuxhelp ~]# wget https://github.com/intelliants/subrion/archive/develop.zip
--2020-09-04 16:40:14--  https://github.com/intelliants/subrion/archive/develop.zip
Resolving github.com (github.com)... 13.234.176.102
Connecting to github.com (github.com)|13.234.176.102|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/intelliants/subrion/zip/develop [following]
--2020-09-04 16:40:14--  https://codeload.github.com/intelliants/subrion/zip/develop
Resolving codeload.github.com (codeload.github.com)... 13.233.43.20
Connecting to codeload.github.com (codeload.github.com)|13.233.43.20|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘develop.zip’

develop.zip                [         <=>                ]  11.46M  1.01MB/s    in 12s     

2020-09-04 16:40:27 (946 KB/s) - ‘develop.zip’ saved [12020442]

Once the download is completed, extract the Subrion by using the following command

[root@linuxhelp ~]# unzip develop.zip
Archive:  develop.zip
296ddae2c0d62a378014884436f49e466c80965c
  creating: subrion-develop/
 inflating: subrion-develop/.gitignore  
 inflating: subrion-develop/.htaccess  
 inflating: subrion-develop/CONTRIBUTING.md  
 inflating: subrion-develop/README.md  
  creating: subrion-develop/admin/
 inflating: subrion-develop/admin/actions.php  
 inflating: subrion-develop/admin/adminer.php  
.
.
 inflating: subrion-develop/templates/kickstart/registration.tpl  
 inflating: subrion-develop/templates/kickstart/render-menu.tpl  
  creating: subrion-develop/updates/
extracting: subrion-develop/updates/.htaccess  
  creating: subrion-develop/uploads/
 inflating: subrion-develop/uploads/.htaccess  

Move the Subrion directory to apache root directory

[root@linuxhelp ~]# mv subrion-develop/ /var/www/subrion

Set the ownership and permission for Subrion CMS

[root@linuxhelp ~]# chown -R apache:apache /var/www/subrion
[root@linuxhelp ~]# chmod -R 755 /var/www/subrion/

Configure the virtualhost for Subrion CMS

 [root@linuxhelp ~]# vim /etc/httpd/conf.d/subrion.conf
<virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/subrion
<directory /var/www/subrion>
allowoverride all
allow from all
</directory>
</virtualhost>

Now need to create a database for Subrion CMS

 [root@linuxhelp ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 16
Server version: 10.3.17-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database subrion_db;
Query OK, 1 row affected (0.001 sec)

MariaDB [(none)]> create user 'subrion_user'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (0.026 sec)

MariaDB [(none)]> grant all privileges on subrion_db.* to 'subrion_user'@localhost;
Query OK, 0 rows affected (0.001 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.001 sec)

MariaDB [(none)]> exit
Bye

Once all setup is completed restart the Apache service

 [root@linuxhelp ~]# systemctl restart httpd

Once you have done it, go to the browser and enter the domain name. snap1 This is the requirement for Subrion cms snap2 snap3 Accept the license and click next
snap4 Configure the database details here snap5 Configure the admin credentials here snap6 The installation is completed go to the admin panel snap7 Enter the admin credentials to login the subroin cms snap8 *This is the dashboard of subrion cms 9 With this the installation of subrion cms comes to end.

Tags:
gabriel
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are all the Prerequisites in Subrion cms ?

A

Requirements are,
To install LAMP(Apache, MariaDB, and php7.0)
In MariaDB (create database and user and give privileges to that user )
Php installation with required following modules

Q

What is Subrion cms?

A

Subrion is a user-friendly, open source content management system and framework application. It is based on php and uses MySQL Database. That allows you to build websites and create and manage your content on every device.

Q

Where I'm an entry with the data in Subrion cms?

A

To entry with the host file:
# vim /etc/hosts

Q

Is Subrion CMS encrypted?

A

No, Subrion CMS is a free open source cms for your projects. It's licensed GPL v3 and we don't encrypt it.

Q

Is Landing CMS Opensource Application?

A

Landing CMS is free and opensource application.

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Ganesh Konka ?
Zentya 6.1 http proxy configuration

please send link for creating zentyal 6.1 for http proxy and firewall as gateway.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.