moodle + openmeetings

19
Feiticeir0's Blog Linux and Freedom of Choice MENU 14 COMMENTS 10 Votes Install and configure moodle in CentOS 6.3 with video streaming and recording DECEMBER 10, 2012 Moodle is a E-learning platform free as in free beer. Moodle is a CMS (Course Management System) and also known as a LMS (Learning Management System) or a VLE (Virtual Learning Environment). I was in need to install a configure a system like this and I’ve chosen Moodle not also because is one of the best out there, but because is also free. One of the key features that i was also needing was a video streaming and recording facility. Moodle has it all (through plugins). What I’m going to describe here is an installation of Moodle from the very beginning: I’ve installed a CentOS 6.3 minimal – I’m going from here. Necessary a MySQL database (although Moodle supports others), HTTP server (I’m going with Apache) and PHP. Edited: As gshaw0 pointed out, there is no need to add additional repositories if you only want to install Moodle without the video streaming features ! Thank you gshaw0 ! PHP PHP has some requirements about extensions and we need to configure other repositories, such as rpmforge and EPEL. RPMFORGE To install rpmforge, just get the package for your distribution and architecture. Note: If you don’t have wget (or it’s a headless server) you must install it. yum install wget Get the package (replace with the correct package) wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm Install it rpm -ivh rpmforge-release-0.5.2-2.el6.rf.i686.rpm After install, go to /etc/yum.repos.d/ and edit rpmforge.repo and enable the rpmforge-extras repository, replacing 0 (zero) with 1 in the enabled = 0 line EPEL Get the correct package for your CentOS version (i’m using 6.3) converted by Web2PDFConvert.com

Upload: andrei-gogu

Post on 24-Nov-2015

168 views

Category:

Documents


4 download

DESCRIPTION

Moodle + OpenMeetings

TRANSCRIPT

  • Feiticeir0's BlogLinux and Freedom of Choice

    MENU

    14 COMMENTS

    10 Votes

    Install and configure moodle in CentOS 6.3 with video streaming and recordingDECEMBER 10, 2012

    Moodle is a E-learning platform free as in free beer. Moodle is a CMS (Course Management System) and also known as a LMS (LearningManagement System) or a VLE (Virtual Learning Environment).

    I was in need to install a configure a system like this and Ive chosen Moodle not also because is one of the best out there, but because is alsofree.

    One of the key features that i was also needing was a video streaming and recording facility. Moodle has it all (through plugins).

    What Im going to describe here is an installation of Moodle from the very beginning:

    Ive installed a CentOS 6.3 minimal Im going from here.

    Necessary a MySQL database (although Moodle supports others), HTTP server (Im going with Apache) and PHP.

    Edited: As gshaw0 pointed out, there is no need to add additional repositories if you only want to install Moodle without the video streamingfeatures ! Thank you gshaw0 !

    PHP

    PHP has some requirements about extensions and we need to configure other repositories, such as rpmforge and EPEL.

    RPMFORGE

    To install rpmforge, just get the package for your distribution and architecture.

    Note: If you dont have wget (or its a headless server) you must install it.

    yum install wget

    Get the package (replace with the correct package)

    wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm

    Install it

    rpm -ivh rpmforge-release-0.5.2-2.el6.rf.i686.rpm

    After install, go to /etc/yum.repos.d/ and edit rpmforge.repo and enable the rpmforge-extras repository, replacing 0 (zero) with 1 in the enabled= 0 line

    EPEL

    Get the correct package for your CentOS version (im using 6.3)

    converted by Web2PDFConvert.com

  • wget http://fedora-mirror02.rbc.ru/pub/epel/6/i386/epel-release-6-7.noarch.rpmrpm -ivh epel-release-6-7.noarch.rpm

    Now, we can install the php extensions required by moodle

    There arent all the extensions available for PHP as rpm you can install with yum, but pecl and pear are of help.

    Install those we can install with yum

    yum install php

    Note: According to moodle docs, iconv, ctype and tokenizer are now included in PHP by default.

    Some extensions are already built-in in PHP. To find out which just execute:

    php -i | grep -i

    Example for curl:

    php -i | grep -i curl

    The result, among other things, should be:

    curl cURL support => enabled cURL Information => 7.19.7

    According to my php, the following extensions are built-in:

    iconv, ctype, tokenizer, curl, openssl, ldap, zip, gd, simplexml, spl, pcre, json

    Install the rest of the php extensions

    yum install php-mbstring php-xmlrpc php-soap php-gd php-domxml-php4-php5 php-xml php-intl php-mysql

    MySQL

    Install the MySQL server

    yum install mysql mysql-server

    Start the server and follow the on screen instructions for the initial installation and configuration

    /etc/init.d/mysqld start

    Create the database

    Note: Change database name, user and password according to your preferences

    create database default character set utf8 collate utf8_unicode_ci; Query OK, 1 row affected (0.00 sec)mysql> grant select,insert,update,delete,create,create temporary tables,drop,index,alter on .* to @localhost identified b

    converted by Web2PDFConvert.com

  • y ''; Query OK, 0 rows affected (0.00 sec)

    Save the values for later use.

    Moodle

    Download Moodle from its server

    wget http://download.moodle.org/download.php/stable23/moodle-latest-23.tgz

    decompress the file

    tar -zxvf moodle-latest-23.tgz

    Now you get a Moodle directory. If this is going to be a dedicated server for Moodle, I suggest you copy the contents of the Moodle directory toyour server document root. This way, you can access the server by http://yourserver.domain.com

    If it is a shared server, copy the Moodle directory to your server document root directory and configure it accordingly.

    Now, create a directory to hold the moodle data. THIS DIRECTORY MUST NOT BE INSIDE THE DOCROOT (THE DIRECTORY SERVED BY THESERVER TYPICALLY /VAR/WWW/HTML) DIRECTORY

    This is were all the uploaded files, session files, temporary files are going to be stored. Moodle documentation suggests permissions as 0777(write, read, execute for everyone) I dont thing this is necessary. Only the web server user/group should be able to write here.

    Lets assume /var/www

    mkdir /var/www/moodledata

    As suggested by Moodle documentation:

    chmod 0777 /var/www/moodledata

    My suggestion:

    chm0d 0774 /var/www/moodledatachown apache:apache -R /var/www/moodledata

    If this is going to be a shared server, view the Moodle installation docs for more information.

    Install Moodle

    Lets install it.

    Moodle documentation suggests to use the CLI (Command Line Interface) to run the setup.

    Lets change the owner of the files for the installation

    chown -R /var/www/htmlcd /var/www/html/admin/cli

    Execute the installer:

    converted by Web2PDFConvert.com

  • /usr/bin/php install.php

    Answer the several questions the installer asks you

    and in the end, you should see:

    (...)++ Success ++ -->scormreport_basic ++ Success ++ -->scormreport_graphs ++ Success ++ -->scormreport_interactions ++ Success ++ -->workshopform_accumulative ++ Success ++ -->workshopform_comments ++ Success ++ -->workshopform_numerrors ++ Success ++ -->workshopform_rubric ++ Success ++ -->workshopallocation_manual ++ Success ++ -->workshopallocation_random ++ Success ++ -->workshopallocation_scheduled ++ Success ++ -->workshopeval_best ++ Success ++ Installation completed successfully.

    Revert the owner of the files:

    chown -R root /var/www/html

    Note: I believe the files should be owned by the apache user - but this is just a personal opinionNow you have Moodle installed.

    Try to access it:

    http://.domain.com

    PS: If you cant access it, see if you have iptables running.

    CRON

    Moodle uses a php file that must be run in background in regular intervals to perform several tasks. Read here for more information.

    NOTE: The Moodle server will not run well if this process is not done.

    converted by Web2PDFConvert.com

  • yum install cronie

    After the installation of cron, check what user is running the apache web server (IT SHOULD NOT BE ROOT).

    grep -i user /etc/httpd/conf/httpd.conf

    The result should be something like this:

    # User/Group: The name (or #number) of the user/group to run httpd as. # . On SCO (ODT 3) use "User nouser" and "Group nogroup". User apache # UserDir: The name of the directory that is appended onto a user's home # UserDir is disabled by default since it can confirm the presence UserDir disabled # directory, remove the "UserDir disabled" line above, and uncomment #UserDir public_html # Control access to UserDir directories. The following is an example LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%{User-agent}i" agent #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio

    The bold line is the result we want.

    Now, add the cron job with that user:

    crontab -u apache -e

    and add the line

    # Run the cron every 15 minutes */15 * * * * /usr/bin/php /var/www/html/admin/cli/cron.php >/dev/null

    Save and quit

    Performance

    Moodle seriously recommends that a PHP accelerator should be installed. There are many, but im going to install APC.

    yum install php-pecl-apcservice httpd restart

    And APC accelerator should be active.

    For more information about performance, check the Performance Recommendations.

    Video Streaming and Recording within Moodle

    Note: Ill be using the same server. OpenMeetings has some requirements about the server. Check them in the installation page.

    For more available packages for Video Streaming, check the post Free and Open Source Web Conferencing (Online Meetings, Webinars) Toolsfor e-Learning from eFront.

    One of the features im searching for Moodle to be able to perform is Video Streaming and Recording. This feature is a must have. Aftersearching and reading, Ive choose OpenMeetings. It is simple to install and simple to use.

    It has a Moodle plugin and the configuration is straightforward, but we must install the server before.

    converted by Web2PDFConvert.com

  • OpenMeetings

    Install Server

    Go to downloads page and download OpenMeetings Server

    Before, unpacking it, necessary to install some requirement packages

    OpenMeetings requires ORACLE JRE 6

    Installing Java

    Go to java.com and download the Linux RPM

    After download, as root:

    rpm -ivh jre-7u9-linux-i586.rpm

    After install, check the version

    /usr/bin/java -version

    It should be something like:

    /usr/bin/java -version java version "1.7.0_09" Java(TM) SE Runtime Environment (build 1.7.0_09-b05) Java HotSpot(TM) Client VM (build 23.5-b02, mixed mode, sharing)

    If something else (check the version YOU have installed), probably you should use alternatives to change it. Check the site If Not True Then Falseto see how to use alternatives to change the Java version.

    Since i didnt had any java (openjdk or java-gcj), i didnt need to use alternatives.

    ImageMagick

    To use some features (image upload and import to whiteboard), ImageMagick is necessary.

    yum install ImageMagick (respect the upper case letters)

    Importing PDFs

    To be able to import PDFs to whiteboard, there are two packages that need to be installed.

    Ghostscript is easy as: (probably is already installed):

    yum install ghostscript

    SWFTools is also installable with yum

    yum install swftools

    Make sure swftools version is 0.9 or above as previous versions have a bug (according to OpenMeetings website).

    Recording and importing avi, flv, mov and mp4 into whiteboard

    Necessary to install ffmpeg and sox

    converted by Web2PDFConvert.com

  • But, according to the website, ffmpeg must have the libmp3lame option enabled libmp3lame.

    You now have two choices:

    Get the source rpm, install it, change the SPEC file to have the option libmp3lame and rebuild the package

    or

    Get the ffmpeg source package and compile it yourself.

    Im going with the source package

    Rebuilding ffmpeg

    NOTE: Theres a general rule not to rebuild packages as the ROOT user. You can read about it here. Im just doing it as root because this isa Virtual Machine Im using to test the installation, but you should read about it.

    Get the ffmpeg source rpm from here.

    should be (as of the writing of this): ffmpeg-0.6.5-1.rf.src.rpm

    After download, install it:

    rpm -ivh ffmpeg-0.6.5-1.rf.src.rpm

    Install the necessay packages

    yum install rpm-build gcc make

    You should now have a directory called rpmbuild. Inside there is a directory called SPECS. Inside there should be a file called ffmpeg.specs. Thisfile contains the configuration used to compile ffmpeg.

    Edit the file and locate the %build macro. After the macro, should see something like this:

    ./configure \

    prefix=%{_prefix} \

    libdir=%{_libdir} \

    shlibdir=%{_libdir} \

    mandir=%{_mandir} \

    incdir=%{_includedir} \

    These are the configuration options that the package will be configured and later compiled with.

    Locate the line

    %{!?_without_lame:--enable-libmp3lame} \

    and change it to

    --enable-libmp3lame \

    Save and quit

    Install required packages:

    converted by Web2PDFConvert.com

  • yum install SDL-devel imlib2-devel freetype-devel zlib-devel a52dec-devel libdc1394-devel dirac-devel faac-devel faad2-devel gsm-devel lame-devel opencore-amr-devel librtmp-devel schroedinger-devel texi2html libogg-devel libtheora-devel libvdpau-devel x264-devel speex-devel

    And now rebuild ffmpeg

    rpmbuild -bb ffmpeg.spec (-bb means build binary).

    More information about rebuilding rpms can be found here and here .

    NOTE: If you get an error about libdirac (although dirac-devel is installed), install libstdc++-devel

    And you can now see, ffmpeg will be compiled with the option we wanted:

    ./configure --prefix=/usr --libdir=/usr/lib --shlibdir=/usr/lib --mandir=/usr/share/man --incdir=/usr/include --disable-avisynth '--extra-cflags=-O2 -g -march=i386 -mtune=i686' --enable-avfilter --enable-avfilter-lavf --enable-libdc1394 --enable-libdirac --enable-libfaac --enable-libfaad --enable-libfaadbin --enable-libgsm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-pthreads --enable-shared --enable-swscale --enable-vdpau --enable-version3 --enable-x11grab

    Go and have some beer. This can take a while.

    If everything goes well, you can now install ffmpeg. The RPM will be located inside the rpmbuild directory, in RPMS/.

    rpm -ivh * (you should have more than one ffmpeg-* rpm).

    And finally, install sox.

    yum install sox

    Enabling import of .doc, .docx, .ppt, .pptx,

    EDIT: As bait pointed out, OpenOffice is still needed for docs/ppts/etc files to be used with OpenMeetings . You can get more information here. Ill edit the post later and add the headless instalation. Thank you bait !

    For this to work, we need JODconverter and OpenOffice converter. Fortunately, earlier versions required OpenOffice to be installed. No more thisis necessary since version 2.x .

    Note: OpenOffice Converter is no longer necessary.

    To get JODConverter, go the its page, at Google code.

    Unzip it and put it where you want. Im going to move it to /opt

    mv jodconverter-core-3.0-beta-4 /opt

    NOTE: Later is necessary to configure OpenMeetings with the path

    OpenMeetings by default works with apache derby database, but it can be configured to use MySQL. Im going with MySQL.

    At this point, we already have everything we need to install and configure OpenMeetings.

    Create a directory and move the OpenMeetings file youve download (at this time, apache-openmeetings-incubating-2.0.0.r1361497-14-07-2012_1108.tar.gz)

    mkdir openmeetingsmv apache-openmeetings-incubating-2.0.0.r1361497-14-07-2012_1108.tar.gz openmeetingscd openmeetingstar -zxvf apache-openmeetings-incubating-2.0.0.r1361497-14-07-2012_1108.tar.gz

    It will now uncompress and create a series of files and directories.

    converted by Web2PDFConvert.com

  • Move the directory to another place. Ill use /opt

    mv openmeetings /opt

    Before proceeding with running it, lets configure it to use MySQL, if you want. If not, just proceed to Running and Configuration

    Download the MySQL connector from here

    Uncompress it and copy the file mysql-connector-java-5.1.22-bin.jar (your version can be other) to/opt/openmeetings/webapps/openmeetings/WEB-INF/lib/

    Lets proceed with the configuration. This is available at the OpenMeetings website.

    cd /opt/openmeetings/webapps/openmeetings/WEB-INF/classes/META-INF

    First, create a backup of the persistence.xml file

    cp persistence.xml persistence.xml.bakcp mysql_persistence.xml persistence.xml

    Edit the file persistence.xml and search for the lines: (almost at the end of the file)

    poolPreparedStatements=true

    , Username=root

    , Password=/>

    and fill in your database detais.

    NOTE: Make sure your MySQL database is using UTF-8 as the server charset.

    You can change this, editing /etc/my.cnf and adding the line in the [mysqld] section:

    default-character-set=utf8

    Save and restart mysql

    /etc/init.d/mysqld restart

    or

    service mysqld restart

    Running and Configuration

    Now, start the red5.sh

    cd /opt/openmeetings./red5.sh

    and go to

    :5080/openmeetings/install

    After fill in your values, and login in, youre done with the server.

    converted by Web2PDFConvert.com

  • Moodle Plugin

    Just browse to https://moodle.org/plugins/pluginversions.php?plugin=mod_openmeetings and download the plugin

    copy it to your moodle server to /mod directory

    uncompress it

    unzip mod_openmeetings_moodle21_20111019.zip

    and change the permissions

    chown : -R openmeetings

    Go to Moodle and login (as administrator)

    The plugin installation page should appear to complete the installation.

    And now you should have a working Moodle with Video Streaming and Recording

    Hope this tutorial be of your help.

    Authentication using LDAP (work in progress)

    Preparing the system

    Note: For this to work, you need to have a working LDAP server (Openlda). Im not covering here how its done. Theres plenty of tutorials onlineon how to do it. But before, if you dont know what LDAP is, I recommend read about it and what is it for.

    LDAP authentication is a bit tricky, especially if youre using SSL in your server.

    Here are some tricks, from Moodle documentation about LDAP It worked for me, to enable SSL.

    If youre not using SSL, then proceed to Configuring Moodle with LDAP (below)

    Copy your certificate files to the Moodle server, to the /etc/pki/tls/certs directory. Once there, just issue the cacertdir_rehash command.

    cacertdir_rehash `pwd`

    and the certificate file(s) now have links to them.

    Now, its necessary to configure the openldap. Open the file /etc/openldap/ldap.conf

    vi /etc/openldap/ldap.conf

    Search the line:

    TLS_CACERTDIR /etc/openldap/certs

    and change it to

    converted by Web2PDFConvert.com

  • TLS_CACERTDIR /etc/ssl/certs

    or

    TLS_CACERTDIR /etc/pki/tls/certs

    It doesnt matter, because in /etc/ssl, certs is a symlink to /etc/pki/tls/certs

    Save the file and exit

    Probably youre going to need to restart the apache server (or other if youre not using Apache).

    service httpd restart

  • ldaps://:636

    if not

    ldap://

    Version 3 (default)

    LDAP encoding: utf-8

    Bind Settings

    Hide passwords: YES (prevents from being stored in Moodle)

    Distinguished name: cn=Manager,dc=domain,dc=com (The user you use to access your LDAP for search users)

    Password:

    User Lookup Settings

    User type: posixAccount (rfc2307) For Openldap

    Contexts: ou=people,dc=domain,dc=com (the context where your users are in)

    Search subcontexts: No

    Deference aliases: No

    User attribute: uid (The user attribute used in the LDAP for searching for users)

    Member attribute: memberuid (The same, but for groups membership)

    Force change password

    Force change password: No (passwords are not in Moodle)

    Use standard page for changing password: No

    password format: MD5 hash (this is mine. Yours can be different)

    LDAP Expiration settings

    Expiration: LDAP (LDAP has all the passwords)

    Grace logins: No

    Share this:

    Twitter 4 Facebook 6 Google

    Houston, TX'S NEW RULE[Apr 2014] New rule in Houston, TX leavesdrivers furious and shocked... Read More {Comparisons.org}

    About these ads

    Loading...

    Related

    converted by Web2PDFConvert.com

  • USING GNOME NAUTILUS AS SSH AND SMB GUI FIREFOX NEW TAB PAGE AS HOME PAGE

    0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    14 thoughts on Install and configure moodle in CentOS 6.3 with video streamingand recording

    vfxpanditFebruary 17, 2013 at 00:00

    Reblogged this on Rajiv Pandit.

    REPLY

    vfxpanditFebruary 17, 2013 at 00:01

    great stuff .

    REPLY

    Paul DariusFebruary 26, 2013 at 09:13

    having error as follows :

    # yum install SDL-devel imlib2-devel freetype-devel zlib-devel a52dec-devel libdc1394-devel dirac-devel faac-devel faad2-devel gsm-devel lame-devel opencore-amr-devel librtmp-devel schroedinger-devel texi2html libogg-devel libtheora-devel libvdpau-devel x264-devel speex-develLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile* base: ossm.utm.my* extras: ossm.utm.my* updates: ossm.utm.mySetting up Install ProcessNo package imlib2-devel available.No package a52dec-devel available.No package dirac-devel available.No package faac-devel available.No package faad2-devel available.No package lame-devel available.

    LINUX, OPENSOURCECENTOS, CENTOS 6.3, INSTALL AND CONFIGURE MOODLE, INSTALL MOODLE CENTOS, INSTALL MOODLE CENTOS 6.3, INSTALL OPENMEETINGS, INSTALL

    OPENMEETINGS CENTOS, INSTALL OPENMEETINGS CENTOS 6.3, MOODLE, MOODLE AUTHENTICATION WITH LDAP, MOODLE LDAP, MOODLE VIDEO RECORDING, MOODLEVIDEO STREAMING, MOODLE VIDEO STREAMING AND RECORDING, MOODLE WEB CONFERENCING TOOLS, OPENMEETINGS

    Install logwatch Centos 6

    Instalar Koha 3.00.06 em Centos 5.5

    DHCP failover / load balancing (and synchronization) with CentOS 6

    converted by Web2PDFConvert.com

  • 0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    No package opencore-amr-devel available.No package librtmp-devel available.No package schroedinger-devel available.No package libvdpau-devel available.No package x264-devel available.Resolving Dependencies cut OS CentOS 6.3

    REPLY

    Paul DariusFebruary 26, 2013 at 09:14

    and this one as well# yum install swftoolsLoaded plugins: fastestmirror, refresh-packagekit, securityLoading mirror speeds from cached hostfile* base: mirrors.hostemo.com* extras: mirrors.hostemo.com* updates: mirrors.hostemo.comSetting up Install ProcessNo package swftools available.Error: Nothing to do

    REPLY

    feiticeir0February 26, 2013 at 10:32

    Hi Daruis !

    What yum repos have you ? I have enabled in Centos-Base.repo [contrib] and [centosplus] and [extras].

    I also have epel repository : http://fedoraproject.org/wiki/EPEL

    and rpmforge : http://wiki.centos.org/AdditionalResources/Repositories/RPMForge

    Do you have this repositories enable ?

    REPLY

    gshaw0April 3, 2013 at 15:23

    Thanks for this very useful and well written post

    It might be worth adding that you dont need the additional repos if you only want to install Moodle without the video streaming features (all theMoodle required php extensions were available on the default CentOS 6.4 repo during my test install)

    REPLY

    feiticeir0April 3, 2013 at 18:44

    Thank you gshaw0 ! It will be added to the post with the respective credit !

    converted by Web2PDFConvert.com

  • 0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    0 0 Rate This

    REPLY

    baitApril 9, 2013 at 01:58

    openoffice/libreoffice still needs to be installed for docs/ppt files to be used with openmeetings. all they changed was that jodconverter tries tolaunch openoffice/libreoffice before looking at path.office.

    REPLY

    feiticeir0April 9, 2013 at 11:21

    Thank you bait ! Its corrected and Ill get into it and install LibreOffice soon ! Thank you

    REPLY

    baitApril 15, 2013 at 08:27

    how rude of me, i forgot to thank you for the guide. everything else worked flawlessly. im using centos 6.4 32-bit and latestrpmforge, i was able to install ffmpeg from yum. just type yum install ffmpeg. i tested all the listed video formats and they allworked well.

    Mari Cruz GarciaApril 12, 2013 at 10:27

    Gracias por este blog.I plant to install Moodle in CentOS and this post is really helpful!Obligada!

    REPLY

    aariciathorgalsonApril 12, 2013 at 10:28

    Thanks for this helpful post which -hopefully- will help me with the installation.Obligada!

    REPLY

    vasudevMay 5, 2013 at 07:54

    Grate tutorial. Im trying to config 2 node moodle cluster on centOS6.4 with luci. Ive set all pre-requisites and added VIP,scripts and mount pointfor both httpd and mysqld. My question is how to set VIP in nodes, so that moodle will install in nodes using cluster VIP instead of node IP.

    converted by Web2PDFConvert.com

  • 0 0 Rate This

    point

    REPLY

    marcSeptember 2, 2013 at 15:10

    What software is a good fit to stream teaching content(Mp3 and Mp4) that we currently have and anything new we would like to added we canuse the above directions. What can you recommend either free or pay for software as a service? Thank you for any direction

    REPLY

    Leave a Reply

    Search

    Twitter

    RT @mental_floss: 30 Things You Might Not Know About 'Cheers' bit.ly/1pmTwdA 9 hours ago

    Snowden's Effect =) goo.gl/8YJtdF 15 hours ago

    Want to learn GNU C, C++, and system programming? Download excellent "Advanced Linux goo.gl/Wf2Bza 16 hours ago

    Enter your comment here...Enter your comment here...

    converted by Web2PDFConvert.com

  • Raspberry PI Bluetooth Wireless Speaker wp.me/p2GAww-j5 1 day ago

    J s faltam 8 dias. Mais informaes em: goo.gl/j54qHl goo.gl/HMH0vA 4 days ago

    Follow Follow @feiticeir0@feiticeir0

    Categories

    Funny Gentoo Linux Musica Network Opensource Opiniao UncategorizedArchives

    April 2014

    February 2014

    September 2013

    January 2013

    December 2012

    October 2012

    March 2012

    January 2012

    December 2011

    November 2011

    June 2011

    April 2011

    February 2011

    January 2011

    December 2010

    November 2010

    September 2010

    August 2010

    December 2009

    November 2009

    converted by Web2PDFConvert.com

  • October 2009

    August 2009

    July 2009

    June 2009

    May 2009

    April 2009

    March 2009

    January 2009

    December 2008

    November 2008

    October 2008

    September 2008

    May 2008

    April 2008

    March 2008

    February 2008

    January 2008

    October 2007

    September 2007

    August 2007

    February 2007

    October 2006

    September 2006

    July 2006

    June 2006

    March 2006

    November 2005

    October 2005

    converted by Web2PDFConvert.com

  • BLOG AT WORDPRESS.COM. | THE MOTIF THEME.

    FollowFollow

    converted by Web2PDFConvert.com