• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install SilverStripe CMS on CentOS 7.6

  • 00:40 rpm -q centos-release
  • 01:02 mysql -u root -p
  • 02:26 unzip SilverStripe-cms-v4.3.3.zip -d sliverstripe
  • 02:46 mv sliverstripe /var/www/
  • 02:59 chown -R apache:apache /var/www/sliverstripe
  • 03:14 chmod -R 755 /var/www/sliverstripe
  • 03:28 vim /etc/httpd/conf.d/sliverstripe.conf
  • 04:43 vim /etc/php.ini
  • 05:08 systemctl restart httpd
5748

To Install SilverStripe CMS On CentOS 7.6

Requirements for SilverStripe CMS:

Apache

Mariadb

Php and Its modules

php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-mcrypt

Installation procedure

Check the Centos version by using the following command

[root@linuxhelp ~]# rpm -q centos-release
centos-release-7-6.1810.2.el7.centos.x86_64

Configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

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

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

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

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

MariaDB [(none)]> Ctrl-C -- exit!
Aborted

Previously download the SilverStripe installation package

[root@linuxhelp ~]# cd Downloads
[root@linuxhelp Downloads]# ll
total 350312
-rwx------ 1 1002 513 358718630 May 22 00:02 SilverStripe-CMS-v4.3.3.zip

Extract the downloaded package using unzip command

[root@linuxhelp Downloads]# unzip SilverStripe-CMS-v4.3.3.zip -d SilverStripe
Archive:  SilverStripe-CMS-v4.3.3.zip
  inflating: SilverStripe/composer.lock  
  inflating: SilverStripe/composer.phar  
   creating: SilverStripe/app/
  inflating: SilverStripe/app/_config.php  
   creating: SilverStripe/app/_config/
.
.
 inflating: SilverStripe/vendor/symfony/translation/.git/objects/pack/pack-858ba734a2e94002da4edc43902cddcc7dc56476.idx  
  inflating: SilverStripe/vendor/symfony/translation/.git/objects/pack/pack-858ba734a2e94002da4edc43902cddcc7dc56476.pack  
  inflating: SilverStripe/vendor/symfony/config/.git/objects/pack/pack-818008b85ec396cd1ff2b0bc92c53a41ec11cec0.idx  
  inflating: SilverStripe/vendor/symfony/config/.git/objects/pack/pack-818008b85ec396cd1ff2b0bc92c53a41ec11cec0.pack

Move the SilverStripe directory to apache root directory

 [root@linuxhelp Downloads]# mv SilverStripe /var/www/

Set the ownership and permission for SilverStripe by using the following command

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

Configure the virtualhost for accessing the SilverStripe

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

Configure the php.ini file

 [root@linuxhelp Downloads]# vim /etc/php.ini
date.timezone = Asia/Kolkata

Restart the apache service by using the following command

[root@linuxhelp Downloads]# systemctl restart httpd

Switch to your browser and enter the domain name snap1 Check the requirements snap2 Configure the database details snap3 Create your admin credentials snap4 Click the installation button snap5 Installation is in process snap6 After the installation you will see the following page snap7 Enter your admin credentials to login SilverStripe CMS snap8 Click to CMS to login the admin page snap9 This is the dashboard of SilverStripe CMS snap10 With this, the method to install silver stripe on Centos 7.6 comes to an end.

Tags:
gibbons
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is a Silver Stripe?

A

SilverStripe is a free and open source Content Management System (CMS) and Framework for creating and maintaining websites and web applications. It provides an out of the box web-based administration panel that enables users to make modifications to parts of the website, which includes a WYSIWYG website editor

Q

What are the php modules required for SilverStripe?

A

These are the modules required for SilverStripe

php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Q

What are their basic requirements for SilverStripe?

A

Requirements for this as below, LAMP Setup -Apache -Mysql -PHP 7

Q

How to configure the Host entry in SilverStripe?

A

Enter into #vim /etc/hosts

Q

How to get the source of the Silver Stripe?

A

Get the source of the Silver Stripe, use the following link as given below "https://www.silverstripe.org/download/"

Related Tutorials in How to Install SilverStripe CMS on CentOS 7.6

Related Tutorials in How to Install SilverStripe CMS on CentOS 7.6

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How to Install SilverStripe CMS on CentOS 7.6

Related Forums in How to Install SilverStripe CMS on CentOS 7.6

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Pligg
aiden class=
CMS : Pligg install on opensuse
Oct 6, 2017
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019

Related News in How to Install SilverStripe CMS on CentOS 7.6

Related News in How to Install SilverStripe CMS on CentOS 7.6

WordPress and Joomla websites infected by new backdoor malware
WordPress and Joomla websites infected by new backdoor malware
May 31, 2019
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.