Greygoose

Members
  • Posts

    469
  • Joined

  • Last visited

Everything posted by Greygoose

  1. SmartPhoneLover, What is the difference between Vorta and Vorta 2?
  2. hi ich777, thanks for the reply I looked at luckybackup but tried rsnapshot first and i'm happy to say its working perfectly. I'm going to finish my current backup and try lucky to see if anything is different then pick. EDIT: Just see that your the dev for luckybackup. I have just installed it and will come back to you on my findings, thanks
  3. Hi all, I'm trying to find a docker that uses rsync. The reason is I have my unraid machine to use VLANs and I have two WAN IPs. One of my wan IP's is 100mb upload and the other is 10mb (default) upload. I want to rsync to another machine using the 100mmb upload VLAN instead of the default WAN that the unraid machine uses. I have this working in the unraid terminal, but thats using the 10mb upload, If i can use a docker that has access to my shares I can set that docker to use the 100mb upload WAN.
  4. Oh and for anyone looking for an offsite backup solution. Borgbase is superb. Instant support and it has been rock solid the past 2 years for me. Multiple restores and great guides. https://www.borgbase.com/
  5. Been using Borg the past couple of years. I use Vorta sometimes (prefer CLI). I will give this a try tomorrow. Thanks for the docker. Borgbackup is amazing.
  6. Its been in the same UISB port since ryzen was first released without issue. 4years
  7. finally working. been a long day... So i put the original usb stick into another usb port on the motherboard and it booted into the unraid GUI. I was still unable to access the webUI from another machine. So i changed the SSL setting to NO in management, now the machine can be accessed from another local machine. Any ideas?
  8. I can SSH into the original USB stick and run the diagnostics command. can you guys have a look at it please if i do that?
  9. Thanks for the help Jonathan & itimpi, The original USB stick would not boot into the GUI even with a monitor connected to the main machine. It would just hang... So i have copied over the config folder to the new machine and now thats doing something similar. Im stuck
  10. Hi I have tried another unraid USB stick i have that also has (FULL LICENSE). It boots into the unraid web UI no issue So im wondering if the other (original) USB stick has failed Can i use the spare licensed unraid USB stick and simply copy over the config folder from the old unraid usb stick and thats it?
  11. Hi, whe I try the above it reverts to mediaserver.local and displays the error I mentioned above Is it possible to start the array from terminal. I need to access nextcloud, this was all working before I rebooted to try fix the issue im getting where I cant login to the unraid WEBUI
  12. So everything was fine. Now I am unable to access the webUI. Ive checked all the usual, on the same network etc. I can SSH into the unraid machine, I can ip route table and it shows the correct static IP thats been set 192.168.30.201 however when I try to use the browser it reports back that the site cant be reached. ERR_NAME_NOT_RESOLVED issue I am unable to see the static IP that I set the unraid machine in the reserved address table in pfsense. Yet I can still SSH into the machine. Ive tried rebooting my router PFSENSE different machines and different browsers.
  13. Hi JorgeB, Thank you, Ill check the machines bios and do a memory test. How did you find that in the logs? did you need to look through or was there an easier way?
  14. Hi, This has been going on about a week now. keep finding my array need re mounting, causing dockers to stop etc. Please can my logs be checked to locate the issue mediaserver-diagnostics-20211120-0907.zip
  15. I found the answer to my question above Open console in docker and use the following command python3 manage.py createsuperuser I used this to change my admin password (useful if lost)
  16. Is it possible to reset the password for login?
  17. Has anyone experienced this error in the logs? Any help to resolve would be great.
  18. I have changed my docker config and posisitioned most the folders on the backup drive. Is there anything wrong or anything else prefered over this?
  19. This happened to me when upgrading to RC2. I reverted to RC1 and all ok again.
  20. Thats great news, it would definatly be a needed feature. So far so good, very impressed with the progress of this project. If I can help in any way message me or post here and I will help where i can.
  21. advplyr, Testing today I noticed that the app is not able to work with android auto when plugged into my cars headset. Other apps such as spotify, poweramp work with android Auto. Is this something that can be implimented as I expect it will be a very useful feature for those who listen to audiobooks when in their vehicle.?
  22. Hey, I tried doing the same process and it's working fine now. It was definitely a cover issue as the web browser version showed invalid cover. The issue was the android app would crash instantly, not allowing me to change the cover in the app. Once changed in the browser version the android app worked fine again. I'll be using the app extensively next few days so will report back anything. Oh and thank you for your commitment to this project, I had been looking for a dedicated audiobook self hosting option for ages. I've tried several other options in the past, this is by far the best 👍 Maybe one of unraids amazing YouTubers could do a short guide on the setup and feature set, it would help give the project a wider audience.
  23. I've noticed a bug with the android app I had everything working great. So I put a jpg of a book cover I wanted to use ln the folder. It seemed to work at first. Then the Android app crashed. I kept trying to open the app but it would crash instantly. So I logged into auidobookshelf using my web browser and I could see the image of the book I tried to change showed as invalid. I deleted the image on the book and it revert back to the default book cover. So I opened the android app and it worked as normal again.
  24. If anyone is trying to get this working with SWAG i managed to get it working with the following config. I adapted the one on the socket.io website to listen on 443 as SWAG wouldnt allow the HTTP set with the socket.io template. Make sure to put your unraid IP address where i have put in caps below. Also make sure you name your file as below and put in your SWAG proxy-confs folder audiobookshelf.subdomain.conf server { listen 443 ssl; listen [::]:443 ssl; server_name audiobookshelf.*; include /config/nginx/ssl.conf; location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_pass http://YOURUNRAIDIPADDRESS:13378; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }