Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Falcowe

Members
  • Joined

  • Last visited

Everything posted by Falcowe

  1. I have been using my UnRaid Server to host TimeMachine (TM) backups for a number of years now. However around the time of updating to 6.11.x I seem to be plagued with issues around TimeMachine. I have tried troubleshooting this to the best of my ability but I seem to be stuck at the moment. I keep getting errors; most recently on my Mac an error (112) that seems to indicate that the disk either disconnected or that for whatever reason TM doesn't have the access/permissions to the disk that it needs. And therefore don't complete any further backups past the first one. I seem to be able to set up an initial TM backup but I can't seem to get it to do the incremental backups. Of the things I have tried over the past year or so to fix this are the following: 1. Completely deleting the share and creating a new backup share and starting completely from scratch. Both Public and Private permissions on the share, and making sure TM is selected in the SMB options. 2. Tried re-writing permissions to the time machine share (but may have failed at doing it), from both Unraid console and MacOS Terminal 3. Tried verifying backup on MacOS 4. Tried following SpaceInvaders guide on migrating TM backup to 6.11.x All of this has been unsuccessful. I am still having persistent issues backing-up my Mac to my server. So I am hoping I can find some help here. Thanks in advance for your assistance it is greatly appreciated. treadstone51-diagnostics-20230616-0722.zip
  2. Hey skios, thanks for your help. Sadly the changes to the config file didn't change the errors I'm getting. And there don't appear to be any errors in the log of nextcloud that would indicate why noting is uploading over a certain size. The changes I made to the config file were: <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'random characters', 'passwordsalt' => 'different randoom characters', 'secret' => 'longer string of random characters', 'trusted_domains' => array ( 0 => 'LAN IP: And nexcloud port', 1 => 'mycloudURL', ), 'trusted_proxies' => array ( 0 => 'swag', ), 'dbtype' => 'mysql', 'version' => '19.0.6.2', 'overwrite.cli.url' => 'https://LANIP:different nextcloud port', 'overwriteprotocol' => 'https', 'overwritehost' => 'mycloudURL', 'dbname' => 'MyServerName+cloud', 'dbhost' => 'LANIP:DPPort', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'its_me!', 'dbpassword' => 'myPassword', 'installed' => true, 'maintenance' => false, 'theme' => '', 'loglevel' => 2, ); Any further ideas?
  3. Oops I completely missed your request to post the config.php. Now your Hide sensitive info makes sense! Ok here it goes: <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'random_string_of_characters', 'passwordsalt' => 'a_different_random_string_of_characters', 'secret' => 'not_your_string_of_random_characters_;)', 'trusted_domains' => array ( 0 => 'LAN-IP:NexcloudPort', 1 => 'URL-for-nextcloud', ), 'dbtype' => 'mysql', 'version' => '19.0.6.2', 'overwrite.cli.url' => 'https://LAN-IP:DifferentNextcloudPort', 'dbname' => 'NameOfHost', 'dbhost' => 'LAN-IP:dbHostPort', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'MyUserName', 'dbpassword' => 'MyPassword', 'installed' => true, 'maintenance' => false, 'theme' => '', 'loglevel' => 2, ); Also, how do you post code or other things so they show up in that box you can scroll through?
  4. No it doesn't. I do get a different error though than the upload and edit side gets. For the upload and editing I get the error: "An unknown error has occurred". And nothing happens after that. With the upload only I get the error: "Could not upload "[FILE NAME]" ". I this case it was a mov file. Finally you left a note to "Please hide sensitive info!" did I post sensitive info? I thought I hadn't.
  5. Hey Skois, so I edited my php-local.ini file and changed my upload_max_filesize=100G as well as the other changes you made in the first block of text but I am still having the same issue for uploads when not logged in. My php file now reads: ``` ; Edit this file to override php.ini directives and restart the container date.timezone = America/Los_Angeles upload_max_filesize=100G memory_limit=8G max_execution_time=7200 max_input_time=7200 post_max_size=100G max_file_uploads = 200 default_socket_timeout = 7200 ``` Any other suggestions?
  6. https://help.nextcloud.com/t/upload-not-working-for-non-users/99265/4 Also I have been dm-ing with devnull and they have been helping me out.
  7. So I wanted to update my issue if anyone is following along. I was able to get a bit of help from the Nextcloud support community and have discovered that it is actually a file size limitation somewhere. I have tried increasing my PHP file and NGIX max file seizes with no luck yet. But I suspect that I didn't increase the rights files as the file locations are different in the docker version than in the linux distros people are posting about on the Nextcloud forums. So I can upload files, I just can't upload file that are "large" (i.e. in excess of at least 50MB in size and I suspect smaller but I don't have an efficient way to test). The files that have been successfully uploaded are in the 10s of KBs range. So.... does anyone have a suggestion where I might look for what/why this is being limited? And why its only happening on upload/file drops where it's an 'unknown'/'guest' user? If I have someone log in there isn't an issue uploading big files which makes me think it nextcloud causing the issue and not something outside of Nextcloud (i.e. php setup or NGIX limitations).
  8. Hello all, I have been trying to have other people upload files to a folder I have created on Nextcloud and created a share link to allow for uploading to the folder. However it was reported to me that they were having trouble and I was able to "recreate" the issue on my side. The issue: when uploading files to the shared folder all files no matter how I upload them (via drag and drop or the dialogue to upload files) immediately shows the error "An unknown error has occurred." On occasion I'll get an error along the lines of - Server connection lost - but that one has been far more inconsistent and I think it is related to whatever the problem is preventing any files from being uploaded. Now with all of that being said I can upload files if I am logged in as a user and that is the workaround I have created for the other person in this case but I would like to be able to simply share a link in the future and have other people be able to upload files to me. The other part in this case has been able to download files from the link without issue however uploading seems to be a problem. Which is strange. Why would downloading work but not uploading, any bight ideas here? Thanks for your help!
  9. Who's the newb?! I am! Thanks Jonathanm!
  10. Solved: It was the optical drive. More particularly the optical disk in the drive. So strange. I pulled the disk out from the drive and the array immediately started. Same when I unplugged the optical drive. But the array also starts with the optical drive plugged in, with no disk in it. Also my install of 6.8.0 was not the issue even with the ungraceful shutdown. I was able to recopy everything back onto the boot flash and now have everything precisely the way it was before this weirdness. Please mark as SOLVED I can't seem to change the post header.
  11. I cannot get the array to start under normal circumstances. So far only in maintenance mode. I’ll have to give that hardware troubleshooting a try tomorrow when I have more time, I’ll be sure to update this post with what I find out.
  12. Hey Benson, so both of those prompts aren't returning immediately like they seem to in your screenshot. I think the next step for me to try is to move slots, however I can't see a reason why that would change anything because unRAID is detecting the disks, it just doesn't seem to be able to start the array. And it went from a working array to a non-functioning array without me physically touching the machine.
  13. Benson, do you have an idea where to start with looking into this further?
  14. Thanks Benson, it seems like this might be an issue for me to contact unRAID directly at this point. Unless any other forum members can chime in.
  15. Ya the Parity-Check speed seems normal from past runs when the array was working properly. estimated time to completion as of this post is 5 hours. The disks are all 6TB disks. So if it is a file-system issue does that mean unRAID is corrupted? Or that the file system of the disks is the issue? If so will a parity check fix the issue or will there likely be something else that needs to be done? Thanks Benson et. al!
  16. Sorry what do you mean? The Parity-Check (no correction writing) will be running for about 6 hours.
  17. So I finally was able to start the array in maintenance mode. But it didn't start like it normally does, it still is taking a long time to do anything. I'll report back after the parity check is complete. The log isn't showing it getting stuck at any particular disk.
  18. I have now reinstalled unRAID os on the flash drive and went back down to 6.7.2. The webgui shows up a LOT faster now but I still cant get the array to start. Still stuck on "Array Starting - Mounting disks" Here is a new diagnostic zip. treadstone51-diagnostics-20191214-2156.zip
  19. So the array has been starting over night and is still mounting disks. Not normal behaviour I think. I also noticed that like in previous times the GUI reports high cpu usage and when I look at the Processes report in the GUI there is one task that has 100% CPU usage, could this be causing the disks not to mount? The server is trying to do this in safe mode at the moment.
  20. I tried a Temp unRAID install and I was having a great deal of difficulty building a new array. There was a lot of lag in the GUI and when I finally got a couple of disks in place and clicked "Start" array nothing happened. So I then went and did the bios update and the firmware update for the supermicro board. And that hasn't helped anything either. In fact it seems that the BIOS update may have made things worse. Now after booting into the unRAID flash drive and into GUI mode (I have yet to try non-gui mode, but am currently giving GUI no plugins some time to boot up), I am getting a black screen and I can't bring up the web GUI either. Any ideas? I have not updated the LSI HBA but the fact its not even getting to the GUI anymore makes me think that isn't the issue. I will try to figure out which HBA I have and see if I can update it however I don't have a any PCI card so I suspect its something that is part of the Supermicro board and that it was taken care of with the BIOS and firmware updates. EDIT: The webGUI came back online, I have tried starting the array again, but still waiting 10 min later for the array to start. So I guess its good news, I haven’t made it worse.
  21. New Diagnostics. The array is still "Starting - Mounting Disks" treadstone51-diagnostics-20191213-2001.zip
  22. Squid, no I didn't rename the server. The logs were pulled both locally (i.e. Tower) and remotely (i.e. Treadstone). I have started the array again normally, and I will post new diagnostics soon (hopefully). I can't imagine anything in my network doesn't support Jumbo frames. But I am not 100% certain, would this cause the array not to start?
  23. I also just realized that I haven't posted what my system specs etc are. I'm using a 45Drives AV15 with a supermicro X11SSH-CTF motherboard a Xeon CPU (1220 v5) and 16GB of memory. I am running a number of docker containers, however none of them are loaded at the moment since I haven't started the array. Plugins: CA, rclone, Unassigned Devices, User Scripts
  24. Some more info from the log window the webGUI of unRAID.
  25. So I regrettably decided to upgrade to 6.8.0 today. I should have known better it being a Friday the 13th lol. In any case I think I did something dumb. After the update downloaded and the server needed a reboot I went ahead and rebooted it via the web GUI, and a few min later (maybe 3-5) came back only to find that nothing had happened. I went an checked on the server in person and also it was still up and running. So I tried shutting down the server directly on the machine via the command line, but again no response, waited another 3-5 min and then tried pressing the power button. Again on response after a couple of mins so I figure since it just needs a reboot I'll just force shut it down and power it back on. Well my mistake because I have been having issues since then. It seems that there is a huge delay in getting unRaid loaded now, and I left the array starting and when I came back 2 hours later the array was still attempting to start. I have tried booting in safe mode, and into maintenance and that was successful, but still had the delay in being able to access the webGUI. My guess is that something with unraid is corrupt since it was working fine earlier today before I messed with it. Thanks in advance for your help. I should note, I currently have the Unraid webGui up however I haven't started the array seeing as that has been causing issues so far. So I should be able to collect any extra diag data you may need. Also when I try to pull up the logging window in the webGUI it takes quite some time for the information to populate. Although it does eventually. Attached are the daig zips for when I first caused the issue and the most recent one that I pulled directly from my flash drive and the most recent one I pulled from when the web gui was working. tower-diagnostics-20191213-1452 Falcowe.zip

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.