Install Sakai 11.4 on Ubuntu server 16.04 using binary package
This provides instruction for installing a default Sakai 11.4 demo instance on Ubuntu-server 16.04 using a packaged binary .deb
Preparation
A fresh Ubuntu 16.04 install may not have all the required packages until after the package manager is updated, and some dependencies may require upgrading.
update the apt package cache:
Update cache
apt-get updateUpgrade packages:
Upgrade
apt-get upgrade
Step-by-step guide (DEMO Database)
Prepare a demo database (package default is server:127.0.0.1, username:sakai, password:changeme)
Install MySQL-server:
Install MySQL server
sudo apt-get install mysql-serverWhen prompted set your mysql root user password
Set root password
Create the sakai database:
Create Database
echo "CREATE DATABASE sakai default character set utf8" | mysql -uroot -p<rootPw>
Grant access to the package's default credentials:
Create 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)
Download the .deb package (https://drive.google.com/file/d/0B-yFOUaoqdfbV3VfQVJjSDQ4Ums/view?usp=sharing)
MD5
> md5sum sakai-11.4.deb
cb08c390c2b6a30065b19a1c7bf000bb sakai-11.4.deb
Install with:
Install Sakai
sudo apt install ./sakai-11.4.deb
Monitor catalina.out for a startup message similar to " INFO: Server startup in 78834 ms" using:
Monitor log
tail -f /var/log/tomcat8/catalina.out- Sakai 11.4 should be available on port 8080 @ http://<serveraddresss>:8080/portal