spants

Community Developer
  • Posts

    637
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by spants

  1. I have updated the Node-Red container - added lots more nodes, updated Node-Red and Node to the latest versions. MQTT is next on my list. I would like to add username/password to the settings page - I'm reading up on that....
  2. Sorry - I had forgotten about adding MQTT passwords, I will add it shortly. - I am also planning some updates to Node-Red nodes Tony
  3. ah - I cleared browser cache and it now works!. Thanks for looking
  4. on 6.1-rc4? I also see this in my syslog: Aug 15 20:08:52 Tower emhttp: Deprecated relative cmd path: docker logs --tail=350 -f spotweb Aug 15 20:08:52 Tower emhttp: /usr/local/emhttp/docker logs --tail=350 -f spotweb 2>&1 Aug 15 20:08:59 Tower emhttp: Deprecated relative cmd path: docker logs --tail=350 -f spotweb Aug 15 20:08:59 Tower emhttp: /usr/local/emhttp/docker logs --tail=350 -f spotweb 2>&1 Aug 15 20:09:03 Tower emhttp: Deprecated relative cmd path: docker logs --tail=350 -f Sonarr Aug 15 20:09:03 Tower emhttp: /usr/local/emhttp/docker logs --tail=350 -f Sonarr 2>&1
  5. I get this error when I click any log icons on the docker tab, is it just me? sh: /usr/local/emhttp/docker: No such file or directory
  6. I'm using a HH5 with unraid... Would like to replace it for something with reliable wifi sometime soon. I see it in the HH5 menu and I use portforwarding ok (openvpn etc)
  7. Just to add, I am having exactly the same issues! Tony
  8. Tried both.. I am suspecting a flaky drive (although no errors in unraid) so I am pre clearing a couple to see if another drive works better. I did try a different user share and it seemed to create the sparse disk bundle ok. Will try again tomorrow when the drives are finished clearing :-)
  9. Interesting, if I create a sparsebundle on a different smb server shared drive and copy to my unraid... it starts to backup. So it seems as though the is a problem is due to Unraid creating these files.....
  10. I'm using Unraid 6RCx and having all sorts of issues backing up my Macbook. My preferred method is to use CCC with smb by creating a sparseimage disk file: 1) I have created a public share 2) CCC set to create the sparseimage disk (acknowledge the 4GB limit if FAT32) 3) It starts to create a file macbook.sparseimage (showing 876.6MB in Finder) 4) After 5 mins of trying to create it, it gives an error that file cannot be created and deletes the file (Destination filesystem not responding) With Time Machine it would backup (AFP switched on) but when I tried to look at files created in the past, it would take forever to find anything. I'm using OSX 10.10.3 Anyone got this working? Tony
  11. Hmm, all of my shares show the yellow triangle meaning: Some or all files are on unprotected storage.... Parity is ok and I'm not using a cache drive. Any ideas?
  12. Glad its working!. I did a similar thing with my Tado heating system. Why not use emoncms as the back end for the energy data?. Actually that may be a great docker to build...... @Dallas.toth, which nodes would you like?
  13. could you create a share, limited to one disk that had a minimum space free: eg 1TB disk with minimum space 800GB Other shares could also use the drive so it isn't wasted space? (or is this an unpaid 6 only option?)
  14. Guacamole fonts.... On an early Unraid6b everything looked great on ssh sessions but now I'm using 6b15 the fonts for ssh are not correct - see attachment. I have tried changing the size and it makes the font bigger but the gaps are still there. Do I set a default terminal type for ssh somewhere or is it in Guacamole?. The Guacamole boards talk about installing other fonts but I'm not sure that is the problem. I have 6B15 with Nerdpack plugin (has Screen command - could that cause it?)
  15. Thanks, I did some research and finally understood the process!. I have set up a share using AFP and using CCC with sparseimagebundle. Finally I will be able to get rid of the osx bug that spins up my external backup hdd in Finder
  16. Interesting - I use CCC and have just set up a disk to use timemachine. I would prefer to use CCC but I was wondering how would you do a bare metal recovery from a sparseimage on unraid?. Is it easy just to recover one file from the sparseimage? regards Tony
  17. Solved it!.... I overlooked that the installation of the software uses the root directory of the server, not /ajaxplorer as shown in the defaults and help page So on the setting page for WEBDAV, change the Shares URI to /shares (default is ajaxplorer/shares) Working great now, thanks!
  18. k, will have to play some more. I would like to use webdav with Expandrive on my Mac... cheers tony
  19. Looks good but I'm having problems with webdav - anyone have it working? (is the rewrite engine enabled in apache = common problem apparently, or it may just be me)
  20. what disk format is the usb disk in? gfjardim released a tool to mount USB disks on Unraid that may help (it also installs NTFS3G) Personally I would try and mount it on a sata controller (take drive out of the usb box) and copy directly. Tony
  21. Might want a larger file than 10g ... I ran out of room on mine
  22. here are the step-by-step commands as I just had to reinstall: It creates two dockers, one to hold the data and one is the app. Do not manually delete any!. You could change the data volume for a directory if you wish: docker run --name OVPN_DATA -v /etc/openvpn busybox docker run --volumes-from OVPN_DATA --rm kylemanna/openvpn ovpn_genconfig -u udp://YOURSERVER.COM docker run --volumes-from OVPN_DATA --rm -it kylemanna/openvpn ovpn_initpki docker run --volumes-from OVPN_DATA -d -p 1194:1194/udp --cap-add=NET_ADMIN kylemanna/openvpn docker run --volumes-from OVPN_DATA --rm -it kylemanna/openvpn easyrsa build-client-full CLIENTNAME nopass //this last line saves the ovpn connection file to the current directory (needed for the client) docker run --volumes-from OVPN_DATA --rm kylemanna/openvpn ovpn_getclient CLIENTNAME > CLIENTNAME.ovpn Change CLIENTNAME and YOURSERVER to suit. Tony
  23. Yes, I did the docker update and then when going back into owncloud, I get the upgrading database issue. It just stays there. I have to reinstall everything from scratch each time (deleting docker appdata)
  24. Whenever I try and do an update to the owncloud docker, it tries to update my database and just gets stuck on the page that says: "This ownCloud instance is currently being updated, which may take a while. This page will refresh itself when the ownCloud instance is available again." I'm using a mariadb docker with this. Any ideas? Tony