| 3 | |
| 4 | |
| 5 | === Software installation & testing === |
| 6 | |
| 7 | 1. Download the client package from http://www.flarmradar.ch/public/dist/server/pkg/ |
| 8 | |
| 9 | {{{ |
| 10 | $ wget http://www.flarmradar.ch/public/dist/server/pkg/flarmradar_<version>_all.deb |
| 11 | }}} |
| 12 | |
| 13 | 2. Install the package |
| 14 | |
| 15 | {{{ |
| 16 | $ sudo -i dpkg -i flarmradar_<version>_all.deb |
| 17 | }}} |
| 18 | |
| 19 | The package creates a new user 'flarm' which owns the Flarmradar server process and files. |
| 20 | |
| 21 | 3. Start the server |
| 22 | |
| 23 | {{{ |
| 24 | $ sudo su -l -c "/opt/flarmradar/flarmradar.sh stop" flarm |
| 25 | }}} |
| 26 | |
| 27 | Once that the server has started, it is available on http://localhost:8080/radar/. Note that the server is just listening on the local interface and not (yet) accessible over the network. This is for security reason. |
| 28 | |