• 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 Wolf CMS 0.8.3.1 on CentOS 7.5

  • 00:57 rpm -q centos-release
  • 01:15 mysql -u root -p
  • 02:35 wget https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip
  • 02:51 unzip 0.8.3.1.zip
  • 03:01 mv wolfcms-0.8.3.1 /var/www/wolf
  • 03:17 chown -R apache:apache /var/www/wolf
  • 03:31 chmod -R 775 /var/www/wolf
  • 03:45 vim /etc/httpd/conf.d/wolf.conf
  • 04:41 systemctl restart httpd
{{postValue.id}}

Installation of wolf cms 0.8.3.1 on centos 7.5

Requirements for wolf cms

Apache
MariaDB
PHP 5.6 and its modules 
(php  php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt php –xml)

Installation procedure

You need to configure the LAMP setup For the Installation of wolf CMS If you dont have the Lamp setup Refer Here

Check the centos version by using the following command

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

Configure the MySQL database for Wolf CMS by executing the following command .

[root@linuxhelp ~]# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
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 wolf;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> create user 'wolfuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> grant all privileges on wolf.* to 'wolfuser'@localhost;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> Ctrl-C -- exit!
Aborted

Download the wolf cms installation package using wget command

[root@linuxhelp ~]# wget https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip
--2019-04-20 05:47:21--  https://github.com/wolfcms/wolfcms/archive/0.8.3.1.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
Location: https://codeload.github.com/wolfcms/wolfcms/zip/0.8.3.1 [following]
--2019-04-20 05:47:22--  https://codeload.github.com/wolfcms/wolfcms/zip/0.8.3.1
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.8.3.1.zip’
    [           <=>                                             ] 1,264,889    404KB/s   in 3.1s   
2019-04-20 05:47:26 (404 KB/s) - ‘0.8.3.1.zip’ saved [1264889]

Once the download is completed extract the downloaded package using unzip command

[root@linuxhelp ~]# unzip 0.8.3.1.zip
Archive:  0.8.3.1.zip
1b5a6c701b781a632e1364d6865946ee94a9002a
   creating: wolfcms-0.8.3.1/
  inflating: wolfcms-0.8.3.1/CONTRIBUTING.md  
  inflating: wolfcms-0.8.3.1/README.md  
  inflating: wolfcms-0.8.3.1/_.htaccess  
  inflating: wolfcms-0.8.3.1/composer.json  
 extracting: wolfcms-0.8.3.1/config.php  
   creating: wolfcms-0.8.3.1/docs/
  inflating: wolfcms-0.8.3.1/docs/exception.txt  
.
.
extracting: wolfcms-0.8.3.1/wolf/plugins/textile/images/preview.png  
 extracting: wolfcms-0.8.3.1/wolf/plugins/textile/images/quotes.png  
 extracting: wolfcms-0.8.3.1/wolf/plugins/textile/images/stroke.png  
  inflating: wolfcms-0.8.3.1/wolf/plugins/textile/index.php  
  inflating: wolfcms-0.8.3.1/wolf/plugins/textile/readme.txt  
  inflating: wolfcms-0.8.3.1/wolf/plugins/textile/textile.css  
  inflating: wolfcms-0.8.3.1/wolf/plugins/textile/textile.php  
  inflating: wolfcms-0.8.3.1/wolf/utils.php  

Move the wolf cms directory to apache root directory

[root@linuxhelp ~]# mv wolfcms-0.8.3.1 /var/www/wolf

Set the ownership and permission for wolf cms directory by using the following command

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

Configure the virtualhost for accessing the wolf cms

[root@linuxhelp ~]# vim /etc/httpd/conf.d/wolf.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        documentroot  /var/www/wolf
</Virtualhost>

Once all the step is completed restart the apache service

[root@linuxhelp ~]# systemctl restart httpd

Switch to your browser and enter your domain name snap1 Click Continue to install option to start the installation process. snap2

Enter the database information and administrator details. snap3 The installation is now completed. Click the login page option to navigate to admin login page. snap4 The Wolf CMS login page appears on the screen. Enter the admin credentials and click Login. snap5 This is the dashboard of wolf cms snap6

With this, the method to install wolf CMS 0.8.3.1 on centos 7.5 comes to end.

Tags:
ryder
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are the basic pre-requirements of Wolf CMS?

A

The basic requirements of Wolf CMS are as follow,
LAMP Setup

-Apache
-Mariadb (create a database, user protected by password)
-PHP 5.6

Q

What is Wolf CMS?

A

Wolf CMS is a free and open-source content management system which has a simple and elegant user interface. Wolf CMS is written in PHP programming language and it is light-weight, fast, simple CMS tool. It also contains features such as archiving, comment section, file manager, markdown, statistics, and SQLite 3.

Q

What are the php modules required for wolf cms?

A

These are the php modules required for (php php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt php –xml)

Q

How to configure hostentry for wolf cms?

A

Enter into vim /etc/hosts


Q

What is the Download link for Wolfcms Latest Build?

A

Please refer the link as follow https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip

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.