HackHome

Members
  • Posts

    33
  • Joined

  • Last visited

Everything posted by HackHome

  1. Got the same thing happen to my container like 1 or 2 times per month. Was to lazy (until now, see below) to get a workaround for that could be a shell script that once per day scrambles the docker log of the container and if the word terminated is found it restarts the container. Until now (if thats enough for your problem solving): I've setup an offline notification (within flightradar24.com click on "My datasharing" and "Show statistics" where you can find a little switch to turn on "OFFLINE EMAIL". At least this way I get noticed that my fr24feed needs a restart. Here is my shell script: #!/bin/bash # Define the name of your Docker container CONTAINER_NAME="FR24FEED" # Run the 'docker logs' command to fetch the container's logs LOGS=$(docker logs "$CONTAINER_NAME" 2>&1) # Define the regex pattern to search for SEARCH_PATTERN="terminated" # Use grep to search for the pattern in the logs if [[ $LOGS =~ $SEARCH_PATTERN ]]; then echo "The word 'terminated' was found in the logs." # Restart the Docker container echo "Restarting the container..." docker restart "$CONTAINER_NAME" # You can also add additional actions or notifications here if needed else echo "The word 'terminated' was not found in the logs." fi Don't forget to make it executable: chmod +x yourscript.sh That could be run nightly with cronjob (crontab -e) or more modern with systemd timers.
  2. I mean well my unraid server is running well. But in the past there were updates every few days/weeks. Now over 4 months no updates. Is the project still alive?
  3. Changing the Network Model from virtio-net to virtio helped. Now I can Access the VM. Sometimes. Like 50% of the time it still won't serve the Webinterface but Always reacting to pings
  4. Is there anything wrong with my routing table?
  5. Logs are empty. Today I installed a proxmox instance within a VM. Again, I can ping it but cannot reach from my LAN computer. Can also not reach from another VM. And - again - I can reach the web interface from a firefox running in a docker container and I can reach the interface when using unraid console. What am I missing here? Some weirdo routing/firewall stuff?
  6. I try to access it via http://192.168.0.125:8123 (which should work?) Pinging the machine works from every pc/vm/container Accessing the Service from a PC in my LAN => does NOT work Accessing the Service from a VM running on the same server as homeassistant-vm is running on => does NOT work Accessing it from a firefox docker container on the same server as homeassistant-vm is running on => DOES work Same results whatever browser I use. Screenshots of network settings: Diagnostics zip attached. Thanks for your help hackup-diagnostics-20230207-1117.zip
  7. I installed a home assistant VM according to this tutorial. VM starts and upon finished booting process I see this: However, I cannot access (but ping 192.168.0.125 works) from my LAN computers. BUT i can access the VMs webservice (home assistant web interface) from my unraid server itself. Is there anything I need to configure within unraid so I can reach the service from my LAN computers?
  8. Pinging domain names only as only with domains I have the problem. First command takes exactly 5 seconds until name resolving takes place and it starts to ping. Second command starts instantly. VMs get IP from same Subnet 192.168.0.0/24 with same DNS Server provided (namely IP of Router 192.168.0.1). In the VMs i also can set 8.8.8.8 for example. same result. From within any VM it resolves instantly
  9. Doesn't solve the 5-6 seconds delay to start a ping problem. DNS settings are to use my router (192.168.0.1) as DNS server. Switchting to 8.8.8.8 oder 1.1.1.1 does not change anything. Ironically all my VMs running on that machine work perfectly fine. Only unraid itself has this massive delay in DNS resolution. Whats going on here. Stopping avahi no help. Removing /etc/resolv.conf and removing /boot/config/network.cfg, rebooting, resetting network. All of that no help. telnet 8.8.8.8 53 works perfectly as it should. Pings (when they start after that 5-6 seconds delay) run at 5-7ms to google. Perfect. Bandwith test: 980mbit download, 510mbit upload (fiber ftth germany) works great. Having this problem for several weeks now. Anyone has an idea what to try next?
  10. I will give that a try this evening. Keep you updated.
  11. So I am Not the only one. Glad to hear. Just Open a Shell and ping Google.com takes 5-6 Seconds to start the pinging. The Pings themselve are low as expected. Bandwith down 1000mbit from Internet. Perfect. Just the Name Resolution...
  12. If I do a Ping Google.com on my other Machines and even in the Windows VM on unraid the Name resolving is instantly. Doing it from unraid console Takes 5-6 Seconds on each Request. Any ideas?
  13. How could I find out? And using a normal webbrowser on my desktop PCs (which use the same gateway, same DNS etc.) is blazing fast. Only unraid takes 6 seconds from ping google.com to actually start the ping. Thats why I assume that the name resolving is slow.
  14. Well no. As soon as the download starts I get the full 1000mbit. But the dns name resolving itself takes about 6000ms. Just measured it with a stop watch. Docker/Github/AWS all work fine and fast!
  15. Hi community. At home I have an FTTH connection with 1000mbit down, 500mbit up. Ping times to google and other major websites around 7ms. I configured Google DNS and Cloudflare DNS. My unraid server nevertheless takes forever for simple tasks like checking for plugin updates. It needs like 5-7 seconds to check for each plugin. I have some installed. So checking for plugin updates takes way over a minute. Checking for docker updates stalls after 3-4 minutes. What am I missing or doing wrong? Any help is appreciated. hackup-diagnostics-20230111-2115.zip
  16. I got it running with my USB DVB-T Stick (from sprut.de identified as a microadsb device) with the following Docker command (as soon as I found out how to create unraid templates I will do it): 1. I found out the device path by ID of the stick to avoid any changing usb ports root@hackup:~# ls /dev/serial/by-id/ usb-sprut__www.sprut.de__ADSB-PIC_V.10__sprut_2012_-if00@ In my case I have an USB ADSB DVB-T Stick which results in the following path /dev/serial/by-id/usb-sprut__www.sprut.de__ADSB-PIC_V.10__sprut_2012_-if00 2. on the console I ran the following docker command -> privileged was a neccessary and important switch. without it won't run -> latitude in the format 43.1234 and longitude in format 7.1234 docker run -d -p 8080:8080 -p 8754:8754 \ --name FR24FEED \ --privileged \ --device=/dev/serial/by-id/usb-sprut__www.sprut.de__ADSB-PIC_V.10__sprut_2012_-if00:/dev/ttyUSB0 \ -v "/etc/localtime:/etc/localtime:ro" \ -e "FR24FEED_FR24KEY=YOUR FR24 KEY" \ -e "FR24FEED_RECEIVER=microadsb" \ -e "PIAWARE_FEEDER_DASH_ID=MY_FEEDER_ID" \ -e "HTML_SITE_LAT=YOUR LATITUDE" \ -e "HTML_SITE_LON=YOUR LONGITUDE" \ -e "HTML_SITE_NAME=MY_SITE_NAME" \ -e "PANORAMA_ID=MY_PANORAMA_ID" \ -e "LAYERS_OWM_API_KEY=MY_OWM_API_KEY" \ -e "ADSBEXCHANGE_UUID=MY_UUID" \ -e "ADSBEXCHANGE_STATION_NAME=MY_STATION_NAME" \ -e "MLAT_EXACT_LAT=MY_EXACT_SITE_LAT" \ -e "MLAT_EXACT_LON=MY_EXACT_SITE_LON" \ -e "MLAT_ALTITUDE_MSL_METERS=MY_SITE_ALT_MSL_METERS" \ -e "SERVICE_ENABLE_PLANEFINDER=false" \ -e "SERVICE_ENABLE_DUMP1090=false" \ -e "SERVICE_ENABLE_PIAWARE=false" \ -e "SERVICE_ENABLE_HTTP=false" \ -e "SERVICE_ENABLE_ADSBEXCHANGE=false" \ -e "SERVICE_ENABLE_FR24FEED=true" \ --tmpfs /run:exec,size=32M \ --tmpfs /planefinder/log:exec,size=32M \ --tmpfs /usr/lib/fr24/public_html/data:size=32M \ thomx/fr24feed-piaware
  17. thanks a lot. i will give it a try and get back with the results
  18. is it possible that the script is broken? deleted the whole docker container including images, removed all isos, all appdata files, all .img files, even removed all userscripts from /tmp/ but after redownloading and installing, the docker image gets started automatically and then via user scripts first running the notifiert script in background and then the helper script it says it cannot find the appropiate xml file (which should be correct as there is no mac vm so far) but also don't create it...
  19. I am running an windows10 vm thats currently located on my nvme cache ssd. ssd has a size of 500GB. used is 499GB of it. I now uninstalled an application with about 40GB of size. game is gone, usage of drive (in windows explorer) got down by about 40GB. wastebin is empty. nevertheless the usage of the nvme ssd is still 499GB. rebooted it. no help. what can I do?
  20. Same exact question for me. I want to selfhost several web apps on my unraid server behind CG-NAT (Deutsche Glasfaser fibre connection) and haven an VPS server in a datacenter running with wireguard running on it stable. How can I setup unraid to use the imported tunnel and behave like a client and not like a server.
  21. It helped me to deactivate any other devices in system preferences except the Ethernet Adapter. And I used vmxnet adapter (got it working that way with KVM/QEMU). Dont know about unraid