I tried to install owncloud 9.1.0 on my FreeBSD 9.2 RELEASE server. I installed apache 2.4 with php 5.6.
Steps to reproduce
- I untar the owncloud-9.1.0.tar.bz2 file in my web directory
- I create the user owncloud in database with
CREATE USER ‘owncloud’@‘localhost’ IDENTIFIED BY ‘mot_de_passe’; - I create the owncloud database with
CREATE DATABASE owncloud; - I give the privilege to the user owncloud with
GRANT ALL on owncloud.* TO ‘owncloud’@‘localhost’; - Then, with my web browser, I see the installation owncloud page on “http://IP_du_serveur/owncloud”
- I fil the data (“Créer un compte admnistrateur”, … with using a mysql database)
- I clic on “Terminer Installation”
- I wait 2 minutes and then nothing… (the database is created with all tables and admin user)
- I try to reload the “http://IP_du_serveur/owncloud” but it’s seems the installation not working.
Expected behaviour
Normally, I’ll see the owncloud interface
Actual behaviour
I see the installation page
Server configuration
Operating system: FreeBSD 9.2
Web server: apache 2.4.10
Database: MySQL 5.6.22
PHP version: 5.6.4
ownCloud version (see ownCloud admin page): 9.1.0
Updated from an older ownCloud or fresh install: Fresh install
ownCloud log (data/owncloud.log, see How to find webserver or OC logfile / enable php logfile):
{"reqId":"+OJEiCwjCwzTze4SqmmH","remoteAddr":"192.168.0.50","app":"PHP","message":"Module 'posix' already loaded at Unknown#0","level":3,"time":"2016-07-23T07:26:02+00:00","method":"GET","url":"\/owncloud\/index.php","user":"--"}
{"reqId":"eZ7JD81jL8NPPK+o27XW","remoteAddr":"192.168.0.50","app":"mysql.setup","message":"Specific user creation failed: An exception occurred while executing 'SELECT user FROM mysql.user WHERE user=?' with params [\"oc_root\"]:\n\nSQLSTATE[42000]: Syntax error or access violation: 1142 SELECT command denied to user 'owncloud'@'localhost' for table 'user'","level":3,"time":"2016-07-23T07:26:49+00:00","method":"POST","url":"\/owncloud\/index.php","user":"--"}
{"reqId":"eZ7JD81jL8NPPK+o27XW","remoteAddr":"192.168.0.50","app":"mysql.setup","message":"Database creation failed: An exception occurred while executing 'GRANT ALL PRIVILEGES ON `owncloud` . * TO 'owncloud'':\n\nSQLSTATE[42000]: Syntax error or access violation: 1044 Access denied for user 'owncloud'@'localhost' to database 'owncloud'","level":3,"time":"2016-07-23T07:26:49+00:00","method":"POST","url":"\/owncloud\/index.php","user":"--"}
Sorry to my very bad english,
Thanks to your help…