Installation of 5G-MAG Reference Tools Webinterface consists of 4 Steps:
- Install dependencies
- Building the Webinterface
- Post installation configuration
- Run the Webinterface
The build was tested and verified on Ubuntu 20.04 LTS (64 bit).
For the webinterface an additional package to the dependencies in MBMS Modem (see here) has to be installed for building:
sudo apt update
sudo apt install npm nginx
cd ~
git clone https://github.com/5G-MAG/rt-wui
cd rt-wui
npm install
As a last step you have to enable the nginx site, to allow requests to the 5G-MAG Reference Tools Webinterface over http.
Change to the sites-enabled directory and create a symbolic link from the rt-wui file in sites-available. After that, delete the default sym link:
cd /etc/nginx/sites-enabled
sudo ln -s ../sites-available/rt-wui rt-wui
sudo rm default
After creating the symbolic links, nginx has to be restarted. To always have the Webinterface available at startup, you can enable autostart via systemctl:
sudo systemctl restart nginx.service
sudo systemctl enable nginx.service
After installing, make sure to follow the instructions in the Documentation and Architecture repository to run the 5G-MAG Reference Tools Webinterface.