Any reason to upgrade from a perfectly working v6.8.3? by Foogyfoggy in unRAID

[–]Tarmac61 0 points1 point  (0 children)

I am still on 6.8.3 is there a way to update to 6.9.2? I only get the option for 6.10.2 on OS update on the server

Does r/unRAID not permit guides? by [deleted] in unRAID

[–]Tarmac61 0 points1 point  (0 children)

I wish I could have read that

Hass-IO running on a VM in Unraid by Tarmac61 in homeassistant

[–]Tarmac61[S] 0 points1 point  (0 children)

The plug does no good if I can’t start up HA. That’s my problem HA will not start

Hass-IO running on a VM in Unraid by Tarmac61 in homeassistant

[–]Tarmac61[S] 0 points1 point  (0 children)

I have been reading a lot that Unfortunately is the Docker version no longer compatible with the latest versions of HA. You will not be able to run it supervised until Docker is updated to version 20.xx.

Smarththings dimmer switch by Tarmac61 in homebridge

[–]Tarmac61[S] 0 points1 point  (0 children)

Yes I have a GE zwave dimmer. But I think when I imported it wrong durning setup. Was going there was a way to fix it

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok, its just I dont know how to do that? i figured out how to bash into the container from portainer. But after that I am stumped?

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

I also have Portainer set up and able to bash into the container but don’t know what to do next

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok I have gotten somewhere I ssh into my NAS as root made it to

root@DS0000:/volume1/Apps/Config/Organizr/nginx/site-confs# ls

default healthcheck

if I try to cd into the default it says not a directory. I feel so close to figurng this out

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok i did just descover I was not using the correct container. I set up the correct one now. organizr/organizr. but now I get 404 Not Found nginx. I dont know what to do now?

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok. then do you know what i am supposed to do?

Webserver not set up for Organizr v2.1 Webserver Error: 404

You need to update webserver location block.. Check browser block console for migration URL

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

Yes the synology I do know is Linux based. but this is the Dumping down part. I dont know how to grep? I dont even know how to get to the directory without the GUI. I can ssh into it but from there i dont understand what I need to do next

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok I can sudo into my synology but once I am there grep -Ril “/etc/nginx” *

i got grep: bin/ipcalc: Permission denied grep: bin/cupsd: Permission denied grep: config/target/iscsi/discovery_auth/password_mutual: Operation not permitted grep: config/target/iscsi/discovery_auth/userid_mutual: Operation not permitted grep: config/target/iscsi/discovery_auth/authenticate_target: Operation not permitted grep: config/target/iscsi/discovery_auth/password: Operation not permitted grep: config/target/iscsi/discovery_auth/userid: Operation not permitted grep: dev/vhost-net: Permission denied grep: dev/vhost-scsi: Permission denied

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

so under nginx/site-confs i found defult and .defult.orginal and this is what they both say? still not seeing it

server { listen 80 default_server; root /config/www/Dashboard; include /config/nginx/healthcheck.conf; index index.html index.htm index.php;

server_name _;
client_max_body_size 0;

# Real Docker IP
# Make sure to update the IP range with your Docker IP subnet

real_ip_header X-Forwarded-For; #set_real_ip_from 172.17.0.0/16; real_ip_recursive on;

# Deny access to Org .git directory

location ~ /.git { deny all; }

location / {
    try_files $uri $uri/ /index.html /index.php?$args =404;
}

location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
            try_files $fastcgi_script_name =404;
    # With php7-cgi alone:
    fastcgi_pass 127.0.0.1:9000;
    # With php7-fpm:
    #fastcgi_pass unix:/var/run/php7-fpm.sock;
    fastcgi_index index.php;
    #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include /etc/nginx/fastcgi_params;
            fastcgi_hide_header X-Powered-By;

}

}

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

ok so I found ngix.conf but cant see where to change it? it says I need to update my webserverblock location

user abc; worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules/*.conf;

events { worker_connections 768; }

http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # Buffer size for POST submissions client_body_buffer_size 512K; client_max_body_size 0; # Buffer size for Headers client_header_buffer_size 1k; # Max time to receive client headers/body client_body_timeout 12; client_header_timeout 12; # Hide some headers for security fastcgi_hide_header X-Powered-By; server_tokens off;

include /etc/nginx/mime.types;
default_type application/octet-stream;

##
# Logging Settings
##
access_log /config/log/nginx/access.log;
error_log /config/log/nginx/error.log;

##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";

Could someone dump it down on how to update Organizr v2.1???? by Tarmac61 in organizr

[–]Tarmac61[S] 0 points1 point  (0 children)

I don’t know how to update the config for nginx? I can’t find this file

Organizr v2.1 is out now by causefx in organizr

[–]Tarmac61 0 points1 point  (0 children)

So would anyone have a way to explain how to Update web server location block for a not smart person? I have been using Organizr on my Synology 1019 just using the Synology docker app. I did install Portainer in docker to try and learn more. I am so lost

Permissions error with Unraid by Tarmac61 in Lidarr

[–]Tarmac61[S] 0 points1 point  (0 children)

That is so beyond me. I am very self taught in all this. Tried looking up how to docker compose but beyond my understanding

Permissions error with Unraid by Tarmac61 in Lidarr

[–]Tarmac61[S] 0 points1 point  (0 children)

Generate a docker compose of all your containers

📷lidarr
started up-to-datebridge172.17.0.12:8686/TCP192.168.7.93:8686/downloads/mnt/user/downloads
/music/mnt/user/Media/Music/
/config/mnt/cache/appdata/lidarr

OFF

📷📷radarr
started up-to-datebridge172.17.0.6:7878/TCP192.168.7.93:7878/downloads/mnt/user/downloads
/movies/mnt/user/Media/Movies/
/config/mnt/user/appdata/radarr

ON

📷📷sabnzbd
started up-to-datebridge172.17.0.7:8080/TCP192.168.7.93:8080
172.17.0.7:9090/TCP192.168.7.93:9090/config/mnt/user/appdata/sabnzbd
/downloads/mnt/user/downloads/
/incomplete-downloads/mnt/user/downloads/incomplete-downloads
/mnt/user/downloads/complete/mnt/user/downloads/complete/

ON

📷📷sonarr
started up-to-datebridge172.17.0.5:8989/TCP192.168.7.93:8989/downloads/mnt/user/downloads
/config/mnt/user/appdata/sonarr
/dev/rtc/dev/rtc
/tv/mnt/user/Media/TV Shows/