• 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 October CMS on Centos 7.6

  • 01:10 mysql -u root -p
  • 02:07 wget http://octobercms.com/download
  • 02:18 unzip download
  • 02:53 vim /etc/httpd/conf.d/october.conf
  • 03:13 systemctl restart httpd
{{postValue.id}}

Installation Of October CMS Through wizard On CentOS 7.6

October is a free, open-source,self-hosted CMS platform based on the Laravel PHP Framework. It brings you the power of Laravel with the simplicity of pure HTML.you can reuse the CMS components.we can use our favourite code editor and usual workflow for creating and updating websites. This article covers the tutorial on Installation Of October CMS On CentOS 7.6 Through Wizard method.

Features:

Simplicity

Flexbilty

Modern Design

Universal extendable DashBoard

Installation Method:

Wizard

Requirements:

LAMP Stack

PHP version 7.0 or higher

PHP Modules:

php-pdo php-curl php-openssl php-mbstring php-pecl-zip php-gd

Download Link:

http://octobercms.com/download

Installation

Before you begin the installation process, configure MariaDB for October CMS.

[root@linuxhelp ~]# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 36
Server version: 10.1.39-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 october character set utf8mb4;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> use october;
Database changed

MariaDB [october]> create user ouser@localhost identified by 'linuxc';
Query OK, 0 rows affected (0.00 sec)

MariaDB [october]> grant all on october.* to ouser@localhost;
Query OK, 0 rows affected (0.00 sec)

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

MariaDB [october]> exit
Bye

Change the directory to Apache’s Document root directory.

 [root@linuxhelp ~]# cd /var/www

Create a directory for October CMS.

[root@linuxhelp www]# mkdir october

Change the directory to october.

 [root@linuxhelp www]# cd october/

Download October CMS using wget command through wizard installation link as follows.

[root@linuxhelp october]# wget http://octobercms.com/download
--2019-05-07 14:33:12--  http://octobercms.com/download
Resolving octobercms.com (octobercms.com)... 54.68.25.146, 52.37.223.30
Connecting to octobercms.com (octobercms.com)|54.68.25.146|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://octobercms.com/download [following]
--2019-05-07 14:33:12--  https://octobercms.com/download
Connecting to octobercms.com (octobercms.com)|54.68.25.146|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github.com/octobercms/install/archive/master.zip [following]
--2019-05-07 14:33:13--  https://github.com/octobercms/install/archive/master.zip
Resolving github.com (github.com)... 192.30.253.112
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/octobercms/install/zip/master [following]
--2019-05-07 14:33:15--  https://codeload.github.com/octobercms/install/zip/master
Resolving codeload.github.com (codeload.github.com)... 192.30.253.121
Connecting to codeload.github.com (codeload.github.com)|192.30.253.121|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 142048 (139K) [application/zip]
Saving to: ‘download’

100%[===================================================================================================>] 142,048     94.7KB/s   in 1.5s   

2019-05-07 14:33:17 (94.7 KB/s) - ‘download’ saved [142048/142048]

List the contents to check the downloaded file of October CMS.

[root@linuxhelp october]# ll
total 140
-rw-r--r-- 1 root root 142048 May  7 14:33 download
```

</ads2>

**Extract the  file of October CMS**
```

[root@linuxhelp october]# unzip download
Archive:  download
a22862c946062193b43e00a459ccadd4cb00896d
   creating: install-master/
 extracting: install-master/.gitignore  
  inflating: install-master/README.md  
  inflating: install-master/install.php  
   creating: install-master/install_files/
   creating: install-master/install_files/css/
.
.
.
.
.  
   creating: install-master/install_files/php/
  inflating: install-master/install_files/php/Installer.php  
  inflating: install-master/install_files/php/InstallerException.php  
  inflating: install-master/install_files/php/InstallerRewrite.php  
  inflating: install-master/install_files/php/boot.php  
```

```
[root@linuxhelp october]# ll
total 140
-rw-r--r-- 1 root root 142048 May  7 14:33 download
drwxr-xr-x 3 root root     81 Mar  7 13:40 install-master
```

**Change the directory to install-master.**
```
[root@linuxhelp october]# cd install-master/
```

**List the contents to check the extracted files.**
```
[root@linuxhelp install-master]# ll
total 12
drwxr-xr-x 7 root root   68 Mar  7 13:40 install_files
-rw-r--r-- 1 root root 8077 Mar  7 13:40 install.php
-rw-r--r-- 1 root root 1059 Mar  7 13:40 README.md
```

**Assign Ownership permissions to the install-master directory.**
```
[root@linuxhelp install-master]# chown -R apache. ./
```

**Assign Writable permissions to the install-master directory.**
```
[root@linuxhelp install-master]# chmod -R 775 ./
```

**List the contents to check the installation.**
```
[root@linuxhelp install-master]# ll
total 12
drwxrwxr-x 7 apache apache   68 Mar  7 13:40 install_files
-rwxrwxr-x 1 apache apache 8077 Mar  7 13:40 install.php
-rwxrwxr-x 1 apache apache 1059 Mar  7 13:40 README.md
```

**Create a customised configuration file for October CMS.**
```
[root@linuxhelp install-master]# vim /etc/httpd/conf.d/october.conf
<virtualhost *:80>
servername www.linuxhelp1.com
documentroot /var/www/october/install-master/

<directory /var/www/october/install-master/>
allowoverride all
allow from all
</directory>
</virtualhost>
```

**Restart the service Of Apache.**
```
[root@linuxhelp install-master]# systemctl restart httpd
```

**Open the browser and enter the servername followed by install.php**
![snap (1)](https://assets.linuxhelp.com/scr/2c90665bcac037d427894f50466bd14f.png)
**Agree to the license terms once you are done checking the system requirements. **
![snap (2)](https://assets.linuxhelp.com/scr/adca048c3b918c031aa0e66b03ce7ae2.png)
![snap (3)](https://assets.linuxhelp.com/scr/14614f07f0a90c73c25bc5bb07045829.png)
**Enter the database details that have configured inside the MariaDB for October CMS, click Administrator.**
![snap (4)](https://assets.linuxhelp.com/scr/9954b9cac8a902745533c05c36906c51.png)
![snap (5)](https://assets.linuxhelp.com/scr/3edd4f173f7e7a2316352152c1d8f279.png)
**Enroll the admin credentials to access the October CMS backend area.**
![snap (6)](https://assets.linuxhelp.com/scr/7366fcf597a807291bd63810fc85d1a0.png)
![snap (7)](https://assets.linuxhelp.com/scr/9458010cb9f34b5717e115088d1598aa.png)
**Select Start from Scratch to set up the site**
![snap (8)](https://assets.linuxhelp.com/scr/1b22a0ea32a6a718f0698386d28c21d8.png)
**October CMS Installation is finished and clicks on servername followed by backend.**
![snap (9)](https://assets.linuxhelp.com/scr/15a22d08da535b75441f27f391399011.png)
**Enter the login credentials of admin’s account** 
![snap (10)](https://assets.linuxhelp.com/scr/71f31763b3e517cb9160cfb7126620ce.png)
**The backend area of Admin’s account has opened successfully**
![snap (11)](https://assets.linuxhelp.com/scr/4868a58eae20edd0d7aa3601886219cc.png)
**Therefore, Installation Of October CMS On CentOS 7.6 through Wizard method comes to an end.**

Tags:
lincoln
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

In How Many ways we can install the October CMS?

A

There are two ways we could install the October CMS.
*Command-line Installation
* Wizard Installation

Q

Is the database needed for October CMS?

A

Yes, the database is essential for October CMS to store the data.

Q

What is an Inspector In October CMS?

A

An Inspector is a visual tool for managing component properties.

Q

What is a component in October CMS?

A

Components are building blocks for pages in October CMS.

Q

Can we manage the websites without programming knowledge in October CMS?

A

Yes. Non-technical users can manage page contents with the WYSIWYG editor, manage images, videos and other files In October CMS.

Load more

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 Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

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.