Ubuntu 13.10上面安装 Moodle

大连金州区微信公众平台 http://www.springworks.info/weixin/


参考:

http://docs.moodle.org/20/en/Step-by-step_Installation_Guide_for_Ubuntu


环境:

Ubuntu 13.10

主机名mmm.xxx.com,Web端口82


安装Ubuntu 13.10 64位

安装过程中选择安装LAMP

sudo -s -H


ifconfigvi /etc/hosts

192.168.1.2 mmm.xxx.com

Ubuntu现在缺省安装没有php5-json,而这个东东是Moodle必须的

sudo apt-get install php5-json


apt-get install moodle

vi /etc/moodle/config.php
$CFG->wwwroot = 'http://mmm.xxx.com:82/moodle';


vi /etc/apache2/sites-enabled/000-default.conf
<VirtualHost *:82>
vi /etc/apache2/ports.conf
Listen 82
service apache2 restart

cd /var/www;sudo ln -s /usr/share/moodle


浏览器访问:

http://mmm.xxx.com:82/moodle


版本:

Moodle 2.5.2 (Build: 20130909)

========================================

排错:
 tail -f /var/log/apache2/error.log


 php -m |grep json
   sudo apt-get install php5-json
 php -m |grep json

service apache2 restart



你可能感兴趣的:(Ubuntu 13.10上面安装 Moodle)