I tried the recommended method here without luck. When done from the UniFi controller the upgrade would just not happen, no error given as to why. I then tried it directly on the AP and found that it wasn’t able to verify the SSL cert from UBNT’s site.
Working on some of the initial steps to moving this blog to docker today. Since containers aren’t exactly presistent I have to get the database migrated to a dedicated mysql node. Once that is done I can move the blog into a python2.7 container and onto a new docker host.
First I spun up a new Debian VM, as is tradition, and after updating and upgrading, I installed mysql-server 5.5.
Read more...
CPU acting very erratic, front panel sometimes doesn’t boot, other times will go completly haywire (See Video) Initially thought PSU ripple due to age of caps and reported behavior of CPU when the PSU isn’t clean.
Confirmed PSU ripple not the cause, after confirming correct scope settings on FB group.
Started suspecting CPU itself was bad, asked around for replacements, as well as eprom.
Europa is “taking a hiatus” as of 11/18/16, no good
Read more...
Cache Proxy in front of https://mc-map.sqweeb.net
Add another 32g disk to the proxy VM - proxy-02 Format, make file system and mount new disk at /mnt/cache/ Add line to /etc/fstab to mount disk on boot: /dev/vda1 /mnt/cache ext4 defaults 0 2 Add the following snippet to /etc/nginx/snippets/proxy-defaults.conf: proxy_cache_path /mnt/cache levels=1:2 keys_zone=my_cache:10m max_size=20g inactive=60m; Update /etc/nginx/sites-available/mc-map.sqweeb.net to use the cache: server { … proxy_cache my_cache; proxy_cache_valid 200 302 10m; add_header X-Cache-Status $upstream_cache_status; .
Read more...
https://www.unicoda.com/?p=1624
sudo apt-get install python-dev python-pip postgresql ruby sudo pip install ecdsa fabric pycrypto git clone https://github.com/lincolnloop/cabot.git cd cabot cp conf/production.env.example conf/production.env # Add at least graphite url and login to config nano env/production.env fab provision -H root@localhost fab deploy -H ubuntu@localhost su - ubuntu source /home/ubuntu/venv/bin/activate cd cabot foreman start -e conf/production.env Modifying fabric provision/deploy for multi instance deploys:
Clone official repo Make new local branch - ’tesl’ Find/replace all instances of ubuntu with tesl in fabfile.
Read more...