Ik wil graag samen met mariaDB een owncloud installatie starten..
Het volgende heb ik al geprobeerd uit te voeren...
https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html
Het geeft "mooi" aan dat het werkt, of goed zou moeten staan, maar
blijf de error krijgen
Suggesties wat het kan zijn? (en eigenlijk belangrijker, hoe op te lossen?)

Het volgende heb ik al geprobeerd uit te voeren...
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 6 Server version: 10.1.18-MariaDB-1~xenial mariadb.org binary distribution Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> SELECT @@GLOBAL.tx_isolation, @@tx_isolation; +-----------------------+-----------------+ | @@GLOBAL.tx_isolation | @@tx_isolation | +-----------------------+-----------------+ | REPEATABLE-READ | REPEATABLE-READ | +-----------------------+-----------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SET GLOBAL tx_isolation='READ COMMITTED'; ERROR 1231 (42000): Variable 'tx_isolation' can't be set to the value of 'READ COMMITTED' MariaDB [(none)]> SET GLOBAL tx_isolation='READ-COMMITTED'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> SELECT @@GLOBAL.tx_isolation, @@tx_isolation; +-----------------------+-----------------+ | @@GLOBAL.tx_isolation | @@tx_isolation | +-----------------------+-----------------+ | READ-COMMITTED | REPEATABLE-READ | +-----------------------+-----------------+ 1 row in set (0.00 sec) MariaDB [(none)]> SET SESSION tx_isolation='READ-COMMITTED'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> SELECT @@GLOBAL.tx_isolation, @@tx_isolation; +-----------------------+----------------+ | @@GLOBAL.tx_isolation | @@tx_isolation | +-----------------------+----------------+ | READ-COMMITTED | READ-COMMITTED | +-----------------------+----------------+ 1 row in set (0.00 sec) MariaDB [(none)]> |
https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html
Het geeft "mooi" aan dat het werkt, of goed zou moeten staan, maar
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| xxxxxx@xxxxxx:/etc/mysql# service mysql restart xxxxxx@kxxxxxx:/etc/mysql# mysql -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 3 Server version: 10.1.18-MariaDB-1~xenial mariadb.org binary distribution Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> SELECT @@GLOBAL.tx_isolation, @@tx_isolation; +-----------------------+-----------------+ | @@GLOBAL.tx_isolation | @@tx_isolation | +-----------------------+-----------------+ | REPEATABLE-READ | REPEATABLE-READ | +-----------------------+-----------------+ 1 row in set (0.00 sec) |
Suggesties wat het kan zijn? (en eigenlijk belangrijker, hoe op te lossen?)