<?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>Pydio Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/pydio/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Tue, 05 Mar 2019 15:03:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install Pydio on CentOS 7?</title>
		<link>https://www.osradar.com/how-to-install-pydio-on-centos-7/</link>
					<comments>https://www.osradar.com/how-to-install-pydio-on-centos-7/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 05 Mar 2019 15:03:07 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nextcloud]]></category>
		<category><![CDATA[Owncloud]]></category>
		<category><![CDATA[Pydio]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11293</guid>

					<description><![CDATA[<p>Data is essential in a company. Luckily, there are open source tools that allow us to create our own data servers in the best Dropbox or Google Drive style. Among them we have Owncloud or Nextcloud, but there is an alternative to them that puts more focus on companies. With this in mind, today I [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-pydio-on-centos-7/">How to install Pydio on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Data is essential in a company. Luckily, there are open source tools that allow us to create our own data servers in the best Dropbox or Google Drive style. Among them we have Owncloud or Nextcloud, but there is an alternative to them that puts more focus on companies. With this in mind, today I will teach you how to install Pydio on CentOS 7.</p>
<p><a href="https://pydio.com/" target="_blank" rel="noopener noreferrer">Pydio</a> is an application that allows you to synchronize files between different devices. In general, we can say that it allows us to mount our own cloud. It is a valid and mature alternative to <a href="https://www.osradar.com/how-to-install-owncloud-in-centos-7/" target="_blank" rel="noopener noreferrer">Owncloud</a> and <a href="https://www.osradar.com/how-to-install-nextcloud-in-ubuntu-18-04/" target="_blank" rel="noopener noreferrer">Nextcloud</a>. Like them, it is open source and has a great community support.</p>
<p>So, let us start.</p>
<h1>1. Install Apache web server and PHP</h1>
<p>First, you need to install an http server such as Apache. It is also possible to use Nginx. However, choose Apache.</p>
<p>So, open a terminal or connect to your server and execute these commands:</p>
<pre>:~$ su
:~# yum install httpd</pre>
<figure id="attachment_11294" aria-describedby="caption-attachment-11294" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11294" src="https://www.osradar.com/wp-content/uploads/2019/03/1-2.png" alt="1.- Install httpd" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/1-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/1-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11294" class="wp-caption-text">1.- Install httpd</figcaption></figure>
<p>Then you need to install PHP. The problem here is that the version of PHP that comes with CentOS 7 is very old and needs to be updated through an external repository. To do this, follow <a href="https://www.osradar.com/how-to-install-php-7-on-centos-7-in-an-easy-way/" target="_blank" rel="noopener noreferrer">our guide</a>.</p>
<p>In order for pydio to work optimally, it is necessary to modify some values in the PHP configuration.</p>
<pre>:~# yum install nano
:~# nano /etc/php.ini</pre>
<p>And set this configuration:</p>
<pre>max_execution_time = 300
post_max_size = 200M
upload_max_filesize = 200M
output_buffering = Off</pre>
<p>Using nano you can type CTRL + W and search for the each parameter.</p>
<p>Next, start and enable Apache.</p>
<pre>:~# systemctl enable httpd
:~# systemctl start httpd</pre>
<p>Finally, set the Firewall rule to allow Apache.</p>
<pre>:~# firewall-cmd --add-port=80/tcp --permanent
:~# firewall-cmd --reload</pre>
<figure id="attachment_11295" aria-describedby="caption-attachment-11295" style="width: 1070px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11295" src="https://www.osradar.com/wp-content/uploads/2019/03/2-2.png" alt="2.- Working with httpd service" width="1070" height="228" srcset="https://www.osradar.com/wp-content/uploads/2019/03/2-2.png 1070w, https://www.osradar.com/wp-content/uploads/2019/03/2-2-300x64.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/2-2-768x164.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/2-2-1024x218.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/2-2-696x148.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/2-2-1068x228.png 1068w" sizes="(max-width: 1070px) 100vw, 1070px" /><figcaption id="caption-attachment-11295" class="wp-caption-text">2.- Working with httpd service</figcaption></figure>
<h1>2. Install MariaDB</h1>
<p>Now you have to install MariaDB to store Pydio&#8217;s data. This is important because otherwise you will not be able to continue.</p>
<p>So let&#8217;s go for it.</p>
<pre>:~# yum install mariadb-server</pre>
<figure id="attachment_11296" aria-describedby="caption-attachment-11296" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11296" src="https://www.osradar.com/wp-content/uploads/2019/03/3-2.png" alt="3.- Install mariadb" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/3-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/3-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11296" class="wp-caption-text">3.- Install mariadb</figcaption></figure>
<p>After that, start and enable the MariaDB service.</p>
<pre>:~# systemctl enable mariadb
:~# systemctl start mariadb</pre>
<figure id="attachment_11297" aria-describedby="caption-attachment-11297" style="width: 1020px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11297" src="https://www.osradar.com/wp-content/uploads/2019/03/4-2.png" alt="4.- Enabling mariadb" width="1020" height="146" srcset="https://www.osradar.com/wp-content/uploads/2019/03/4-2.png 1020w, https://www.osradar.com/wp-content/uploads/2019/03/4-2-300x43.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/4-2-768x110.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/4-2-696x100.png 696w" sizes="(max-width: 1020px) 100vw, 1020px" /><figcaption id="caption-attachment-11297" class="wp-caption-text">4.- Enabling mariadb</figcaption></figure>
<p>Then, set a root password in order to user MariaDB.</p>
<pre>:~# mysql_secure_installation</pre>
<figure id="attachment_11298" aria-describedby="caption-attachment-11298" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11298" src="https://www.osradar.com/wp-content/uploads/2019/03/5-2.png" alt="5.- Mysql_secure_installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/5-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/5-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11298" class="wp-caption-text">5.- Mysql_secure_installation</figcaption></figure>
<p>As you can see in the image, after defining a password for the root user in MariaDB, the script will ask some configuration questions, so I have answered Y, N, Y, Y. Do it as you prefer.</p>
<p>Next, you need to create the new user and database for Pydio.</p>
<pre>:~# mysql -u root -p
myslq&gt; CREATE DATABASE pydiodb;
myslq&gt; GRANT ALL PRIVILEGES ON pydiodb.* TO 'pydiouser'@'localhost' IDENTIFIED BY 'pydiopss';
mysql&gt; FLUSH PRIVILEGES;
mysql&gt; exit;</pre>
<figure id="attachment_11299" aria-describedby="caption-attachment-11299" style="width: 889px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11299" src="https://www.osradar.com/wp-content/uploads/2019/03/6-1.png" alt="6.- Creating the database" width="889" height="414" srcset="https://www.osradar.com/wp-content/uploads/2019/03/6-1.png 889w, https://www.osradar.com/wp-content/uploads/2019/03/6-1-300x140.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/6-1-768x358.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/6-1-696x324.png 696w" sizes="(max-width: 889px) 100vw, 889px" /><figcaption id="caption-attachment-11299" class="wp-caption-text">6.- Creating the database</figcaption></figure>
<h1>3. Install Pydio on CentOS 7</h1>
<p>There is a great way to install Pydo and that is through its repository. With this we will be able to install it using yum, the CentOS 7 package manager.</p>
<p>First, add the repository with the following command:</p>
<pre>:~# rpm -Uvh http://dl.ajaxplorer.info/repos/pydio-release-1-1.noarch.rpm</pre>
<figure id="attachment_11300" aria-describedby="caption-attachment-11300" style="width: 856px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11300" src="https://www.osradar.com/wp-content/uploads/2019/03/7-1.png" alt="7.- Adding the pydio repository" width="856" height="176" srcset="https://www.osradar.com/wp-content/uploads/2019/03/7-1.png 856w, https://www.osradar.com/wp-content/uploads/2019/03/7-1-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/7-1-768x158.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/7-1-696x143.png 696w" sizes="(max-width: 856px) 100vw, 856px" /><figcaption id="caption-attachment-11300" class="wp-caption-text">7.- Adding the pydio repository</figcaption></figure>
<p>Next update the repositories cache. And install Pydio.</p>
<pre>:~# yum update
:~# yum install pydio</pre>
<figure id="attachment_11302" aria-describedby="caption-attachment-11302" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11302" src="https://www.osradar.com/wp-content/uploads/2019/03/9-1.png" alt="9.- Install Pydio on CentOS" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/9-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/9-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11302" class="wp-caption-text">9.- Install Pydio on CentOS</figcaption></figure>
<p>In order for Apache to run Pydio better, an extra configuration is required. So, use nano to modify the apache file for Pydio.</p>
<pre>:~# nano /etc/httpd/conf.d/pydio.conf</pre>
<p>Comment the default configuration and add the following:</p>
<pre>&lt;Directory /usr/share/pydio&gt;
    Options FollowSymlinks
    AllowOverride none
    Require all granted
&lt;/Directory&gt;</pre>
<figure id="attachment_11303" aria-describedby="caption-attachment-11303" style="width: 884px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11303" src="https://www.osradar.com/wp-content/uploads/2019/03/10-1.png" alt="10.- Apache configuration file for pydio" width="884" height="471" srcset="https://www.osradar.com/wp-content/uploads/2019/03/10-1.png 884w, https://www.osradar.com/wp-content/uploads/2019/03/10-1-300x160.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/10-1-768x409.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/10-1-696x371.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/10-1-788x420.png 788w" sizes="(max-width: 884px) 100vw, 884px" /><figcaption id="caption-attachment-11303" class="wp-caption-text">10.- Apache configuration file for pydio</figcaption></figure>
<p>Then, restart Apache to apply the changes.</p>
<pre>:~# systemctl restart httpd</pre>
<h1>4. Complete the installation using the web interface</h1>
<p>After doing all of the above, all you have to do is open your web browser and access your server. You can do it through the domain of the IP address.</p>
<figure id="attachment_11304" aria-describedby="caption-attachment-11304" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11304" src="https://www.osradar.com/wp-content/uploads/2019/03/11-1.png" alt="11.- Start the wizard" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/11-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11304" class="wp-caption-text">11.- Start the wizard</figcaption></figure>
<h1>Conclusion</h1>
<p>As we can notice, installing Pydio is an easy matter that can help us in the company&#8217;s data management. It arises as a mature alternative to tools known as Owncloud and Nextcloud.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-pydio-on-centos-7/">How to install Pydio on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-pydio-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
