pkoasne

Members
  • Posts

    38
  • Joined

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

pkoasne's Achievements

Noob

Noob (1/14)

18

Reputation

  1. It vanished as mysteriously as it had appeared.
  2. https://github.com/serversideup/financial-freedom thank you!
  3. Hello, I'm experiencing a recurring problem where all of my services display a 522 error every few minutes, and then they resume normal operation. The service does not have an issue if the IP is used instead of domain name. The only information I can find in the ngnixproxymanager logs is: "An upstream response is buffered to a temporary file." This configuration has been functioning without issues for years prior to this. castle-diagnostics-20231120-0629.zip
  4. Thank you for your time and help Jorge & itimpi. I ordered some new power cables to try.
  5. seems like there are still issues disk 7 seems to have read errors now but is not being shown as emulated
  6. Hopefully last question for awhile. Can you help me find the correct firmware for the other card? I'm having trouble: Broadcom / LSI SAS2308 PCI-Express Fusion-MPT SAS-2 [1000:0087] (rev 05)
  7. @JorgeB issue came back. new logs attached. Thank you
  8. I went through all the connections to everything. It appears to be stable now. I'll follow back up if needed. Thank you @JorgeB
  9. Hi, do I have bad cables? I started getting issues with multiple drives all at once but SMART seems to think (from what I can tell) that the drives are fine. Thank you.
  10. Hi, Was the ability to reorder the docker containers removed? I don't seem to be able to drag and drop them anymore. Thanks
  11. Thanks, that is basically what I ended up doing. Running this on a cron every few minutes to check if the docker is running and if not it starts it up and executes the commands I need. Sharing the script in case anyone else ever needs this. #!/bin/bash # Replace CONTAINER_NAME with the actual name of your running Docker container CONTAINER_NAME="CHANGEME" # Specify the log file path LOG_FILE="docker_exec_log.txt" # Check if the container is already running if docker inspect -f '{{.State.Running}}' $CONTAINER_NAME > /dev/null 2>&1; then echo "Container $CONTAINER_NAME is already running." exit 0 fi # Start the container if it's not running docker start $CONTAINER_NAME # Wait for the container to start echo "Waiting for container $CONTAINER_NAME to start..." while ! docker inspect -f '{{.State.Running}}' $CONTAINER_NAME > /dev/null 2>&1; do sleep 1 done echo "Container $CONTAINER_NAME is now running." # Run commands inside the Docker container and log errors/output docker exec $CONTAINER_NAME bash -c ' REPLACE_THIS_WITH_THE_COMMANDS_YOU_WANT_TO_RUN ' 2>&1 > $LOG_FILE # Display the log file contents cat $LOG_FILE
  12. Hi, Is there a way that I can trigger a script to run whenever a specific docker starts? The options in the User Scripts plugin doesn't have this usecase. Thanks
  13. https://github.com/jemalloc/jemalloc/issues/1328 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. where is sysctl.conf ? I couldn't find it in the container.
  14. I've formatted both nvme drives to btrfs yet unraid only detects 1 fs and it thinks its xfs: parted /dev/nvme0n1 print Model: Samsung SSD 980 1TB (nvme) Disk /dev/nvme0n1: 1000GB Sector size (logical/physical): 512B/512B Partition Table: loop Disk Flags: Number Start End Size File system Flags 1 0.00B 1000GB 1000GB btrfs parted /dev/nvme1n1 print Model: SPCC M.2 PCIe SSD (nvme) Disk /dev/nvme1n1: 1024GB Sector size (logical/physical): 512B/512B Partition Table: loop Disk Flags: Number Start End Size File system Flags 1 0.00B 1024GB 1024GB btrfs