
搭建工作流自动化工具n8n并配置deepseek大模型
1. 摘要(发音为 "n-eight-n")是一个开源的图形化低代码工作流自动化工具,允许用户通过可视化界面连接不同的应用程序和服务,实现自动化任务。在linux服务器上,用docker安装n8n工作流自动化工具,用ollama私有化部署DeepSeek-R1-Distill-Qwen-1.5B。If you prefer to disable this security feature,set
1. 摘要
n8n(发音为 "n-eight-n")是一个开源的图形化低代码工作流自动化工具,允许用户通过可视化界面连接不同的应用程序和服务,实现自动化任务。
在linux服务器上,用docker安装n8n工作流自动化工具,用ollama私有化部署DeepSeek-R1-Distill-Qwen-1.5B。
2. 安装docker
安装docker参考:安装docker和docker-compose以及docker常用命令总结-CSDN博客
3. 安装n8n
3.1 拉取n8n的镜像
sudo docker pull n8nio/n8n
3.2 创建n8n_data
sudo docker volume create n8n_data
3.3 运行
sudo docker run -it -d --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n n8nio/n8n
4. 远程打开
http://your_server_ip:5678
4.1 打开出错:
Your n8n server is configured to use a secure cookie,
however you are either visiting this via an insecure URL, or using Safari.
To fix this, please consider the following options:
- Setup TLS/HTTPS (recommended), or
- If you are running this locally, and not using Safari, try using localhost instead
- If you prefer to disable this security feature (not recommended), set the environment variable N8N_SECURE_COOKIE to false
4.2 解决远程打开出错的问题
设置N8N_SECURE_COOKIE=false
4.2.1 删除刚才创建的n8n
sudo docker stop n8n
sudo docker rm n8n
4.2.2 把N8N_SECURE_COOKIE设置false后重新启动
sudo docker run -it -d --restart unless-stopped --name n8n -p 5678:5678 -e N8N_SECURE_COOKIE=false -v n8n_data:/home/node/.n8n n8nio/n8n
成功远程打开http://your_server_ip:5678
5. 用ollama安装 DeepSeek-R1-Distill-Qwen-1.5B
用ollama安装DeepSeek-R1-Distill-Qwen-1.5B请参考:
使用ollama部署DeepSeek-R1-Distill-Qwen-1.5B-CSDN博客
6. 在n8n上配置DeepSeek-R1-Distill-Qwen-1.5B
更多推荐
所有评论(0)