Everything posted by Normand_Nadon
-
VM Logs no longer working
I have the same issue since I updated to 6.11 VM logs show "502 bad gateway"
-
6.10.1 & 6.10.2 - problems downloading/updating plugins/OS from a cdn URL location
Similar problems here, can't download the "my Servers" plugin since I updated my Unraid machine to 6.11 What are the non-CDN link you found @sorrow EDIT: Nevermind, the plugin installed just fine after a reboot Must have been because I was way behind in updates... Now my issue is with the local SSL cert... but that is for another forum thread!
-
[Support] binhex - MinecraftServer
The server verifies logged users against the Minecraft main servers to make sure they are licenced... If for some reason, your server can't reach Mojang servers, the user will be refused... To mitigate that, you can change a line in your "server.properties" file, in appdata to false online-mode=true I am new to this (been running my server for less than 2 weeks), but this source helped me a lot with setting up the server: https://minecraft.fandom.com/wiki/Server.properties
-
[Support] binhex - MinecraftServer
Your server cannot connect to mojang to authentify the user if I am not mistaken... There is an option in the docker version of most Minecraft docker images I have seen to disable "Online mode"... Or you can ensure your server has access to the Internet to query for the username
-
[Support] binhex - MinecraftServer
Hello, noob question here, I need directions to the right place for my researches! I have been searching for 2 days on how server mods work... Clearly, I am not using the right terminology for my search! I would like to know if it is possible to implement mods in the binhex Minecraft server on Unraid... I was able to load mods on my son's local install (based on the fabric stuff...) but I can't find how to load them on our family Unraid server.. By the way, the vanilla docker image is working like magic... 1 click deploy stuff! and it boots fast! Mods I am interested in: Performance boost, like Sodium Ressource packs Shaders (can that run on the server?) Alternate game modes for my kids and their friends to play I am basically experimenting with the kids and teaching them server stuff while learning myself! It also creates a safe "bubble" for the kids to play in without weirdos interacting with them!
-
[Support] knex666 - OpenProject
I found the solution... The default path on unraid is not supported by Postgress I changed /mnt/user to /mnt/cache and it works... Bu I have read that is is not the safest way to do things and I can't tell why... And here is a quick and dirty (and functionnal) letsencrypt / nginx .conf example (replace "server_name openproject.* with the name of your chosen subdomain and upstream_app openproject with the name of your container) # Open Project server server { listen 443 ssl; server_name openproject.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app openproject; set $upstream_port 80; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; } }
-
[Support] knex666 - OpenProject
I am sorry to ask again... But I looked hard in the forums and could not find the exact source of the issue.. Some are talking about file permission, but nothing really comprehensible. When you launch an instance yourself, do you let it create it's own DB or do you connect it to an existing one?
-
[Support] knex666 - OpenProject
Hello, I tried to use your UNRAID docker image and I get this: -----> Starting the all-in-one OpenProject setup at /app/docker/supervisord... -----> Database cluster not found. Creating a new one in /var/openproject/pgdata... The files belonging to this database system will be owned by user "postgres". This user must also own the server process. The database cluster will be initialized with locale "C.UTF-8". The default text search configuration will be set to "english". Data page checksums are disabled. fixing permissions on existing directory /var/openproject/pgdata ... ok creating subdirectories ... ok selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting default timezone ... America/Los_Angeles selecting dynamic shared memory implementation ... posix creating configuration files ... ok LOG: could not link file "pg_xlog/xlogtemp.35" to "pg_xlog/000000010000000000000001": Function not implemented FATAL: could not open file "pg_xlog/000000010000000000000001": No such file or directory child process exited with exit code 1 initdb: removing contents of data directory "/var/openproject/pgdata" running bootstrap script ... Can you tell me where I should search before asking you guys :P Thank you!
-
[Support] Linuxserver.io - OpenVPN AS
Okay, but do you use a VPN on UNRAID? and if so, how did you set it up?
-
[Support] Linuxserver.io - OpenVPN AS
Thanks for your answer... I added my home network to the list of subnets in the web Ui.. is that what you refer to?
-
[Support] Linuxserver.io - OpenVPN AS
Hello there, I followed SpaceInvader's 2019 guide to setup the openvpn-as container and I have some issues... https://www.youtube.com/watch?v=fpkLvnAKen0 Firstly, when using his guide, to the letter, I can connect to the VPN and browse the net as if I was home. BUT, I can't connect to anything on the home network... No response (I used my phone as a hotspot to test). Googling and "ducking" helped me find that the Interface should be set as HOST and the docker should be privileged. By doing so, I lose the ability to connect through the VPN and can't login as an admin on the Web GUI... So for now, unusable. Did someone else encounter similar issues and found the way to fix them?
-
Stale file handle on NFS mount
What is that Hardlink thing? What does it do?
-
Stale file handle on NFS mount
Setup: UNRAID v.6.8.3 Ubuntu 20.04 client (Pop!OS variant) Fixed IP on client and server side NFS share option 192.168.2.10(sec=sys,rw) - this is the IP of the client computer client's /etc/fstab entry: 192.168.2.17:/mnt/user/MULTIMEDIAS /home/normand/NFS/NORMAND-NAS-01/MULTIMEDIAS nfs defaults,timeo=14,soft 0 0 Issue: It happens with all my shares. I use them, then, at any given (and random) times, I have a "Stale file handle" message and I have to remount the drive to continue working with it. The weirdest part, is that sometimes, a program or process is still writing to the share with no issue but I can't make anything else communicate with it (file manager, other programs). I wait until the process finishes and unmount/remount the drive to continue working... Is it due to the mounting options I used on the client's side? I am not understanding these NFS parameters well, even after 10 years of linux usage!