Giter Club home page Giter Club logo

owncloud's Introduction

ownCloud Quickstart Guide

This document provides guidance for administrators who want to install and configure an ownCloud server and make it available to desktop and mobile clients.

For detailed instructions about deploying ownCloud, be sure to read the ownCloud Server Administration Manual.

Installing and configuring an ownCloud server

System requirements

You can install the ownCloud server on a range of Linux operating systems. Be sure that computer where you install the server meets the minimum requirements. For more information, see System requirements.

Downloading the server ownCloud server

Enabling connections to an ownCloud server

Adding user accounts

Connecting clients to an ownCloud server

Client applications are available for Microsoft Windows, Mac OS X, and Linux. Mobile clients are available for the Android and Apple iOS operating systems.

Download the desktop client

Download the mobile client

owncloud's People

Watchers

 avatar

owncloud's Issues

Create DB

Issue the command:

sudo mysql -u root -p

When prompted enter your sudo password and then the MySQL root user password. [When do I set the sql root user and pwd?]

When you are in the database command prompt, create the database with the command:

CREATE DATABASE owncloud;

Next create a new database user with the command:

CREATE USER 'ownclouduser'@'localhost' IDENTIFIED BY 'PASSWORD';

Where PASSWORD is a strong password for the user.

Give the new user permissions for the new database with the command:

GRANT ALL ON owncloud.* TO 'ownclouduser'@'localhost' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION;

Where PASSWORD is a strong password for the user.

Flush the privileges and exit the database shell with the commands:

FLUSH PRIVILEGES;
EXIT;

Modify default port

in /etc/apache2/ports.conf, change the port from 'Listen 80' to 'Listen 8080'.

Then, in /etc/apache2/sites-enabled/000-default.conf

change the first line to <VirtualHost *: 8080>

Now restart

sudo service apache2 restart

Installing dependencies

full suite of php packages must be upgraded to 7.2

On installation of Ubuntu 18.04, the PHP release is PHP 7.2-7-1. Make sure that all PHP modules are at 7.2 flavor. For this, we'll issue the command:

sudo apt install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-apcu php7.2-smbclient php7.2-ldap php7.2-redis php7.2-gd php7.2-xml php7.2-intl php7.2-json php7.2-imagick php7.2-mysql php7.2-cli php7.2-mcrypt php7.2-ldap php7.2-zip php7.2-curl

If some modules aren't found, remove them and then re-run.

Convert to MD

Alternate plan if unable to fulfill original intent of publishing asciidoc version of content. Or consider publishing as a gist, which I believe provides full support for asciidoc by default.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.