• 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 Tiki Wiki CMS on CentOS 7.5

  • 00:47 rpm -q centos-release
  • 00:47 rpm -q centos-release
  • 01:02 mysql -u root -p
  • 01:02 mysql -u root -p
  • 02:16 wget https://nchc.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
  • 02:16 wget https://nchc.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
  • 02:33 unzip tiki-18.2.zip
  • 02:33 unzip tiki-18.2.zip
  • 02:46 mv tiki-18.2 /var/www/tiki
  • 02:46 mv tiki-18.2 /var/www/tiki
  • 02:57 chown -R apache:apache /var/www/tiki
  • 02:57 chown -R apache:apache /var/www/tiki
  • 03:14 chmod -R 755 /var/www/tiki
  • 03:14 chmod -R 755 /var/www/tiki
  • 03:27 vim /etc/httpd/conf.d/tiki.conf
  • 03:27 vim /etc/httpd/conf.d/tiki.conf
  • 04:34 systemctl restart httpd
  • 04:34 systemctl restart httpd
{{postValue.id}}

Installation of Tiki Wiki CMS on Centos 7.5

Requirements for Tiki Wiki 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-5.1804.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 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 tikidb;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user 'tikiuser'@localhost identified by '123456';
Query OK, 0 rows affected (0.03 sec)

MariaDB [(none)]> grant all privileges on tikidb.* to 'tikiuser'@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

Once the database configuration is done, download the installation package of Tiki Wiki CMS by using the wget command. The download link is given in the command.

[root@linuxhelp ~]# wget https://nchc.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
--2019-05-16 14:59:48--  https://nchc.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip
Resolving nchc.dl.sourceforge.net (nchc.dl.sourceforge.net)... 211.79.60.17, 2001:e10:ffff:1f02::17
Connecting to nchc.dl.sourceforge.net (nchc.dl.sourceforge.net)|211.79.60.17|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 53235353 (51M) [application/octet-stream]
Saving to: ‘tiki-18.2.zip’

100%[==========================================================>] 53,235,353   639KB/s   in 2m 14s 

2019-05-16 15:02:04 (389 KB/s) - ‘tiki-18.2.zip’ saved [53235353/53235353]

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

[root@linuxhelp ~]# unzip tiki-18.2.zip
Archive:  tiki-18.2.zip
   creating: tiki-18.2/
  inflating: tiki-18.2/tiki-print_pages.php  
  inflating: tiki-18.2/tiki-list_trackers.php  
  inflating: tiki-18.2/tiki-file_archives.php  
  inflating: tiki-18.2/tiki-user_assigned_modules.php  
.
.
  inflating: tiki-18.2/vendor_extra/anythingslider-themes/images/bkgd-leather.jpg  
 extracting: tiki-18.2/vendor_extra/anythingslider-themes/images/tabs-dark2.png  
  inflating: tiki-18.2/vendor_extra/anythingslider-themes/images/polished.png  
   creating: tiki-18.2/vendor_extra/webodf/
  inflating: tiki-18.2/vendor_extra/webodf/webodf.js  
  inflating: tiki-18.2/vendor_extra/index.php  
  inflating: tiki-18.2/tiki-minichat_ajax.php

Move the Tiki Wiki CMS directory to apache root directory.

[root@linuxhelp ~]# mv tiki-18.2 /var/www/tiki

Set the ownership and permission for Tiki Wiki CMS by using the following command.

[root@linuxhelp ~]# chown -R apache:apache /var/www/tiki

[root@linuxhelp ~]# chmod -R 755 /var/www/tiki

Configure the virtualhost for accessing the Tiki Wiki CMS.

[root@linuxhelp ~]# vim /etc/httpd/conf.d/tiki.conf

<Virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/tiki
<directory /var/www/tiki>
allowoverride all
allow from all
</directory>
</Virtualhost>

Restart the apache service by using the following command.

[root@linuxhelp ~]# systemctl restart httpd

Switch to your browser and enter the domain name. snap1 The Welcome document of Tiki wiki CMS will appear on your screen. Select the required language and proceed further. snap2 Accept the license agreement. snap3 Verify the requirements. snap4 Configure the database detail. snap5 And then choose the database type to proceed the installation. snap6 After the installation is completed you will see the following page as shown below snap7 Next, configure the site information and Admin user credential setup. snap8 snap9 You will see that last note of Tiki Wiki CMS. snap10 After all the configuration setup done you will see the following page, enter into Tiki Wiki CMS.
snap11 Create your admin password after the installation complete and login into Tiki Wiki CMS. snap12 After verifying all the configuration setup you can start the Tiki Wiki CMS. snap13 You'll be taken to the dashboard of Tiki Wiki CMS. snap14 With this, the method to install Tikiwiki CMS on Centos 7.5 comes to an end.

Tags:
kishore
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are the requirements for Tiki wiki cms?

A

These are the requirements for Tiki wiki cms
Apache
Mysql
Php and its modules

Q

Where to download the package of Tiki wiki in ubuntu?

A

Download a Tiki wiki package using the following URL
wget https://excellmedia.dl.sourceforge.net/project/tikiwiki/Tiki_18.x_Alcyone/18.2/tiki-18.2.zip

Q

What are the php modules required for tiki wiki cms?

A

These are the required modules for tiki wiki cms
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

How to entry to the hosts file for Tiki wiki cms?

A

use the following command to entry the host file
# vim /etc/hosts

Q

What is the use of tiki wiki cms?

A

Tiki Wiki is a free and open source Wiki-based Content Management System written in PHP. It contains a number of collaboration features and acts as a Geospatial Content Management System (GeoCMS). It also contains some basic features of a CMS and maintains individual user accounts within a flexible and rich privilege system, RSS feeds and customize page layout.

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 Lucas ?
Various options in Top command

Am using Top command only to view the load average, what are the various options in Top command..??

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.