In0cenT

Members
  • Posts

    105
  • Joined

  • Last visited

Everything posted by In0cenT

  1. Hello A ubuntu VM which is hosted on a on an other machine mounts my unraid shares. On my ubuntu VM I get a bunch of CIFS VFS errors: 192.168.178.200 is the IP of my unraid server. This is how I mount my shares: # Server mounts //192.168.178.200/Fred /fred cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Audiobooks /audiobooks cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Series /series cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Movies /movies cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/eBooks /ebooks cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Music /music cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Coding /coding cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Docker_Backup /docker_backup cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Cloud /cloud cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/Photos /photos cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/4k_series /4k_series cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 //192.168.178.200/4k_movies /4k_movies cifs credentials=/home/docker/.smbcredentials,iocharset=utf8,gid=1000,uid=1000,file_mode=0777,dir_mode=0777 0 0 Global share settings: Tunable (support Hard Links): No Tunable (enable Direct IO): Auto What might be causing this?
  2. I'm having problems downloading larger files than 1GB and have found the reason for the problem: I have found the solution to the problem but I have no clue where to adjust it (https://serverfault.com/questions/479443/php5-fpm-server-reached-pm-max-children). I am running letsencrypt and nextcloud in a docker. The error shows up in the nextcloud docker image so I'm guessing it should be there. Thanks for any help
  3. You are a bloody STAR! Disk is back up! Do you mind explaining why unRAID still marked the disk as bad although I made a new config prior? Thanks!
  4. No I rebooted my server without any issues. As it came back up disk 10 failed, I then tried to reset config and issue still persists. Should I still go with your suggestion?
  5. I've reset the config once, probably was this?
  6. Thanks for your response, would you mind to explain the recovery tools part in detail? There arent any tools installed by default are there?
  7. I just used a different cable from the other controller which was free and it still didnt mount. I then put the drive in my other drive cage (ICY BOX IB-545SSK) and it still didnt mount. Also I've repluged all cables on the controller side. Logs when drive was in different cage: nas-diagnostics-20170728-2322.zip Logs when drive was back in original cage with all cables checked if they fitted correctly: nas-diagnostics-20170728-2329.zip Guess the drive died? Thanks for your help!
  8. Added the diagnostics and the new smart report. I got the sata cable from my H220 seller. nas-diagnostics-20170728-1804.zip nas-smart-20170728-1805.zip
  9. Hello guys I've rebooted my server and as I wanted to start my array I got a disabled disk. How is that possible that it just came up after a reboot? Unmountable - No file system (32) Added Smart reports I had from the disk and currently doing an extended test. Thanks for any help nas-smart-20170728-0115.zip
  10. Thanks, going to order the needed parts and will try it out.
  11. Hello I'd like to have a 10GB connection between my unRAID and VMware server. I'm using a HP 1810G-24 ProCurve as my switch and had a peek on Mellanox ConnectX-2 (MNPA10-XT) for both servers. Should I make a direct connection between my two servers and if so how do I set that up? If I should connect both via switch how do I check if my router works with these cards? Thanks
  12. Hello In the past I've had few unreachable server crashes. When I looked at the screen at the server I'd get this error: unregister_netdevice: waiting for lo to become free. Usage count = 1 Is this a known issue? Diagnostics is added Thanks for any help nas-diagnostics-20170606-2334.zip
  13. Ok so the fail2ban seems fine again and as you thought my subdomains are still not working. I've checked all logs and nothing seems to have a problem? Everything worked fine before and nothing was changed... Should I just reinstall the docker? Thanks for your help!
  14. Hello Since today my fail2ban in the container is spitting errors. All my subdomains do not work anymore too. https://pastebin.com/C2mP23s4 Any idea how to get it back working?
  15. Sorry to bother you again... I'm trying to run nextcloud in your nginx docker. When I try to access the site it would not open the site but would download the index.php file. My nginx config: server { listen 80; server_name cloud.XXX.ch; return 301 https://$server_name$request_uri; } server { listen 443 ssl; server_name cloud.XXX.ch; root /config/www/cloud; index index.php index.html; access_log /var/log/nginx/cloud.example.com.access.log; error_log /var/log/nginx/cloud.example.com.error.log; client_max_body_size 0; underscores_in_headers on; ssl on; ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ssl_stapling on; ssl_stapling_verify on; location / { proxy_headers_hash_max_size 512; proxy_headers_hash_bucket_size 64; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; add_header Front-End-Https on; } } Can you find the reason behind this?
  16. What I'm currently running is Resilio-Sync to sync items to my synology NAS and then run Cloud Station Server on my Synology to keep older versions. Does this solution also keep me safe from ransomeware?
  17. Hello Thanks for maintaining this wonderful docker. I have a minecraft server running and use a tool called overview which creates a "google maps" like map. This tool runs on a ubuntu VM and outputs all files in a folder. Now to share that I'd like to use the nginx webserver. My question now is whats the best way to mount that folder within the docker to be able to share it?
  18. Yeah mainly for corruption, unraid failures and if our house would burn down. There are the main three "accidents" which could happen...
  19. Hello I bought a DS 214+ on ebay to use it as an offsite backup device at my uncles place. My question to you guys is now how to get it done nicely. What I want is that I have 24/7 the same files on my NAS and my unraid. There are a total of 2 shares to keep synced. Thanks for any ideas or solutions.
  20. The array is working fine again with the "failed" drive. Also added my two new 10TB drives and preclearing them at the moment Thanks for all your help!
  21. So I wont know before if the disks will work? Why would they build two different models? (4Kn vs 512e)
  22. Started rebuilding the array posted an other diagnostics after I started the rebuild. The 10TB disks were needed anyways dont like to stay on low storage nas-diagnostics-20170419-1949.zip