Re: Modlos 1.5.0 database issues- FINAL UPDATE
fudge
投稿数: 23
I worked out what caused this problem and probably what has caused the problem for others as listed in the top post here (I see from the forum posts that a few other have had these issues in the past).
The issue is basically a result of (my) laziness- you need to define a dedicated database user for moodle and opensim. If you simply use the default root user credentials for both the moodle and opensim databases you will get errors due to the lack of synchronization between the databases. Therefore, out of all the things we did as outlined above, the critical element was this:
mysql> grant all on moodle_1_9_10.* to moodle_user identified by 'moodle_pass';
mysql> grant all on opensim_0702.* to opensim_user identified by 'opensim_pass';
mysql> flush privileges;
Doing the above will solve all these types of issues. I was able to reproduce the errors on another server by doing an install where I used the defauly mysql root user credentials for both the opensim and moodle databases.
cheers :)
Hoperfully this will help others that run into these problems.
The issue is basically a result of (my) laziness- you need to define a dedicated database user for moodle and opensim. If you simply use the default root user credentials for both the moodle and opensim databases you will get errors due to the lack of synchronization between the databases. Therefore, out of all the things we did as outlined above, the critical element was this:
mysql> grant all on moodle_1_9_10.* to moodle_user identified by 'moodle_pass';
mysql> grant all on opensim_0702.* to opensim_user identified by 'opensim_pass';
mysql> flush privileges;
Doing the above will solve all these types of issues. I was able to reproduce the errors on another server by doing an install where I used the defauly mysql root user credentials for both the opensim and moodle databases.
cheers :)
Hoperfully this will help others that run into these problems.
投票数:157
平均点:3.89
投稿ツリー
-
Modlos 1.5.0 database issues
(fudge, 2010-11-30 10:05)
- Re: Modlos 1.5.0 database issues (iseki, 2010-11-30 23:13)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-1 5:35)
-
Re: Modlos 1.5.0 database issues
(iseki, 2010-12-1 11:22)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-2 11:11)
-
Re: Modlos 1.5.0 database issues
(iseki, 2010-12-1 11:22)
- Re: Modlos 1.5.0 database issues (fudge, 2010-12-2 11:45)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-2 12:07)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-2 14:45)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-2 15:29)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-2 16:48)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-2 20:30)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-3 3:06)
- Re: Modlos 1.5.0 database issues (fudge, 2010-12-3 8:55)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-3 10:03)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-3 10:48)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-3 11:03)
-
Re: Modlos 1.5.0 database issues
(iseki, 2010-12-3 16:53)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-3 17:55)
-
Re: Modlos 1.5.0 database issues
(iseki, 2010-12-3 16:53)
- Re: Modlos 1.5.0 database issues (fudge, 2010-12-6 7:40)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-7 7:32)
- Re: Modlos 1.5.0 database issues (iseki, 2010-12-7 17:58)
-
Re: Modlos 1.5.0 database issues
(fudge, 2010-12-9 13:14)
- Re: Modlos 1.5.0 database issues (admin, 2010-12-9 17:47)
- Re: Modlos 1.5.0 database issues (fudge, 2010-12-10 9:52)
- Re: Modlos 1.5.0 database issues- FINAL UPDATE (fudge, 2011-6-2 14:34)