Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: Cannot modify header information - headers already sent by (output started at /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php:783) in /home/akl1986/public_html/support/wp-includes/feed-rss2.php on line 8
Installing ownCloud 6 on CentOS 6 – AKLWEB HOST LLC Support Center https://support.aklwebhost.com Fri, 06 Dec 2019 19:07:45 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.4 Installing ownCloud 6 on CentOS 6 https://support.aklwebhost.com/knowledgebase/installing-owncloud-6-on-centos-6/ https://support.aklwebhost.com/knowledgebase/installing-owncloud-6-on-centos-6/#respond Fri, 06 Dec 2019 14:24:09 +0000 https://support.aklwebhost.com/?post_type=manual_kb&p=2558 It provides universal access to your files via the web, your computer or your mobile devices — wherever you are. It also provides a platform to easily view and sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web.

The steps on this tutorial will help you to install ownCloud on your CentOS-powered virtual server using Apache, PHP and SQLite. You can use MySQL instead, but it’s easier with SQLite.

Keep on account that you will need root privileges for issuing some of the commands below. If you don’t know what I mean, there is a great tutorial from the community here.

Step 1 — Installing dependencies

Let’s get started with some basic commands to run Apache with PHP (and some necessary modules) on our virtual server. Log into your SSH console as root and issue the following command.

yum -y install httpd php php-gd php-intl php-sqlite php-xml-parser sqlite

Once installed, you will be able to start Apache.

service httpd start

It’s highly recommended to config your system to run Apache whenever your virtual server boots up. This can be done using a simple command.

chkconfig httpd on

That’s all! Go ahead and type your server’s address into your favorite browser to check that Apache is working fine.

Step 2 — Downloading ownCloud

We need to use the wget command for downloading ownCloud. Install wget by issuing the following command.

yum -y install wget

Now that we have wget installed we can use it for downloading the installation files from ownCloud’s website. You can find the latest version of this file by visiting the official site.

wget http://download.owncloud.com/community/owncloud-6.0.0a.tar.bz2

You almost got it! Let’s try uncompressing it with the tar utility.

tar -xjf owncloud-6.0.0a.tar.bz2

Remember to change the version if you have downloaded a newer version during the previous step.

Step 3 — Moving to public

You can move the ownCloud files to your public folder by running a simple command.

mv owncloud /var/www/html

The /var/www/html path is the main directory of your web server, so the ownCloud installation will be accessible from http://yourdomain.com/owncloud. You can change it, it doesn’t matter.

Now we need to set the correct permissions for Apache’s user. This can be done running these three commands.

chown -R apache:apache /var/www/html/owncloud/apps
chown -R apache:apache /var/www/html/owncloud/config
chown -R apache:apache /var/www/html/owncloud/data

Almost done! The final step will be easy, I promise.

Step 4 — Creating your user

If you’ve ran all these commands, your ownCloud installation should be ready to go. Open http://yourdomain.com/owncloud on your browser and fill the registration form. You’re done!

]]>
https://support.aklwebhost.com/knowledgebase/installing-owncloud-6-on-centos-6/feed/ 0