Couldnt get local file trigger

I have installed n8n self host starter pack but when I try to find the local file trigger it is not showing.

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey @michealla according to the official n8n documentation the Local File Trigger node is disabled by default starting from version 2.0 for security reasons.

To use it, you must explicitly enable it through configuration.

Add this to your docker compose under environment

- NODES_EXCLUDE="n8n-nodes-base.executeCommand"

And if you want to enable all nodes

    - NODES_EXCLUDE="[]"

Let me know if you find this helpful.

3 Likes

Thanks a lot!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.