Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Message added by EDACerton,

This version of the plugin is no longer available in Community Applications. Future updates and support will be provided at:

https://forums.unraid.net/topic/191179-plugin-open-files-see-whats-preventing-unraid-from-shutting-down/

Open Files Plugin - Can help with troubleshooting why server won't shut down

Featured Replies

23 minutes ago, dlandon said:

Remove the ipmi plugin and contact the plugin author about the php errors.

 

Thanks for the speedy reply!

 

OK, removed the plugin and am reporting it to the author, but it still didn't fix the Open Files issue. Nothing is now showing in the PHP logs, and no errors/warnings in syslog. I rebooted after removing the plugin, but still have the same symptoms - it works when the array is stopped and when 1st started.  Once the Docker service is enabled (with no containers started), Open Files will sometimes work but most of the time it times out. And when any containers are started, it will always time out.

 

Anything else you can think of?

  • Replies 129
  • Views 51.4k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • The author did remove it.  At this time, I am unsure as to why.  Assuming that the copyrights etc allow it, I will publish a replacement from my repository tonight / tomorrow.  This will necessitate a

  • EDACerton
    EDACerton

    I have a fork working and submitted to CA, just waiting for it to get approved. 

  • Right now, I've decided that I'm not going to fork and republish the plugins.  At this time I do have far too much on my plate to take on any additional plugins.   I do not know why the author chose t

Posted Images

  • Author
10 minutes ago, AgentXXL said:

 

Thanks for the speedy reply!

 

OK, removed the plugin and am reporting it to the author, but it still didn't fix the Open Files issue. Nothing is now showing in the PHP logs, and no errors/warnings in syslog. I rebooted after removing the plugin, but still have the same symptoms - it works when the array is stopped and when 1st started.  Once the Docker service is enabled (with no containers started), Open Files will sometimes work but most of the time it times out. And when any containers are started, it will always time out.

 

Anything else you can think of?

Post diagnostics.

On 2/26/2024 at 4:11 PM, dlandon said:

Post diagnostics.

 

Sorry, had a flare-up with some health issues so I haven't grabbed them yet. I noticed a new version of the plugin was released today so I installed and it's now working. I suspect it was the increased timeout. Thanks for incorporating this fix!

 

Hey all! Great plugin and thank you for your time.

 

I'm wondering if the plugin logs previously-opened files. I used File Activity and realized that one of my movie files was opened. Almost exactly 30 mins (my spin-down setting) after, the related disk spun down. This suggests the file was kept open for a short period of time, I think.

 

When checking Open Files, I wasn't able to see that file shown as open. This may be because it was open for a short time and I missed it. To confirm if that is the case, I'm wondering if there is a log that shows some history that can be accessed.

 

Thanks in advance!

  • Author
6 hours ago, jv6478 said:

Hey all! Great plugin and thank you for your time.

 

I'm wondering if the plugin logs previously-opened files. I used File Activity and realized that one of my movie files was opened. Almost exactly 30 mins (my spin-down setting) after, the related disk spun down. This suggests the file was kept open for a short period of time, I think.

 

When checking Open Files, I wasn't able to see that file shown as open. This may be because it was open for a short time and I missed it. To confirm if that is the case, I'm wondering if there is a log that shows some history that can be accessed.

 

Thanks in advance!

That's what FIle Activity does.

1 hour ago, dlandon said:

That's what FIle Activity does.

In the active File Activity log, I just see that a file was opened but I'm trying to track down what actually opened or accessed it. If that's something I can find, where would I look? Thanks for your support!

  • 1 year later...

I ran Fix Common Problems and it listed this plugin as unknown. I installed and have used it previously. Was this plugin depreciated or removed? It is not listed in CA anymore and the GitHub page is gone.

The author did remove it.  At this time, I am unsure as to why.  Assuming that the copyrights etc allow it, I will publish a replacement from my repository tonight / tomorrow.  This will necessitate an uninstall / reinstall of the plugin

17 hours ago, Squid said:

The author did remove it.  At this time, I am unsure as to why.  Assuming that the copyrights etc allow it, I will publish a replacement from my repository tonight / tomorrow.  This will necessitate an uninstall / reinstall of the plugin

Cool, Thanks Squid Keep us updated. 

Right now, I've decided that I'm not going to fork and republish the plugins.  At this time I do have far too much on my plate to take on any additional plugins.   I do not know why the author chose to delete the repositories, but that is unfortunately out of my hands.

 

The notification from Fix Common Problems is correct, as the plugins are currently unknown to CA, but I do not see any reason for these in particular to be uninstalled as there are no compatibility or security issues with them as far as I know.  But keeping them or uninstalling them is however entirely up to you guys.

 

Maybe in the future the author will reactivate these plugins, but that decision is entirely out of my hands.

This is a really useful plugin. It is easy to see where files are accessed from cache or HDD. Do you see any reason to have incompatibility issues with 7.1.x ?

Ok, removed plugin and forget, author`s behavior like small school girl.

Do we know what happened to this plugin? The author is a veteran contributor, and I use a good number of their plugins.

 

Are they OK?

https://github.com/dlandon/docker.templates/commits?author=dlandon&since=2025-05-01&until=2025-05-13

 

All we have is that Dlandon is cleaning house. and has removed the project page and thw xml from the CA store, at this time this plugin is considered unmaintained and dead.

while the web gui was a nice representation, you can get the same info from top / htop

 

some example script and terminal comand you can run instead...

 

 

infer running services from processes

ps -eo pid,comm,cmd --sort=cmd | grep -E 'rc|daemon|init|sbin' | grep -v grep

 

Or better yet, list all daemons by checking for processes launched by the init scripts:

ps -eo pid,comm,cmd | grep -v grep | grep -E '/etc/rc.d/|/usr/sbin/'

 

For each PID, get open files using lsof

(User script)

for pid in $(ps -eo pid,cmd | grep -E '/etc/rc.d/|/usr/sbin/' | grep -v grep | awk '{print $1}'); do
    echo "=== PID: $pid ==="
    lsof -p "$pid"
    echo
done

 

For open network connections or listening sockets

lsof -i

 

Or per-process:

lsof -nP -p <pid> | grep IPv

--Repleace <pid> with pid # form htop

this will atlease simulate and get you data in the web terminal of things running if/when needed during troubleshooting...
 

Edited by bmartino1

On 5/9/2025 at 2:24 PM, Squid said:

Right now, I've decided that I'm not going to fork and republish the plugins.  At this time I do have far too much on my plate to take on any additional plugins.   I do not know why the author chose to delete the repositories, but that is unfortunately out of my hands.

 

The notification from Fix Common Problems is correct, as the plugins are currently unknown to CA, but I do not see any reason for these in particular to be uninstalled as there are no compatibility or security issues with them as far as I know.  But keeping them or uninstalling them is however entirely up to you guys.

 

Maybe in the future the author will reactivate these plugins, but that decision is entirely out of my hands.

Can you recommend a good read on containers for Unraid?  I'm trying to put this back up but I'm having a bear of a time getting the PLG file to work for some reason. 

51 minutes ago, EDACerton said:

I have a fork working and submitted to CA, just waiting for it to get approved. 

lol so do I

On 5/14/2025 at 8:50 PM, EDACerton said:

I have a fork working and submitted to CA, just waiting for it to get approved. 

I can see your entries in the CA listings, but they are showing "Pending".  I took this as pending install and came here to find out what pending means.   I can see you are awaiting a +1 or +2.  Thank you for all your efforts.  

2 hours ago, JudasD said:

I can see your entries in the CA listings, but they are showing "Pending".  I took this as pending install and came here to find out what pending means.   I can see you are awaiting a +1 or +2.  Thank you for all your efforts.  

Uninstall the plugins first and then reinstall them via CA. This will resolve the pending issue.

10 minutes ago, Wetterchen said:

Uninstall the plugins first and then reinstall them via CA. This will resolve the pending issue.

unfortunately i could not immediately uninstall the plugins after they switched to 'pending'.   I needed to toggle safe mode and then i could do the uninstall.  very odd behavior, but at least i didn't have to reboot.

25 minutes ago, Wetterchen said:

Uninstall the plugins first and then reinstall them via CA. This will resolve the pending issue.

Yes, that's working for me too. Removed the old first and than we can install the new from CA. I have the pending State too before.

Edited by Revan335

On 5/14/2025 at 10:50 PM, EDACerton said:

I have a fork working and submitted to CA, just waiting for it to get approved. 

Thanks Eda. Unstaled and installed new open files from CA worked for me as well.

Can added a Filter Function for this Plugin?

For example System Files, User Files, ...

Actually I see system files under /lib and /usr

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.