<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tiki Wiki &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/tiki-wiki/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.hostry.com</link>
	<description>Full information on how to use HOSTRY, provided by 24/7 community based support</description>
	<lastBuildDate>Thu, 03 Dec 2020 10:20:45 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.12</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>Tiki Wiki &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Install Tiki Wiki CMS Groupware on CentOS 7</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-tiki-wiki-cms-groupware-on-centos-7/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-tiki-wiki-cms-groupware-on-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 15 Apr 2020 07:27:50 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1583</guid>

					<description><![CDATA[Tiki Wiki CMS is also known as Tiki, a completely free wiki management system that has open source code. This manual offers you a quick installation of this CMS for the CentOS 7 operating system Install Apache, MySQL, PHP Tiki runs on top of the LAMP stack. Before installing this [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://tiki.org/">Tiki Wiki</a></em></strong> CMS is also known as Tiki, a completely free wiki management system that has open source code. This manual offers you a quick installation of this CMS for the CentOS 7 operating system</p>



<h2 id="install-apache-mysql-php" > Install Apache, MySQL, PHP</h2>



<p>Tiki runs on top of the LAMP stack. Before installing this cms, you need to install Apache, MySQL, PHP. Install <strong>Apache</strong> Web Server</p>



<pre class="wp-block-code"><code>sudo yum install httpd -y
sudo systemctl enable httpd.service
sudo systemctl start httpd.service</code></pre>



<p>Open ports <strong>80 </strong>and <strong>443 </strong>through the firewall in order to access the server from the Internet</p>



<pre class="wp-block-code"><code>sudo firewall-cmd --permanent --zone=public --add-service=http 
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload</code></pre>



<p>Add <strong>MySQL </strong>repository and install <strong>MySQL</strong></p>



<pre class="wp-block-code"><code>sudo wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
sudo yum install mysql-server -y</code></pre>



<p>Complete MySQL installation</p>



<pre class="wp-block-code"><code>sudo systemctl enable mysqld.service
sudo systemctl start mysqld.service
sudo mysql_secure_installation</code></pre>



<p>Next, the current password will be requested, during installation you will be asked to enter your root password.</p>



<pre class="wp-block-code"><code>Set root password? [Y/n] Y    
New password: &lt;Your Password>
Re-enter new password: &lt;Your Password>
Remove anonymous users? [Y/N] Y
Disallow root login remotely? [Y/N] Y
Remove test database and access to it? [Y/N] Y
Reload privilege tables now? [Y/N] Y</code></pre>



<p>Add the Remi repository and install <strong>PHP 7.2</strong> and all the necessary <strong>PHP </strong>modules that are also necessary for <strong>Tiki CMS</strong></p>



<pre class="wp-block-code"><code>sudo rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
sudo yum -y install yum-utils
sudo yum-config-manager --enable remi-php72
sudo yum install php-curl php libapache2-mod-php php-common php-sqlite3 php-intl php-mbstring php-xmlrpc php-mysql php-gd php-xml php-cli php-zip -y</code></pre>



<h2 id="create-mysql-database-for-tiki" >Create MySQL Database for Tiki</h2>



<p>Tiki requires a MySQL database. Log in to the MySQL console</p>



<pre class="wp-block-code"><code>sudo mysql -u root -p</code></pre>



<p>Next, you will be prompted to enter a password, then you must enter the root password for MySQL that you installed earlier (this was written in the previous step). After you have successfully logged in, create a MySQL database for Tiki</p>



<pre class="wp-block-code"><code>mysql>CREATE DATABASE tiki;</code></pre>



<p>Create a new MySQL user and give him privileges (you can replace username and password) with the data of your choice</p>



<pre class="wp-block-code"><code>mysql>GRANT ALL PRIVILEGES ON tiki.* TO 'username'@'localhost' IDENTIFIED BY 'password';
mysql>FLUSH PRIVILEGES;</code></pre>



<p>Log in to the MySQL console</p>



<pre class="wp-block-code"><code>mysql>exit</code></pre>



<h2 id="download-and-install-tiki" >Download and install Tiki</h2>



<p>Download the latest version of Tiki</p>



<pre class="wp-block-code"><code>sudo cd /var/www/html
sudo wget https://sourceforge.net/projects/tikiwiki/files/latest/download</code></pre>



<p>Unzip the downloaded archive and move all the files to the root of the Apache web server</p>



<pre class="wp-block-code"><code>sudo yum install unzip -y
sudo unzip download
sudo mv ./tiki-19.1/* . &amp;&amp; rm -rf download &amp;&amp; rm -rf tiki-19.1</code></pre>



<p>Set appropriate permissions for files</p>



<pre class="wp-block-code"><code>sudo chown -R apache:apache /var/www/html/
sudo chmod -R 755 /var/www/html/</code></pre>



<h2 id="configure-apache-for-tiki" >Configure Apache for Tiki</h2>



<p>Create Apache Virtual Host Configuration File</p>



<pre class="wp-block-code"><code>sudo vi /etc/httpd/conf.d/vhost.conf</code></pre>



<p>Add the following fragment to the file. You must replace <strong>example.com</strong> with your domain name</p>



<pre class="wp-block-code"><code>&lt;VirtualHost *:80>
     DocumentRoot /var/www/html/
     ServerName example.com
     &lt;Directory /var/www/html/>
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory>
     ErrorLog /var/log/httpd/error.log
     CustomLog /var/log/httpd/access.log combined
&lt;/VirtualHost></code></pre>



<p>Restart  Apache web server</p>



<pre class="wp-block-code"><code>sudo systemctl restart httpd.service</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-tiki-wiki-cms-groupware-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
