Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > f4f133081d3c88d98c5fa23f908a135a > files > 2

owncloud-mysql-4.5.13-3.fc18.noarch.rpm

Configure MySQL for ownCloud
============================
Before you can use MySQL as database backend, you need to follow a couple of steps:

1. make sure that your mysql service is configured and running properly
2. log in to mysql as privileged user to create the database and a dedicated user account for ownCloud:
mysql -u root -p
 CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
 CREATE DATABASE IF NOT EXISTS owncloud;
 GRANT ALL PRIVILEGES ON owncloud.* TO 'username'@'localhost' IDENTIFIED BY 'password';

Choose identifier and password accordingly.

Now you can launch the ownCloud setup screen, select MySQL in the advanced settings and fill in your credentials.