RadOD

Members
  • Posts

    39
  • Joined

  • Last visited

Posts posted by RadOD

  1. A question about Zabbix-Server and Zabbix-Webinterface - but perhaps a question more about dockers in general:  I installed both.  Server logs looks like it is running and the DB is being used.  However I can't configure anything at http://ip/zabbix as the page does not load.  I assume that is the webinterface docker's job - and if I look at the logs I see:

     

    2020/04/18 13:07:19 [emerg] 25051#25051: bind() to 0.0.0.0:80 failed (98: Address in use)
    
    nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address in use)

    Obviously port 80 is already in use elsewhere.  The webinterface docker does not give me any port options when setting it up, but configures itself to listen on 80 and 443. This doesn't conflict with any other docker, but Unraid itself is using those and (thankfully) must keep them from the container.

     

    Here is where things get more unclear to me: Zabbix is using a subdirectory and not its own port or a subdomain.  Is this where I would setup nginx to route traffic to the proper place? Or is the container network type just setup differently - as bridge?  Or both: setup let's encrypt with nginx and zabbix-webinterface both on their own proxy-net?

  2. On 2/24/2020 at 3:16 PM, Squid said:

    No it's not.  This is a snip from a completely default install of traccar

    
    -p '5000-5150:5000-5150/tcp' -p '5000-5150:5000-5150/udp'

     

    I guess what I should have said was everything else was default.  I did not realize that I could not edit the ports and just restart a container.  In the end I was unable to even delete and rebuild with altered ports.  I have not yet taken the time to learn how this docker works internally but I get what you are saying now.  

     

    Thanks for all the time you take responding to those of us 'learning the hard way'.

  3. But everything is default -- so I could not see how I could be doing that!

     

    Since I was merely adjusting editing the port range I did not pay much attention to "Link to traccar.xml: https://raw.githubusercontent.com/traccar/traccar/master/setup/traccar.xml Add it to your host path before starting the container."  Turn out that even if you have created traccar.xml, docker installation modifies its files including deleting or moving the traccar.xml file. It looks as though you need to recreate traccar.xml each and every time you edit your docker.

     

    And since traccar.xml is a configuration file, my guess is editing and restarting the docker with a new file may well wipe out any configuration you had.  Back-up!

     

     

  4. After a fresh install of the traccar docker I get an error that the command failed.  Unraid shows it created the docker, but attempting to start it fails. 

     

    This is the error on install.  I'm not sure how to interpret and further debug this error:

    root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='traccar' --net='bridge' -e TZ="America/Chicago" -e HOST_OS="Unraid" -p '8082:8082/tcp' -p '5000-5150:5000-5150/tcp' -p '5000-5150:5000-5150/udp' -v '/mnt/user/appdata/traccar/logs':'/opt/traccar/logs':'rw' -v '/mnt/user/appdata/traccar/traccar.xml':'/opt/traccar/conf/traccar.xml':'rw' --restart always --hostname traccar 'traccar/traccar' 
    b6252155b590c414bb1d755c395e0daf5835b6bb4ade7d0496cb3caafe8f85e2
    /usr/bin/docker: Error response from daemon: OCI runtime create failed: container_linux.go:346: starting container process caused "process_linux.go:449: container init caused "rootfs_linux.go:58: mounting \"/mnt/user/appdata/traccar/traccar.xml\" to rootfs \"/var/lib/docker/btrfs/subvolumes/e250d9ea7f9fcb448c569c00daa8d9cba97937dddef0f0b9b608ee98fd5f6b86\" at \"/var/lib/docker/btrfs/subvolumes/e250d9ea7f9fcb448c569c00daa8d9cba97937dddef0f0b9b608ee98fd5f6b86/opt/traccar/conf/traccar.xml\" caused \"not a directory\""": unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type.
    
    The command failed.

     

     

    I had it installed previously with no problems - but it used way more ports than I needed so I tried editing the container changing only the host port 1 and 2 from 5000-5150 to 5030-5035 which gave this error:

    root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='traccar' --net='bridge' -e TZ="America/Chicago" -e HOST_OS="Unraid" -p '8083:8082/tcp' -p '5030:5000-5150/tcp' -p '5030:5000-5150/udp' -v '/mnt/user/appdata/traccar/logs/':'/opt/traccar/logs':'rw' -v 'https://raw.githubusercontent.com/traccar/traccar/master/setup/traccar.xml':'/opt/traccar/conf/traccar.xml':'rw' --restart always --hostname traccar 'traccar/traccar' 
    
    /usr/bin/docker: invalid publish opts format (should be name=value but got '8083:8082/tcp').
    See '/usr/bin/docker run --help'.

     

    So I deleted the docker, under advanced I deleted to orphan image and I renamed the folder in appdata.

     

    If anyone can tell me in general what is going on, I don't really know what is going wrong or where to start with these errors.

  5. 3 hours ago, RichardU said:

    I'm getting this as well as "The Syncthing admin interface is configured to allow remote access without a password." 

     

    Did you ever get an answer? 

    "GUI address is overridden by startup options" means you set the address:port to access the syncthing docker when you create the docker.  You cannot modify that in the GUI itself.

     

     

  6. Thanks for this plug-in. Super helpful.

     

    Feature request:

    -Ability to sort by name or scheduled frequency. 

    -Also it would be helpful to be able to tag them with user created categories. 

     

    Mine are starting to get too many to keep organized.

  7. Thanks, that is quite helpful.  But just to confirm before I accidentally erase any data...

     

    My goal is to create a command in User Scripts to auto move, rename and sort photos from /Incoming into /Sorted. 

    exiftool '-filename<$EXIF:DateTimeOriginal' -d '/mnt/user/Photos/%Y-%m/%Y-%m-%d-%H%M%S%%-c.%%e' -r /mnt/user/Incoming

    Both folders are user shares.   /Incoming is public and /Photos is secure.  The windows user has r/w access to /Photos and I am assuming User Scripts is running scripts as root which should have access to all shares.  What is the proper way to reference the shares Photos and Incoming?

     

    Also, for the most part I am using the files from as the windows user via SMB.  I would assume SMB shares by design prevent users from accidentally screwing anything up.  However sometimes windows wants to download then re-upload files (I think when they are different shares), I am doing a lot of the initial sorting via a Krusader docker.  That is running as root, so when you are using the gui, you are root.  If I am moving files from place to place between the two shares, I would assume the proper path to the share is the same as above, correct?

     

    Finally - and I assume this is the same answer here too - I am using a dupeguru docker to go through the /Photos share to find duplicates and move them out to a separate /Duplicated share.  Same path?

  8. So far I have been treating subfolders of subfolders of /mnt as interchangeable.  But from the terminal, if I go to what I thought was the same directory mapped differently, one folder contains a lot more.  Can someone explain how/why the directories are set up this way?

    disk1.PNG

    user.PNG

  9. Clean install into alternate config directory and syncthing still seems unable to modify index.db folder contents.

     

    I installed xamindar syncthing overtop into same config directory (syncthing not Syncthing) then installed this one again.  Once db files written out by the other version, this one works fine.

  10. My syncthing docker is reporting "insufficient space on disk for database (/config/index-v0.14.0.db): 1.0 % < 1 %" for any and all folders.

     

    This is an almost-new Unraid install and there is plenty of space in appdata according to Unraid's GUI.  From within the docker:

     

    Filesystem      1K-blocks     Used  Available Use% Mounted on
    /dev/loop2       20971520  3231044   17510492  16% /
    tmpfs               65536        0      65536   0% /dev
    tmpfs            16491516        0   16491516   0% /sys/fs/cgroup
    shm                 65536        0      65536   0% /dev/shm
    shfs           9764349900 69093472 9695256428   1% /sync
    /dev/loop2       20971520  3231044   17510492  16% /etc/hosts
    tmpfs            16491516        0   16491516   0% /proc/acpi
    tmpfs            16491516        0   16491516   0% /sys/firmware

     

    So my guess is this is some sort of file permission issue. But I don't know how to fix it.

     

    (Oh also - I have a nearly identical unraid server which has no such issues.  As far as I can see the docker and pretty much everything are set up the same.)

     

  11. I found a workaround - I was able to save the results quickly then it immediately froze.  Restarting the container and loading the results works with none of the previous issues and a was able to mark, move and delete without any issues.  

     

    As far as errors in the container's log - unless I'm mistaken, that was the container's log that I posted.  And before setting the memory variable I did see lots of malloc errors there.  But I see nothing in that log that helps. 

  12. The dupeguru docker freezes after a fairly large task: 7.5 TiB, 534,090 files, 1,298 sub-folders -- all photos.

     

    Initially the task would cause the entire Unraid system to slow to a crawl and eventually hang.  Logs showed memory allocation errors.  I have 32GB so I added ran it with 16GB with the --memory option.  The task ran without a hitch but hangs upon trying to take action at the end.  Docker log (below) does not seem to show anything useful -- mainly VNC type stuff not dupeguru itself.  System logs show nothing related.  At the time of freeze up just a lot of 'Monitor: No array operation currently in progress'.

     

    It takes >24h to run, so trial and error here is not a good option. Is there a log someplace within the docker I should look to find errors thrown off by the dupeguru process itself?

    ErrorWarningSystemArrayLogin
    
    
    14/01/2020 09:28:23 Protocol version sent 3.8, using 3.8
    
    14/01/2020 09:28:23 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 09:28:23 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 09:28:23 Pixel format for client 127.0.0.1:
    14/01/2020 09:28:23 32 bpp, depth 24, little endian
    14/01/2020 09:28:23 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 09:28:23 no translation needed
    14/01/2020 09:28:23 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 09:28:23 Enabling full-color cursor updates for client 127.0.0.1
    14/01/2020 09:28:23 Using image quality level 6 for client 127.0.0.1
    14/01/2020 09:28:23 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 09:28:23 Using compression level 9 for client 127.0.0.1
    14/01/2020 09:28:23 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 09:28:23 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 09:28:23 Using tight encoding for client 127.0.0.1
    14/01/2020 09:28:24 client 1 network rate 119.5 KB/sec (30840.4 eff KB/sec)
    14/01/2020 09:28:24 client 1 latency: 1.5 ms
    14/01/2020 09:28:24 dt1: 0.0043, dt2: 0.1240 dt3: 0.0015 bytes: 15237
    14/01/2020 09:28:24 link_rate: LR_BROADBAND - 1 ms, 119 KB/s
    14/01/2020 09:28:24 client_set_net: 127.0.0.1 0.0000
    14/01/2020 09:28:24 created xdamage object: 0x40002c
    14/01/2020 09:28:32 created selwin: 0x40002d
    14/01/2020 09:28:32 called initialize_xfixes()
    14/01/2020 09:28:33 copy_tiles: allocating first_line at size 41
    14/01/2020 09:28:53 increased wireframe timeouts for slow network connection.
    14/01/2020 09:28:53 netrate: 119 KB/sec, latency: 1 ms
    14/01/2020 09:33:24 idle keyboard: turning X autorepeat back on.
    
    14/01/2020 10:27:30 Got connection from client 127.0.0.1
    14/01/2020 10:27:30 other clients:
    14/01/2020 10:27:30 127.0.0.1
    14/01/2020 10:27:30 Got 'ws' WebSockets handshake
    14/01/2020 10:27:30 Got protocol: binary
    14/01/2020 10:27:30 - webSocketsHandshake: using binary/raw encoding
    14/01/2020 10:27:30 - WebSockets client version hybi-13
    
    14/01/2020 10:27:30 incr accepted_client=2 for 127.0.0.1:33966 sock=11
    14/01/2020 10:27:30 Client Protocol Version 3.8
    
    14/01/2020 10:27:30 Protocol version sent 3.8, using 3.8
    
    14/01/2020 10:27:30 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 10:27:30 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 10:27:30 Pixel format for client 127.0.0.1:
    14/01/2020 10:27:30 32 bpp, depth 24, little endian
    14/01/2020 10:27:30 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 10:27:30 no translation needed
    14/01/2020 10:27:30 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 10:27:30 Using image quality level 6 for client 127.0.0.1
    14/01/2020 10:27:30 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 10:27:30 Using compression level 9 for client 127.0.0.1
    14/01/2020 10:27:30 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 10:27:30 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 10:27:30 Using tight encoding for client 127.0.0.1
    14/01/2020 10:27:30 client 2 network rate 217.9 KB/sec (38794.9 eff KB/sec)
    14/01/2020 10:27:30 client 2 latency: 2.7 ms
    14/01/2020 10:27:30 dt1: 0.0090, dt2: 0.0937 dt3: 0.0027 bytes: 22084
    14/01/2020 10:27:30 link_rate: LR_BROADBAND - 2 ms, 119 KB/s
    14/01/2020 10:27:30 client_set_net: 127.0.0.1 0.0001
    14/01/2020 10:27:31 active keyboard: turning X autorepeat off.
    
    14/01/2020 10:29:14 client_count: 1
    14/01/2020 10:29:14 Client 127.0.0.1 gone
    14/01/2020 10:29:14 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 10:29:14 FramebufferUpdate : 105 | 0/ 0 ( 0.0%)
    14/01/2020 10:29:14 LastRect : 1 | 12/ 12 ( 0.0%)
    14/01/2020 10:29:14 tight : 193 | 73124/ 4117772 ( 98.2%)
    14/01/2020 10:29:14 TOTALS : 299 | 73136/ 4117784 ( 98.2%)
    14/01/2020 10:29:14 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 10:29:14 PointerEvent : 43 | 258/ 258 ( 0.0%)
    14/01/2020 10:29:14 FramebufferUpdate : 106 | 1060/ 1060 ( 0.0%)
    14/01/2020 10:29:14 SetEncodings : 1 | 52/ 52 ( 0.0%)
    14/01/2020 10:29:14 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 10:29:14 TOTALS : 151 | 1390/ 1390 ( 0.0%)
    14/01/2020 10:29:53 got closure, reason 1001
    14/01/2020 10:29:53 rfbProcessClientNormalMessage: read: Connection reset by peer
    14/01/2020 10:29:53 client_count: 0
    14/01/2020 10:29:53 Restored X server key autorepeat to: 1
    14/01/2020 10:29:53 Client 127.0.0.1 gone
    14/01/2020 10:29:53 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 10:29:53 ServerCutText : 1 | 8/ 8 ( 0.0%)
    14/01/2020 10:29:53 FramebufferUpdate : 2738 | 0/ 0 ( 0.0%)
    14/01/2020 10:29:53 copyRect : 1 | 16/ 691824 (100.0%)
    14/01/2020 10:29:53 LastRect : 43 | 516/ 516 ( 0.0%)
    14/01/2020 10:29:53 tight : 2997 | 1844512/ 13936412 ( 86.8%)
    14/01/2020 10:29:53 RichCursor : 1 | 1374/ 1374 ( 0.0%)
    14/01/2020 10:29:53 TOTALS : 5781 | 1846426/ 14630134 ( 87.4%)
    14/01/2020 10:29:53 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 10:29:53 PointerEvent : 1687 | 10122/ 10122 ( 0.0%)
    14/01/2020 10:29:53 FramebufferUpdate : 2741 | 27410/ 27410 ( 0.0%)
    14/01/2020 10:29:53 SetEncodings : 1 | 56/ 56 ( 0.0%)
    14/01/2020 10:29:53 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 10:29:53 TOTALS : 4430 | 37608/ 37608 ( 0.0%)
    14/01/2020 10:29:53 destroyed xdamage object: 0x40002c
    14/01/2020 18:29:20 Got connection from client 127.0.0.1
    14/01/2020 18:29:20 other clients:
    14/01/2020 18:29:20 Got 'ws' WebSockets handshake
    14/01/2020 18:29:20 Got protocol: binary
    14/01/2020 18:29:20 - webSocketsHandshake: using binary/raw encoding
    14/01/2020 18:29:20 - WebSockets client version hybi-13
    
    14/01/2020 18:29:20 Disabled X server key autorepeat.
    14/01/2020 18:29:20 to force back on run: 'xset r on' (3 times)
    14/01/2020 18:29:20 incr accepted_client=3 for 127.0.0.1:48316 sock=10
    14/01/2020 18:29:20 Client Protocol Version 3.8
    
    14/01/2020 18:29:20 Protocol version sent 3.8, using 3.8
    
    14/01/2020 18:29:20 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 18:29:20 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 18:29:21 Pixel format for client 127.0.0.1:
    14/01/2020 18:29:21 32 bpp, depth 24, little endian
    14/01/2020 18:29:21 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 18:29:21 no translation needed
    14/01/2020 18:29:21 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 18:29:21 Enabling full-color cursor updates for client 127.0.0.1
    14/01/2020 18:29:21 Using image quality level 6 for client 127.0.0.1
    14/01/2020 18:29:21 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 18:29:21 Using compression level 9 for client 127.0.0.1
    14/01/2020 18:29:21 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 18:29:21 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 18:29:21 Using tight encoding for client 127.0.0.1
    14/01/2020 18:29:25 client_set_net: 127.0.0.1 0.0000
    14/01/2020 18:29:25 created xdamage object: 0x40002e
    14/01/2020 18:34:21 idle keyboard: turning X autorepeat back on.
    
    14/01/2020 19:29:21 got closure, reason 1001
    14/01/2020 19:29:21 rfbProcessClientNormalMessage: read: Connection reset by peer
    14/01/2020 19:29:21 client_count: 0
    14/01/2020 19:29:21 Client 127.0.0.1 gone
    14/01/2020 19:29:21 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 19:29:21 FramebufferUpdate : 2726 | 0/ 0 ( 0.0%)
    14/01/2020 19:29:21 LastRect : 1 | 12/ 12 ( 0.0%)
    14/01/2020 19:29:21 tight : 2780 | 2546996/ 10724048 ( 76.2%)
    14/01/2020 19:29:21 RichCursor : 1 | 1374/ 1374 ( 0.0%)
    14/01/2020 19:29:21 TOTALS : 5508 | 2548382/ 10725434 ( 76.2%)
    14/01/2020 19:29:21 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 19:29:21 FramebufferUpdate : 2728 | 27280/ 27280 ( 0.0%)
    14/01/2020 19:29:21 SetEncodings : 1 | 56/ 56 ( 0.0%)
    14/01/2020 19:29:21 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 19:29:21 TOTALS : 2730 | 27356/ 27356 ( 0.0%)
    14/01/2020 19:29:21 destroyed xdamage object: 0x40002e
    14/01/2020 21:00:06 Got connection from client 127.0.0.1
    14/01/2020 21:00:06 other clients:
    14/01/2020 21:00:06 Got 'ws' WebSockets handshake
    14/01/2020 21:00:06 Got protocol: binary
    14/01/2020 21:00:06 - webSocketsHandshake: using binary/raw encoding
    14/01/2020 21:00:06 - WebSockets client version hybi-13
    
    14/01/2020 21:00:06 Disabled X server key autorepeat.
    14/01/2020 21:00:06 to force back on run: 'xset r on' (3 times)
    14/01/2020 21:00:06 incr accepted_client=4 for 127.0.0.1:52812 sock=10
    14/01/2020 21:00:06 Client Protocol Version 3.8
    
    14/01/2020 21:00:06 Protocol version sent 3.8, using 3.8
    
    14/01/2020 21:00:06 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 21:00:06 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 21:00:06 Pixel format for client 127.0.0.1:
    14/01/2020 21:00:06 32 bpp, depth 24, little endian
    14/01/2020 21:00:06 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 21:00:06 no translation needed
    14/01/2020 21:00:06 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 21:00:06 Enabling full-color cursor updates for client 127.0.0.1
    14/01/2020 21:00:06 Using image quality level 6 for client 127.0.0.1
    14/01/2020 21:00:06 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 21:00:06 Using compression level 9 for client 127.0.0.1
    14/01/2020 21:00:06 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 21:00:06 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 21:00:06 Using tight encoding for client 127.0.0.1
    14/01/2020 21:00:10 client_set_net: 127.0.0.1 0.0000
    14/01/2020 21:00:10 active keyboard: turning X autorepeat off.
    
    14/01/2020 21:00:10 created xdamage object: 0x40002f
    14/01/2020 21:05:08 idle keyboard: turning X autorepeat back on.
    
    14/01/2020 21:10:09 got closure, reason 1001
    14/01/2020 21:10:09 rfbProcessClientNormalMessage: read: Connection reset by peer
    14/01/2020 21:10:09 client_count: 0
    14/01/2020 21:10:09 Client 127.0.0.1 gone
    14/01/2020 21:10:09 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 21:10:09 FramebufferUpdate : 388 | 0/ 0 ( 0.0%)
    14/01/2020 21:10:09 LastRect : 1 | 12/ 12 ( 0.0%)
    14/01/2020 21:10:09 tight : 421 | 408370/ 4929724 ( 91.7%)
    14/01/2020 21:10:09 RichCursor : 1 | 1374/ 1374 ( 0.0%)
    14/01/2020 21:10:09 TOTALS : 811 | 409756/ 4931110 ( 91.7%)
    14/01/2020 21:10:09 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 21:10:09 FramebufferUpdate : 389 | 3890/ 3890 ( 0.0%)
    14/01/2020 21:10:09 SetEncodings : 1 | 56/ 56 ( 0.0%)
    14/01/2020 21:10:09 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 21:10:09 TOTALS : 391 | 3966/ 3966 ( 0.0%)
    14/01/2020 21:10:09 destroyed xdamage object: 0x40002f
    14/01/2020 21:11:02 Got connection from client 127.0.0.1
    14/01/2020 21:11:02 other clients:
    14/01/2020 21:11:02 Got 'ws' WebSockets handshake
    14/01/2020 21:11:02 Got protocol: binary
    14/01/2020 21:11:02 - webSocketsHandshake: using binary/raw encoding
    14/01/2020 21:11:02 - WebSockets client version hybi-13
    
    14/01/2020 21:11:02 Disabled X server key autorepeat.
    14/01/2020 21:11:02 to force back on run: 'xset r on' (3 times)
    14/01/2020 21:11:02 incr accepted_client=5 for 127.0.0.1:53144 sock=10
    14/01/2020 21:11:02 Client Protocol Version 3.8
    
    14/01/2020 21:11:02 Protocol version sent 3.8, using 3.8
    
    14/01/2020 21:11:02 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 21:11:02 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 21:11:02 Pixel format for client 127.0.0.1:
    14/01/2020 21:11:02 32 bpp, depth 24, little endian
    14/01/2020 21:11:02 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 21:11:02 no translation needed
    14/01/2020 21:11:02 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 21:11:02 Enabling full-color cursor updates for client 127.0.0.1
    14/01/2020 21:11:02 Using image quality level 6 for client 127.0.0.1
    14/01/2020 21:11:02 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 21:11:02 Using compression level 9 for client 127.0.0.1
    14/01/2020 21:11:02 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 21:11:02 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 21:11:02 Using tight encoding for client 127.0.0.1
    14/01/2020 21:11:02 client 5 network rate 320.7 KB/sec (52646.6 eff KB/sec)
    14/01/2020 21:11:02 client 5 latency: 1.2 ms
    14/01/2020 21:11:02 dt1: 0.0112, dt2: 0.0641 dt3: 0.0012 bytes: 23965
    14/01/2020 21:11:02 link_rate: LR_LAN - 1 ms, 320 KB/s
    14/01/2020 21:11:03 client_set_net: 127.0.0.1 0.0001
    14/01/2020 21:11:03 active keyboard: turning X autorepeat off.
    
    14/01/2020 21:11:03 created xdamage object: 0x400030
    14/01/2020 21:16:03 idle keyboard: turning X autorepeat back on.
    
    14/01/2020 21:21:05 got closure, reason 1001
    14/01/2020 21:21:05 rfbProcessClientNormalMessage: read: Connection reset by peer
    14/01/2020 21:21:05 client_count: 0
    14/01/2020 21:21:05 Client 127.0.0.1 gone
    14/01/2020 21:21:05 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 21:21:05 FramebufferUpdate : 611 | 0/ 0 ( 0.0%)
    14/01/2020 21:21:05 LastRect : 1 | 12/ 12 ( 0.0%)
    14/01/2020 21:21:05 tight : 644 | 510341/ 5196848 ( 90.2%)
    14/01/2020 21:21:05 RichCursor : 1 | 1374/ 1374 ( 0.0%)
    14/01/2020 21:21:05 TOTALS : 1257 | 511727/ 5198234 ( 90.2%)
    14/01/2020 21:21:05 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 21:21:05 FramebufferUpdate : 612 | 6120/ 6120 ( 0.0%)
    14/01/2020 21:21:05 SetEncodings : 1 | 56/ 56 ( 0.0%)
    14/01/2020 21:21:05 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 21:21:05 TOTALS : 614 | 6196/ 6196 ( 0.0%)
    14/01/2020 21:21:05 destroyed xdamage object: 0x400030
    14/01/2020 21:22:16 Got connection from client 127.0.0.1
    14/01/2020 21:22:16 other clients:
    14/01/2020 21:22:16 Got 'ws' WebSockets handshake
    14/01/2020 21:22:16 Got protocol: binary
    14/01/2020 21:22:16 - webSocketsHandshake: using binary/raw encoding
    14/01/2020 21:22:16 - WebSockets client version hybi-13
    
    14/01/2020 21:22:16 Disabled X server key autorepeat.
    14/01/2020 21:22:16 to force back on run: 'xset r on' (3 times)
    14/01/2020 21:22:16 incr accepted_client=6 for 127.0.0.1:53480 sock=10
    14/01/2020 21:22:16 Client Protocol Version 3.8
    
    14/01/2020 21:22:16 Protocol version sent 3.8, using 3.8
    
    14/01/2020 21:22:16 rfbProcessClientSecurityType: executing handler for type 1
    14/01/2020 21:22:16 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    14/01/2020 21:22:17 Pixel format for client 127.0.0.1:
    14/01/2020 21:22:17 32 bpp, depth 24, little endian
    14/01/2020 21:22:17 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    14/01/2020 21:22:17 no translation needed
    14/01/2020 21:22:17 Enabling NewFBSize protocol extension for client 127.0.0.1
    14/01/2020 21:22:17 Enabling full-color cursor updates for client 127.0.0.1
    14/01/2020 21:22:17 Using image quality level 6 for client 127.0.0.1
    14/01/2020 21:22:17 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    14/01/2020 21:22:17 Using compression level 9 for client 127.0.0.1
    14/01/2020 21:22:17 Enabling LastRect protocol extension for client 127.0.0.1
    14/01/2020 21:22:17 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    14/01/2020 21:22:17 Using tight encoding for client 127.0.0.1
    14/01/2020 21:22:17 client_set_net: 127.0.0.1 0.0001
    14/01/2020 21:22:17 active keyboard: turning X autorepeat off.
    
    14/01/2020 21:22:17 created xdamage object: 0x400031
    14/01/2020 21:27:17 idle keyboard: turning X autorepeat back on.
    
    14/01/2020 21:32:52 got closure, reason 1001
    14/01/2020 21:32:52 rfbProcessClientNormalMessage: read: Connection reset by peer
    14/01/2020 21:32:52 client_count: 0
    14/01/2020 21:32:52 Client 127.0.0.1 gone
    14/01/2020 21:32:52 Statistics events Transmit/ RawEquiv ( saved)
    14/01/2020 21:32:52 FramebufferUpdate : 880 | 0/ 0 ( 0.0%)
    14/01/2020 21:32:52 LastRect : 1 | 12/ 12 ( 0.0%)
    14/01/2020 21:32:52 tight : 909 | 678200/ 5614620 ( 87.9%)
    14/01/2020 21:32:52 RichCursor : 1 | 1374/ 1374 ( 0.0%)
    14/01/2020 21:32:52 TOTALS : 1791 | 679586/ 5616006 ( 87.9%)
    14/01/2020 21:32:52 Statistics events Received/ RawEquiv ( saved)
    14/01/2020 21:32:52 PointerEvent : 71 | 426/ 426 ( 0.0%)
    14/01/2020 21:32:52 FramebufferUpdate : 881 | 8810/ 8810 ( 0.0%)
    14/01/2020 21:32:52 SetEncodings : 1 | 56/ 56 ( 0.0%)
    14/01/2020 21:32:52 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    14/01/2020 21:32:52 TOTALS : 954 | 9312/ 9312 ( 0.0%)
    14/01/2020 21:32:52 destroyed xdamage object: 0x400031
    Corrupt JPEG data: 524288 extraneous bytes before marker 0xdb
    15/01/2020 07:31:12 Got connection from client 127.0.0.1
    15/01/2020 07:31:12 other clients:
    15/01/2020 07:31:12 Got 'ws' WebSockets handshake
    15/01/2020 07:31:12 Got protocol: binary
    15/01/2020 07:31:12 - webSocketsHandshake: using binary/raw encoding
    15/01/2020 07:31:12 - WebSockets client version hybi-13
    
    15/01/2020 07:31:12 Disabled X server key autorepeat.
    15/01/2020 07:31:12 to force back on run: 'xset r on' (3 times)
    15/01/2020 07:31:12 incr accepted_client=7 for 127.0.0.1:44222 sock=10
    15/01/2020 07:31:12 Client Protocol Version 3.8
    
    15/01/2020 07:31:12 Protocol version sent 3.8, using 3.8
    
    15/01/2020 07:31:12 rfbProcessClientSecurityType: executing handler for type 1
    15/01/2020 07:31:12 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    15/01/2020 07:31:12 Pixel format for client 127.0.0.1:
    15/01/2020 07:31:12 32 bpp, depth 24, little endian
    15/01/2020 07:31:12 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    15/01/2020 07:31:12 no translation needed
    15/01/2020 07:31:12 Enabling NewFBSize protocol extension for client 127.0.0.1
    15/01/2020 07:31:12 Using image quality level 6 for client 127.0.0.1
    15/01/2020 07:31:12 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    15/01/2020 07:31:12 Using compression level 9 for client 127.0.0.1
    15/01/2020 07:31:12 Enabling LastRect protocol extension for client 127.0.0.1
    15/01/2020 07:31:12 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    15/01/2020 07:31:12 Using tight encoding for client 127.0.0.1
    15/01/2020 07:31:14 client_set_net: 127.0.0.1 0.0000
    15/01/2020 07:31:14 active keyboard: turning X autorepeat off.
    
    15/01/2020 07:31:14 created xdamage object: 0x400032
    15/01/2020 07:31:35 client 7 network rate 793.3 KB/sec (9893.3 eff KB/sec)
    15/01/2020 07:31:35 client 7 latency: 2.3 ms
    15/01/2020 07:31:35 dt1: 0.0027, dt2: 0.0174 dt3: 0.0023 bytes: 15096
    15/01/2020 07:31:35 link_rate: LR_LAN - 2 ms, 793 KB/s
    15/01/2020 07:38:00 idle keyboard: turning X autorepeat back on.
    
    15/01/2020 07:45:03 got closure, reason 1001
    15/01/2020 07:45:03 rfbProcessClientNormalMessage: read: Connection reset by peer
    15/01/2020 07:45:03 client_count: 0
    15/01/2020 07:45:03 Client 127.0.0.1 gone
    15/01/2020 07:45:03 Statistics events Transmit/ RawEquiv ( saved)
    15/01/2020 07:45:03 FramebufferUpdate : 546 | 0/ 0 ( 0.0%)
    15/01/2020 07:45:03 LastRect : 35 | 420/ 420 ( 0.0%)
    15/01/2020 07:45:03 tight : 1553 | 831284/ 11704724 ( 92.9%)
    15/01/2020 07:45:03 TOTALS : 2134 | 831704/ 11705144 ( 92.9%)
    15/01/2020 07:45:03 Statistics events Received/ RawEquiv ( saved)
    15/01/2020 07:45:03 KeyEvent : 70 | 560/ 560 ( 0.0%)
    15/01/2020 07:45:03 PointerEvent : 1112 | 6672/ 6672 ( 0.0%)
    15/01/2020 07:45:03 FramebufferUpdate : 547 | 5470/ 5470 ( 0.0%)
    15/01/2020 07:45:03 SetEncodings : 1 | 52/ 52 ( 0.0%)
    15/01/2020 07:45:03 SetPixelFormat : 1 | 20/ 20 ( 0.0%)
    15/01/2020 07:45:03 TOTALS : 1731 | 12774/ 12774 ( 0.0%)
    15/01/2020 07:45:06 destroyed xdamage object: 0x400032
    15/01/2020 07:46:11 Got connection from client 127.0.0.1
    15/01/2020 07:46:11 other clients:
    15/01/2020 07:46:11 Got 'ws' WebSockets handshake
    15/01/2020 07:46:11 Got protocol: binary
    15/01/2020 07:46:11 - webSocketsHandshake: using binary/raw encoding
    15/01/2020 07:46:11 - WebSockets client version hybi-13
    
    15/01/2020 07:46:11 Disabled X server key autorepeat.
    15/01/2020 07:46:11 to force back on run: 'xset r on' (3 times)
    15/01/2020 07:46:11 incr accepted_client=8 for 127.0.0.1:44680 sock=10
    15/01/2020 07:46:11 Client Protocol Version 3.8
    
    15/01/2020 07:46:11 Protocol version sent 3.8, using 3.8
    
    15/01/2020 07:46:11 rfbProcessClientSecurityType: executing handler for type 1
    15/01/2020 07:46:11 rfbProcessClientSecurityType: returning securityResult for client rfb version >= 3.8
    
    15/01/2020 07:46:11 Pixel format for client 127.0.0.1:
    15/01/2020 07:46:11 32 bpp, depth 24, little endian
    15/01/2020 07:46:11 true colour: max r 255 g 255 b 255, shift r 16 g 8 b 0
    15/01/2020 07:46:11 no translation needed
    15/01/2020 07:46:11 Enabling NewFBSize protocol extension for client 127.0.0.1
    15/01/2020 07:46:11 Using image quality level 6 for client 127.0.0.1
    15/01/2020 07:46:11 Using JPEG subsampling 0, Q79 for client 127.0.0.1
    15/01/2020 07:46:11 Using compression level 9 for client 127.0.0.1
    15/01/2020 07:46:11 Enabling LastRect protocol extension for client 127.0.0.1
    15/01/2020 07:46:11 rfbProcessClientNormalMessage: ignoring unsupported encoding type Enc(0xFFFFFECC)
    15/01/2020 07:46:11 Using tight encoding for client 127.0.0.1
    15/01/2020 07:46:12 client_set_net: 127.0.0.1 0.0000
    15/01/2020 07:46:12 active keyboard: turning X autorepeat off.
    
    15/01/2020 07:46:12 created xdamage object: 0x400033

     

  13. I intend to do cloud based back up as well for some files.  But I want something I can have my hands on as needed.  Also, I also have an existing site to site VPN, so ISP's and forwarding should not be an issue.

     

    Yes, I agree most of the time I should probably just move files being worked on local and then return them to the NAS when done.  But my real problem is that often I never 'finish' making adjustments so I never put them back on the NAS.  I might want to backup some local directories to Unraid as well as have some as a network backup drive.

  14. I am in the planning stages of creating a home NAS and a complimentary offsite NAS - probably Unraid, but not tied to anything yet.  How should I be configuring the two systems differently?  I have yet to actually use unraid yet and I am trying to set this up as a properly the first time, hopefully, and not have to go back to make it secure.

     

    The local system will be largely photo archive but I do some editing on some large file sets.  I imagine I'd want to make these files local to work on -- but the point I'm trying to make is most files will only rarely be accessed but need to be extremely safe, but I do want to have faster access when needed.  Also, archiving security recordings. And possibly hosting a small mysql server.

     

    The remote system will be 99% just off site backup with file versioning.  However there may be times when I want to edit files at the remote location. But consider it 1 user at a time total.

     

    For the local system, what should I consider: an SSD cache drive?  10gbE? 

    For the remote system: extra drive space for versioning backup?  Extra parity drives?