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
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
Click Continue to install option to start the installation process.

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

With this, the method to install wolf CMS 0.8.3.1 on centos 7.5 comes to end.
Comments ( 0 )
No comments available