bombz

Members
  • Posts

    613
  • Joined

  • Last visited

Community Answers

  1. bombz's post in [SOLVED] Cannot Access WebGUI - 6.11.5 was marked as the answer   
    Hello, 
     
    Would that be in a .cfg file somewhere on the flash drive?
    I am trying to understand how he got it to the state it is in. Could he have done something in docker, and revproxy that made this act up in such a way?

    Look forward to hearing back. Thank you for your assistance with this!

    EDIT:
    Found in
    Settings->Management Access

    Thanks
  2. bombz's post in [SOLVED] Docker Container - How to Copy Files from SSH Bash to Unraid Array or Remote System?? was marked as the answer   
    EDIT
    After hunting and searching I was able to successfully figure out how to
     
    connect to docker container sudo and nano within docker copy files from docker container to unraid copy files from unraid to docker container(s)  
     

    How to connect to docker container:
    docker exec -it contaidername /bin/bash ls -l To find the files or paths that need to be accessed for the copy command
     
    exit  
    Add sudo & nano within docker container:

    Sudo:
    root@dockercontainerID# apk add sudo (1/1) Installing sudo (1.9.10-r0) Executing busybox-1.35.0-r17.trigger OK: 279 MiB in 80 packages  
    Nano:
    root@dockercontainerID:/# apk add nano fetch http://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz fetch http://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/APKINDEX.tar.gz (1/1) Installing nano (6.3-r0) Executing busybox-1.35.0-r17.trigger OK: 277 MiB in 79 packages

     
    How to copy files from docker container to UnRaid server:
     
    root@servername:~# sudo docker cp containername:/filename.xxx ~/file path on unraid -OR-
    root@servername:~# sudo docker cp containername:/filename.xxx /file path on unraid EXAMPLE:
    root@servername:~# sudo docker cp mariadb:/filename.txt ~/mnt/cache/
     
    How to copy files from Unraid server to docker container:
     
    root@servername:~# sudo docker cp /unraid/location/123.txt containername:/  
    EXAMPLE::
    root@servername:~# sudo docker cp /mnt/cache/123.txt mariadb:/

    Hope that helps someone going down the same path as me tonight
     
    Cheers!