-
Notifications
You must be signed in to change notification settings - Fork 0
How to set up WISE on your production server
This page contains the instructions on how to install WISE on your production server. These specific instructions are for installing WISE onto an Ubuntu server, but WISE should work on other types of Linux servers too.
sudo apt update -y
sudo apt upgrade -y
sudo apt install mysql-server -y
Connect to mysql so you can run mysql commands.
sudo mysql
While in mysql, run these commands. Make sure to replace replace-this-with-a-password-for-the-database and remember the password for later.
create database wise_database;
CREATE USER 'wiseproduser'@'%' IDENTIFIED BY 'replace-this-with-a-password-for-the-database';
GRANT ALL PRIVILEGES ON wise_database.* TO 'wiseproduser'@'%';
FLUSH PRIVILEGES;
sudo apt install redis-server -y
sudo vim /etc/redis/redis.conf
With the redis.conf file open, change
supervised no
to
supervised systemd
sudo apt install nginx -y
Run these commands to update /etc/nginx/nginx.conf settings
sed 's/http {/http {\n add_header ip $server_addr;/' -i /etc/nginx/nginx.conf
sed 's/include \/etc\/nginx\/sites-enabled\/\*;/include \/etc\/nginx\/sites-enabled\/\*;\n\n ##\n # Browser preferred language detection \(does NOT require AcceptLanguageModule\)\n ##\n\n map \$http_accept_language \$accept_language {\n ~\*\^tr tr;\n ~\*\^es es;\n ~\*\^pt pt;\n ~\*\^ja ja;\n ~\*\^zh-Hans zh-Hans;\n ~\*\^zh-Hant zh-Hant;\n ~\*\^zh-CN zh-Hans;\n ~\*\^zh-TW zh-Hant;\n }/' -i /etc/nginx/nginx.conf
sed 's/gzip on;/gzip on;\n gzip_types text\/plain text\/xml image\/gif image\/jpeg image\/png image\/svg+xml application\/json application\/javascript application\/x-javascript text\/javascript text\/css;/' -i /etc/nginx/nginx.conf
sed 's/TLSv1 //g' -i /etc/nginx/nginx.conf
sed 's/TLSv1.1 //g' -i /etc/nginx/nginx.conf
Delete the default link in /etc/nginx/sites-enabled
rm /etc/nginx/sites-enabled/default
Create the file /etc/nginx/sites-enabled/wise.conf and put the contents below into it
upstream tomcat {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80;
server_name replace-with-website-address;
charset utf-8;
access_log off;
rewrite ^/wise5/(.*)$ /assets/wise5/$1 last;
location ~ ^/(curriculum|studentuploads) {
root /opt/tomcat/webapps;
try_files $uri $uri/ =404;
}
location ~* ^/(admin|api|portal|projectIcons|websocket|teacher\/account\/info|teacher\/management|student\/account\/info|pages) {
include proxy_params;
proxy_pass http://tomcat;
client_max_body_size 50M;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-Proto https;
}
if ($accept_language ~ "(es|ja|pt|tr|zh-Hant|zh-Hans)") {
# Redirect "/" to Angular app in browser's preferred language
rewrite ^/$ /$accept_language permanent;
}
# Everything under the Angular app is always redirected to Angular in the correct language
location ~ ^/(es|ja|pt|tr|zh-Hant|zh-Hans) {
root /usr/share/nginx/html/wise-client;
try_files $uri /$1/index.html?$args;
}
location / {
root /usr/share/nginx/html/wise-client/en-US;
try_files $uri $uri/ /index.html;
}
}
mkdir /usr/share/nginx/html/wise-client
On a web browser, go to the WISE-Client releases page.
https://github.com/WISE-Community/WISE-Client/releases
Find the release version you want and scroll down to the "Assets" section and right click on the "Build" link and choose "Copy link address". On your server, use wget to download the build file.
wget replace-with-link-to-client-build-file
Move the client build file to the wise-client folder. For example if you downloaded the en-US.tar.gz client build file, you would do this.
mv en-US.tar.gz /usr/share/nginx/html
Unpack the build file
tar -czf en-US.tar.gz
Restart Nginx.
systemctl restart nginx
sudo apt install openjdk-11-jdk-headless -y
groupadd -g 1001 tomcat
useradd -u 1001 -g tomcat -c "Apache Tomcat" -d $CATALINA_HOME -s /usr/sbin/nologin tomcat
usermod -a -G tomcat ubuntu
mkdir /opt/tomcat
chown tomcat:tomcat /opt/tomcat
wget -P /tmp https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.82/bin/apache-tomcat-9.0.82.tar.gz
tar xzvf /tmp/apache-tomcat-9.0.82.tar.gz -C /opt/tomcat --strip-components=1
chown -R tomcat:tomcat /opt/tomcat
chmod -R u+x /opt/tomcat/bin
Open the tomcat.service file for editing. This file does not exist yet.
sudo vim /etc/systemd/system/tomcat.service
Paste the text below into the tomcat.service file.
[Unit]
Description=Tomcat
After=network.target
[Service]
Type=forking
User=tomcat
Group=tomcat
Environment="JAVA_HOME=/usr/lib/jvm/java-1.11.0-openjdk-amd64"
Environment="JAVA_OPTS=-Djava.security.egd=file:///dev/urandom"
Environment="CATALINA_BASE=/opt/tomcat"
Environment="CATALINA_HOME=/opt/tomcat"
Environment="CATALINA_PID=/opt/tomcat/temp/tomcat.pid"
Environment="CATALINA_OPTS=-Xms512M -Xmx2048M -server -XX:+UseParallelGC"
ExecStart=/opt/tomcat/bin/startup.sh
ExecStop=/opt/tomcat/bin/shutdown.sh
RestartSec=10
Restart=always
[Install]
WantedBy=multi-user.target
rm -rf /opt/tomcat/webapps/ROOT
On a web browser, go to the WISE-API releases page.
https://github.com/WISE-Community/WISE-API/releases
Find the release version you want and scroll down to the "Assets" section and right click on the "Build" link and choose "Copy link address". On your server, use wget to download the build file.
wget replace-with-link-to-api-build-file
mv wise.war ROOT.war
mv ROOT.war /opt/tomcat/webapps
sed 's/<Connector port="8080"/<Connector port="8080" scheme="https"/' -i $CATALINA_HOME/conf/server.xml
systemctl daemon-reload
systemctl start tomcat
systemctl enable tomcat
sudo -u tomcat -g tomcat mkdir /opt/tomcat/webapps/curriculum
sudo -u tomcat -g tomcat mkdir /opt/tomcat/webapps/studentuploads
cp /opt/tomcat/webapps/ROOT/WEB-INF/classes/application_sample.properties /opt/tomcat/webapps/ROOT/WEB-INF/classes/application.properties
Look through application.properites and set/update values appropriately. In particular make sure you update these values. For the spring.datasource.password value, use the replace-this-with-a-password-for-the-database you created earlier.
- wise.hostname
- wise4.hostname
- curriculum_base_dir
- project_icons_base_dir
- studentuploads_base_dir
- spring.datasource.password
If you want to receive emails when users fill out the contact form you will need to set these values
- spring.mail.host
- spring.mail.port
- spring.mail.username
- spring.mail.password
- contact_email
If you want to allow users to log in with their Google account you will need to set these values
- google.clientId
- google.clientSecret
- google.tokens.dir
systemctl restart tomcat