Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Install MySQL-server:

    Info
    titleInstall MySQL server
    sudo apt-get install mysql-server
  2. When prompted set your mysql root user password

    Info
    titleSet root password

  3. Create the sakai database: 

    Info
    titleCreate Database

    echo "CREATE DATABASE sakai default character set utf8" | mysql -uroot -p<rootPw>

  4. Grant access to the package's default credentials:

    Info
    titleCreate Grant

    echo "GRANT ALL ON sakai.* to 'sakai'@'127.0.0.1' identified by 'changeme'" | mysql -uroot -p<rootPw>

Step-by-step guide (Sakai install)

...

  1. Download the .deb package (https://drive.google.com/file/d/0B-yFOUaoqdfbV3VfQVJjSDQ4Ums/view?usp=sharing

    Info
    titleMD5
    > md5sum sakai-11.4.deb  
    cb08c390c2b6a30065b19a1c7bf000bb  sakai-11.4.deb


  2. Install with:

    Info
    titleInstall Sakai
     sudo apt install ./sakai-11.4.deb

     

  3. Monitor catalina.out for a startup message similar to " INFO: Server startup in 78834 ms" using:

    Info
    titleMonitor log
    tail -f /var/log/tomcat8/catalina.out
  4. Sakai 11.4 should be available on port 8080 @ http://<serveraddresss>:8080/portal

...