Hi, On 02.02.2015 22:16, Roger Whittaker wrote: > And do I really need a MySQL server running all the time when I > only have a couple of hundred files and a not very extensive > calendar in ownCloud?
the choice of database mostly depends on the number of simultaneous accesses to your owncloud. Sqlite can by design only handle one connection at a time (well). If you have multiple users, or multiple programs (sync client, calendar program, browser) accessing your owncloud at the same time, you probably want to either use mysql or pgsql instead of sqlite because of reasons mentioned above and by others in this thread. But running a mysql server isn't that bad. You can probably set it up on the same server where you have your owncloud without any issues. Cheers, Daniel Ps.: I don't think you really needed to recreate the database. But if it helped - why not. _______________________________________________ User mailing list [email protected] http://mailman.owncloud.org/mailman/listinfo/user
