Difference between revisions of "Moodle"
Unnilennium (talk | contribs) |
|||
(22 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Languages}} | {{Languages}} | ||
− | |||
− | |||
===Maintainer=== | ===Maintainer=== | ||
[http://www.dungog.net Dungog.net] (Software) | [http://www.dungog.net Dungog.net] (Software) | ||
+ | |||
+ | === Version === | ||
+ | {{#smeversion: smeserver-{{lc:{{FULLPAGENAME}}}} }} | ||
===Description=== | ===Description=== | ||
Line 12: | Line 13: | ||
===Installation=== | ===Installation=== | ||
− | + | This contrib can be found in the smecontribs repository. | |
− | + | yum --enablerepo=smecontribs install moodle smeserver-moodle | |
+ | |||
+ | No need to reboot. | ||
+ | |||
+ | ====Setup==== | ||
+ | Edit /opt/moodle/html/config.php the first time you install to set mysql details, domain name and moodle paths. | ||
+ | |||
+ | cd /opt/moodle/html | ||
+ | cp config-dist.php config.php | ||
+ | nano -w config.php | ||
+ | |||
+ | // 1. DATABASE SETUP | ||
+ | $CFG->dbuser = 'moodle'; // your database username is moodle | ||
+ | $CFG->dbpass = '439321584876185'; // find your database password with 'config show moodle' | ||
+ | |||
+ | // 2. WEB SITE LOCATION | ||
+ | $CFG->wwwroot = 'http://YOURDOMAIN.COM/moodle'; | ||
+ | |||
+ | // 3. SERVER FILES LOCATION | ||
+ | $CFG->dirroot = '/opt/moodle/html'; | ||
+ | |||
+ | // 4. DATA FILES LOCATION | ||
+ | $CFG->dataroot = '/opt/moodle/moodledata'; | ||
+ | |||
+ | |||
+ | To setup moodle start your browser with the URL ''http://YOURDOMAIN.COM/moodle'' and complete the forms. | ||
− | |||
− | |||
− | + | ====Update==== | |
− | + | Review http://docs.moodle.org/en/Upgrading | |
− | + | yum update moodle --enablerepo=smecontribs | |
− | + | Visit your moodle site to trigger the upgrade and complete the install | |
− | |||
− | + | ====Usage==== | |
− | + | Begin with reading the [http://docs.moodle.org/en/Using_Moodle_book Moodle book] | |
* Authentication | * Authentication | ||
− | To authenticate SME users against moodle configure moodle to use POP3 | + | Email based self registration is the default method. |
+ | |||
+ | To authenticate SME users against moodle, configure moodle to use POP3. | ||
With regular POP3, port 110, 127.0.0.1 in Moodle and "allow private" in SME server-manager > Email. | With regular POP3, port 110, 127.0.0.1 in Moodle and "allow private" in SME server-manager > Email. | ||
Also seems to work with POP3cert port 995 in Moodle and "allow private and public" in SME server manager > Email. | Also seems to work with POP3cert port 995 in Moodle and "allow private and public" in SME server manager > Email. | ||
+ | |||
+ | * Privileged Users | ||
+ | Assign new moodle system administrators, course creators and teachers. | ||
+ | |||
+ | * Courses | ||
+ | Add course categories before adding courses. Then assign a teacher to a course. | ||
+ | |||
+ | * Students | ||
+ | The default is for students to create their own account and join courses themselves. | ||
+ | |||
+ | === Uninstallation === | ||
+ | To remove this package issue the following command on the SME Server shell: | ||
+ | rpm -e moodle smeserver-moodle | ||
+ | |||
+ | To remove mysql database and user, both are moodle, see [[MySQL#Remove a database]] and [[MySQL#Remove a user]]. There is no need to reboot. | ||
=== Options === | === Options === | ||
− | You can fine tune access to moodle with DB settings. | + | * You can fine tune access to moodle with DB settings. |
− | + | ||
− | + | For details have a look at [[Web Application RPM#New DB settings]]. | |
− | + | To see the current DB settings for Moodle do | |
− | + | config show moodle | |
− | |||
− | + | To allow "normal" public access to Moodle do the following | |
+ | config setprop moodle PublicAccess global | ||
+ | expand-template /etc/httpd/conf/httpd.conf | ||
+ | sv h /service/httpd-e-smith | ||
=== Bugs === | === Bugs === | ||
Please raise bugs under the SME-Contribs section in {{BugzillaFileBug|product=|component=|title=bugzilla}}and select the smeserver-moodle component or use {{BugzillaFileBug|product=SME%20Contribs|component=smeserver-moodle|title=this link}}. | Please raise bugs under the SME-Contribs section in {{BugzillaFileBug|product=|component=|title=bugzilla}}and select the smeserver-moodle component or use {{BugzillaFileBug|product=SME%20Contribs|component=smeserver-moodle|title=this link}}. | ||
− | === | + | {{#bugzilla:columns=id,product,version,status,summary |sort=id |order=desc |disablecache=1 |component=smeserver-moodle |noresultsmessage="No open bugs found."}} |
+ | |||
− | + | ==Changelog== | |
− | |||
− | |||
− | + | Only released version in smecontrib are listed here. | |
+ | {{ #smechangelog: smeserver-moodle }} | ||
[[Category: Contrib]] | [[Category: Contrib]] | ||
[[Category: CMS]] | [[Category: CMS]] | ||
[[Category: Dungog]] | [[Category: Dungog]] | ||
+ | [[Category: Webapps]] |
Latest revision as of 21:26, 17 April 2021
Maintainer
Dungog.net (Software)
Version
Description
Moodle is a course management system (CMS) A free, Open Source software package designed using sound pedagogical principles, to help educators create effective online learning communities.
Installation
This contrib can be found in the smecontribs repository.
yum --enablerepo=smecontribs install moodle smeserver-moodle
No need to reboot.
Setup
Edit /opt/moodle/html/config.php the first time you install to set mysql details, domain name and moodle paths.
cd /opt/moodle/html cp config-dist.php config.php nano -w config.php
// 1. DATABASE SETUP $CFG->dbuser = 'moodle'; // your database username is moodle $CFG->dbpass = '439321584876185'; // find your database password with 'config show moodle' // 2. WEB SITE LOCATION $CFG->wwwroot = 'http://YOURDOMAIN.COM/moodle'; // 3. SERVER FILES LOCATION $CFG->dirroot = '/opt/moodle/html'; // 4. DATA FILES LOCATION $CFG->dataroot = '/opt/moodle/moodledata';
To setup moodle start your browser with the URL http://YOURDOMAIN.COM/moodle and complete the forms.
Update
Review http://docs.moodle.org/en/Upgrading
yum update moodle --enablerepo=smecontribs
Visit your moodle site to trigger the upgrade and complete the install
Usage
Begin with reading the Moodle book
- Authentication
Email based self registration is the default method.
To authenticate SME users against moodle, configure moodle to use POP3.
With regular POP3, port 110, 127.0.0.1 in Moodle and "allow private" in SME server-manager > Email.
Also seems to work with POP3cert port 995 in Moodle and "allow private and public" in SME server manager > Email.
- Privileged Users
Assign new moodle system administrators, course creators and teachers.
- Courses
Add course categories before adding courses. Then assign a teacher to a course.
- Students
The default is for students to create their own account and join courses themselves.
Uninstallation
To remove this package issue the following command on the SME Server shell:
rpm -e moodle smeserver-moodle
To remove mysql database and user, both are moodle, see MySQL#Remove a database and MySQL#Remove a user. There is no need to reboot.
Options
- You can fine tune access to moodle with DB settings.
For details have a look at Web Application RPM#New DB settings.
To see the current DB settings for Moodle do
config show moodle
To allow "normal" public access to Moodle do the following
config setprop moodle PublicAccess global expand-template /etc/httpd/conf/httpd.conf sv h /service/httpd-e-smith
Bugs
Please raise bugs under the SME-Contribs section in bugzilla and select the smeserver-moodle component or use this link .
Changelog
Only released version in smecontrib are listed here.