- Connect the NUC's Ethernet port to an internet-connected LAN.
- Download https://s3-us-west-2.amazonaws.com/posm/posm-install-24180cb-fat.tar
- Insert a USB stick
- Unmount if necessary
diskutil unmountDisk /dev/<USB>
. (diskutil list
will show available devices on OS X) - Image it to a USB
drive.
(
sudo dd if=ubuntu-14.04.3-server-amd64.img of=/dev/r<USB> bs=1m
or similar). It will remount asPOSM
when done. - Update
/Volumes/POSM/posm-build
:git pull
- (optional) Put any local settings in
posm-build/kickstart/etc/settings.local
. - Boot to the USB stick by pressing
F10
and pickInstall POSM Server
from the menu. - Watch it reboot. After the system has restarted, the POSM bootstrap installation will automatically begin.
- Log in as
root
/posm
andtail -f bootstrap.log
to check the installation status. This may take a while. - Watch it reboot once installation is complete.
Steps on Linux are similar, although the device name will differ.
- Install Ubuntu 14.04 LTS minimal server however you like
- See details below for Ubuntu Server Install Details for NUC
- Become
root
wget -q -O - https://github.com/AmericanRedCross/posm-build/archive/master.tar.gz | tar -zxf - -C /root --strip=2
- Put any local settings in
/root/etc/settings.local
(see/root/etc/settings
)
- Important ones for development are the ones that involve DNS and URLs:
posm_hostname="whateveryouwant"
posm_domain="yourdomain.foo"
posm_fqdn="whateveryouwant.yourdomain.foo"
posm_base_url="http://${posm_fqdn}"
fp_api_base_url="${posm_base_url}/fp"
fp_tile_base_url="${posm_base_url}/fp-tiler"
/root/scripts/bootstrap.sh base virt nodejs ruby gis mysql postgis nginx osm fieldpapers omk tl carto tessera admin
(note:wifi
is omitted from this list)/root/scripts/bootstrap.sh demo_data
, if you want it
- Create a PXE boot server for Ubuntu 14.04 LTS
- Installing to a NUC using PXE seems problematic due to the install happening in Legacy BIOS mode, not UEFI
- Put this entire repo at
/posm
on your Kickstart / PXE web server - PXE boot as approriate to use the
POSM_Server.cfg
preseed, for example, add the following on the kernel line:auto=true url=http://ks/posm/kickstart/POSM_Server.cfg
- The
POSM_Server.cfg
preseed expects that your kickstart server has a hostname ofks
, and you have a Ubuntu package cache (e.g.apt-cacher-ng
) athttp://apt-proxy:3142
. - Edit Ubuntu cache/proxy in
mirror/http/proxy
(set to empty string to use default, do not just comment out) - Edit PXE server hostnames in
partman/early_command
andpreseed/late_command
- At least 2GB RAM, 8GB preferred
- At least a 30GB drive
- A compatible wireless adapter, for running a Software Access Point ("Captive Portal",
hostapd
)
Configuration is achieved by putting local settings into a settings.local
file. See etc/settings for available settings. Ports for individual services are set here for example.
| URI | Service | Internal URL |
| --- | --- | --- | --- |
| /tiles/{style}
| tessera | http://127.0.0.1:8082 |
| /fp
| Field Papers | http://127.0.0.1:3000/fp |
| /fp-tiler
| Field Papers Tiler | http://127.0.0.1:8080/fp-tiler |
| /fp-tasks
| Field Papers Tasks | http://127.0.0.1:8081/fp-tasks |
| /omk
| OpenMapKit Server | http://127.0.0.1:3210 |
| /osm
| OpenStreetMap-website | http://127.0.0.1:9000 |