Actions64
- 定时任务 Actions
- 订阅管理 Actions
- 环境变量 Actions
- 配置文件 Actions
- 脚本管理 Actions
- 依赖管理 Actions
- 日志管理 Actions
- 系统设置 Actions
Overview
This node integrates with the QingLong Panel API, a task scheduling and management platform. It allows users to perform various system-level operations such as running commands, managing crontab tasks, subscriptions, environment variables, configurations, scripts, dependencies, logs, and system settings.
Specifically, for the 系统设置 (System Settings) resource with the 运行命令 (Run Command) operation, the node sends a command to be executed on the QingLong system via its API. This is useful for automating system-level tasks or triggering specific commands remotely within an automation workflow.
Practical examples:
- Running shell commands or scripts on a remote server managed by QingLong.
- Automating system maintenance tasks like clearing caches or restarting services.
- Triggering custom commands as part of a larger automated deployment or monitoring process.
Properties
| Name | Meaning |
|---|---|
| 请求Body | JSON object containing the command to execute. The default format is: |
| ```json | |
| { | |
| "command": "要执行的命令:string" | |
| } | |
| ``` |
The 请求Body property expects a JSON input where you specify the exact command string to run on the system.
Output
The node outputs a JSON object under the field result which contains the response from the QingLong API after executing the command. This typically includes execution status, output messages, or error details returned by the system.
Example output structure:
{
"result": {
// API response data about the command execution
}
}
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential configured in n8n to authenticate requests against the QingLong Panel API.
- The node depends on network access to the QingLong API endpoint.
- Proper permissions on the QingLong system to execute commands remotely.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Incorrect command syntax or unsupported commands may result in errors from the QingLong API.
- Network connectivity problems can prevent successful API calls.
Error messages:
"任务模块的[operation]操作暂未实现"means the requested operation is not implemented in the node; verify that the operation name is correct.- API errors related to permission denied or command execution failure will be returned in the
resultfield; check the command syntax and user permissions on QingLong.
Resolution tips:
- Ensure the API key credential is correctly set up and has sufficient privileges.
- Validate the command string before sending it.
- Check network connectivity and QingLong server status.
Links and References
- QingLong Panel API documentation: https://qinglong.online/api/
- QingLong project homepage: https://qinglong.online/
- n8n documentation on creating custom nodes: https://docs.n8n.io/integrations/creating-nodes/