How to Install Wolf-CMS on Opensuse15.1
- 00:32 cat /etc/os-release
- 00:48 wget https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip
- 00:57 unzip 0.8.3.1.zip
- 01:08 mv wolfcms-0.8.3.1/ /srv/www/htdocs/wolf
- 01:17 cd /srv/www/htdocs/
- 01:30 chown -R wwwrun. wolf
- 01:42 chmod -R 775 wolf
- 01:58 vim /etc/apache2/conf.d/wolf.conf
- 02:22 mysql -u root -p
- 03:38 systemctl restart apache2
How to install Wolf-CMS on opensuse15.1
Requirements for wolf cms
Apache
Mariadb
PHP
Installation Process:
To check the installed version of OS
LinuxHelp:~ # cat /etc/os-release
NAME="openSUSE Leap"
VERSION="15.1 "
ID="opensuse-leap"
ID_LIKE="suse opensuse"
VERSION_ID="15.1"
PRETTY_NAME="openSUSE Leap 15.1"
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:opensuse:leap:15.1"
BUG_REPORT_URL="https://bugs.opensuse.org"
HOME_URL="https://www.opensuse.org/"
Download the Wolf-CMS through below the link
LinuxHelp:/mnt # wget https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip
--2019-12-07 02:10:20-- https://github.com/wolfcms/wolfcms/archive/0.8.3.1.zip
Resolving github.com (github.com)... 13.234.210.38
Connecting to github.com (github.com)|13.234.210.38|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/wolfcms/wolfcms/zip/0.8.3.1 [following]
--2019-12-07 02:10:21-- https://codeload.github.com/wolfcms/wolfcms/zip/0.8.3.1
Resolving codeload.github.com (codeload.github.com)... 13.127.152.42
Connecting to codeload.github.com (codeload.github.com)|13.127.152.42|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘0.8.3.1.zip’
0.8.3.1.zip [ <=> ] 1.21M 976KB/s in 1.3s
2019-12-07 02:10:22 (976 KB/s) - ‘0.8.3.1.zip’ saved [1264889]
Longlisting current directory
LinuxHelp:/mnt # ls -la
total 1236
drwxr-xr-x 1 root root 22 Dec 7 02:10 .
drwxr-xr-x 1 root root 156 Dec 2 03:38 ..
-rw-r--r-- 1 root root 1264889 Dec 7 02:10 0.8.3.1.zip
Unzip the Downloaded Zip file by using below command
LinuxHelp:/mnt # 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
Move the Extracted Directory under htdocs
LinuxHelp:/mnt # mv wolfcms-0.8.3.1/ /srv/www/htdocs/wolf
Change directory to htdocs
LinuxHelp:/mnt # cd /srv/www/htdocs/
Change Ownership for the Wolf-CMS directory
LinuxHelp:/srv/www/htdocs # chown -R wwwrun. wolf
Change permission for the Zimplit-CMS directory
LinuxHelp:/srv/www/htdocs # chmod -R 775 wolf
Configure Virtual host for Accessing the Wolf-CMS
LinuxHelp:/srv/www/htdocs # vim /etc/apache2/conf.d/wolf.conf
<virtualhost *:80>
servername www.linuxhelp1.com
documentroot "/srv/www/htdocs/wolf"
<directory "/srv/www/htdocs/">
AllowOverride All
Require all granted
</directory>
</virtualhost>
Configure Mysql Database for October-CMS
LinuxHelp:/srv/www/htdocs # mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 19
Server version: 10.2.25-MariaDB SUSE package
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 'wolfusr'@localhost identified by '123456';
Query OK, 0 rows affected (0.05 sec)
MariaDB [(none)]> grant all privileges on wolf.* to 'wolfusr'@localhost;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit
Bye
Then, Restart the Apache service to update the changes
LinuxHelp:/srv/www/htdocs # systemctl restart apache2
To install Wolf-CMS open browser, in address bar type ip address of your system

Click on continue to install

Provide Database credential then click on install now

Copy admin user password and use in admin console



With this, method to install Wolf-CMS on opensuse15.1 comes to end
Comments ( 0 )
No comments available