Everything posted by ninjaneer68
-
Fix to a small issue with updating OCI docker images
soon as i stopped docker, set the static IP addresses to the following 1.1.1.1 8.8.8.8 I get the following now "Docker Service failed to start."
-
Fix to a small issue with updating OCI docker images
I deploy everything from CA, as I am not a skill docker tech ( I have sys ad skills, just not in docker ) I was orginally having issues with Plex then I restarted the entire unraid system, and everything came up like not available. I put unraid in an emergency firewall allow with in my firewalla to make sure something ad block wise wasn't blocking any reach out attempts I am not showing any blocks for unraid at the FW level.
-
Fix to a small issue with updating OCI docker images
-
Mount disk in UnRaid
I have a drive that has already been formatted but its unmountable, using the gui I tried to run xfs repair. If we use the above example screen shot, I want to try practicing mounting good drives manually. How would I do it ? In this scenario I want to try and mount disk 2, would this be the correct example ? >mkdir /tempxfs >mount /dev/md2 /tempxfs or >mkdir /tempxfs >mount /dev/sdb /tempxfs I am little lost of how do I know which drive is disk 2 I get these errors when trying to mount using the SDB example /tempxfs: wrong fs type, bad option, bad superblock on /dev/sdi, missing codepage or helper program, or other error. dmesg(1) may have more information after failed mount system call. I am currently in MAINT mode. @JonathanM
-
Parity drive replaced and still disabled ?
ok, I got all the drives seen again, something seems to be wrong with some of the onboard SATA ports
-
Parity drive replaced and still disabled ?
looks like 2 of the ports on my SATA PCI card either stop working or went paid. I found out which ports didn't seem to be working, which is odd all of a sudden. Now I am just trying to figure out what is wrong with parity
-
Parity drive replaced and still disabled ?
-
Parity drive replaced and still disabled ?
Hello everyone, I am currently learning how to interpret diagnostic logs, specifically to discern why the parity drive consistently enters a disabled state. Recently, I replaced the said drive and accidentally interrupted the formatting process. I am uncertain if this incident might be related to the persistent issue. Your insights would be greatly appreciated. tower-diagnostics-20230714-1507.zip
-
"Mover" Current Status Time in Time Left Request
Here is the PR request for this coming in future release , there is an nice example screen shot https://github.com/limetech/webgui/pull/1042
-
parity check taking 5 days, is this normal ?
each drive is 14TB drives with one 14TB parity. is this normal for parity checks to take around 6 days to complete ? should I continue to run this monthly or move it out to run every 40 days or something to that affect ? All the drives are the same sizes, below is the mix 3 drives -- Seagate Exos X16 14TB 7200 RPM SATA 6Gb/s 256MB Cache 3.5-Inch 1 drive -- Western Digital 14TB Ultrastar DC HC530 SATA HDD - 7200 RPM Class, SATA 6 Gb/s, 512MB Cache, 3.5" 2 drives -- Seagate IronWolf Pro 14TB NAS Hard Drive 7200 RPM 256MB Cache CMR SATA 6.0Gb/s 3.5" Internal HDD
-
[Support] Linuxserver.io - Mylar
After some more exploring, the container for Mylar3 can not reach the internet. This is why its not working ylar.locg.58 : ThreadPoolExecutor-0_0 : HTTPSConnectionPool(host='walksoftly.itsaninja.party', port=443): Max retries exceeded with url: /newcomics.php?week=39&year=2020 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x1481dab4bdc0>: Failed to establish a new connection: [Errno 110] Operation timed out')) it is my only container that can not reach the net. Not sure why
-
[Support] Linuxserver.io - Mylar
Hello everyone, I am not new to Mylar but new to using it in unraid. I have not touched mylar in years and recently stood up Ubooquity so naturally I needed to get Mylar back up and running, in unraid of course.... LOL. Any help or suggestions would be greatly appreciated. Mylar is not pulling in my comics. I do not know if its how the file structure is or something wrong I am doing in mylar. Physically they are stored in folder with in UNRAID, then attached to the container as the host path of /comics The location where I have my comics is set up like the following attached to the mylar container. /comics When I console into mylar I see /comics and it sees all the comics attached. My files structure is /comics/publisher/series/ example continued /comics/DC Comics /comics/Marvel /comics/Dark Horse Comics /comics/IDW Publishing /comics/Vertigo /comics/Zenescope Entertainment Farther down in a screen shot is the structured continued.
-
Adding many Labels to Docker Containers quickly/efficently
I figured out how to add labels to the docker containers in unraid, is there a way to do it with out using the GUI ? want to apply to other containers with out manually adding around 7 lines per container
-
Adding many Labels to Docker Containers quickly/efficently
I am trying to also set up traefik and not grasbing labels yet in unRaid HEre is an example of labels I want to use in unraid # the basic labels to enable traefik to forward requests.somedns.com on port 443 to the ombi docker image traefik.enable=true traefik.http.routers.ombi.entrypoints=websecure traefik.http.routers.ombi.rule=Host(`requests.somedns.com`) # Specify the port your service should connect to (Optional if there is only one port) traefik.http.services.ombi.loadbalancer.server.port=3579 # to tell traefik to try get a letsencrypt cert for your domain traefik.http.routers.ombi.tls.certresolver=letsencrypt #If you want to redirect port 80 to 443 when connecting to this domain on port 80 traefik.http.middlewares.https-redirect.redirectscheme.scheme=https traefik.http.routers.https-redirect.entrypoints=web traefik.http.routers.https-redirect.middlewares=https-redirect traefik.http.routers.https-redirect.rule=Host(`requests.somedns.com`)