Posts

Showing posts from October, 2025

stack:Error: connect ETIMEDOUT 172.18.0.2:8080

 why am getting this error, T 172.18.0.2:8080 name:Error stack:Error: connect ETIMEDOUT 172.18.0.2:8080\n    at Function.AxiosError.from (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/axios@1.12.0/node_modules/axios/lib/core/AxiosError.js:96:14)\n    at RedirectableRequest.handleRequestError (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/axios@1.12.0/node_modules/axios/lib/adapters/http.js:638:25)\n    at RedirectableRequest.emit (node:events:531:35)\n    at ClientRequest.eventHandlers.<computed> (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/follow-redirects@1.15.11/node_modules/follow-redirects/index.js:49:24)\n    at ClientRequest.emit (node:events:519:28)\n    at emitErrorEvent (node:_http_client:105:11)\n    at Socket.socketErrorListener (node:_http_client:518:5)\n    at Socket.emit (node:events:519:28)\n    at emitErrorNT (node:internal/streams/destroy:170:8)\n ...

connecting two n8n container instance for working together

 PS C:\Users\bum> docker ps CONTAINER ID   IMAGE                                         COMMAND                  CREATED       STATUS          PORTS                                         NAMES 0dc3827004e7   google-maps-scraper-main-scraper-api:latest   "uvicorn gmaps_scrap…"   3 hours ago   Up 52 minutes   0.0.0.0:5689->8001/tcp, [::]:5689->8001/tcp   gmaps_scraper_api_service a3e3df5ef8f2   n8nio/n8n:latest                              "tini -- /docker-ent…"   3 days ago    Up 2 hours    ...

next js frontend

Run the following command in your ./launchpad/next folder yarn && yarn build && yarn start change port for nextjs {   "name": "nextjs",   "version": "0.1.0",   "private": true,   "scripts": {     "dev": "next dev -p 3001--turbopack",     "build": "next build",     "start": "next start -p 3001",     "lint": "next lint",     "clean": "rm -rf .next && rm -rf node_modules && npm i"   }, added -p 3001 in dev ans start npm run start .htaccess REWRITERULE ^(.*)$ HTTP://nextjscloudvariation/$1 [P]

install strapi

 1. Update your server sudo apt update && sudo apt upgrade -y 2. Install Node.js (LTS recommended, e.g. Node 18 or 20) Strapi requires Node.js ≥ 18. Install using NodeSource (recommended): curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt install -y nodejs Check version: node -v npm -v 3. Install Yarn (optional but recommended) npm install -g yarn Check version: yarn -v 4. Install Strapi (using npx) Go to the folder where you want Strapi: root@server1:/home/strapi.cloudvariation.in/public_html# npx create-strapi-app@latest cloudvariation  Strapi   v5.25.0 🚀 Let's create your new project 🚀 Welcome to Strapi! Ready to bring your project to life? Create a free account and get: ✨ 30 days of access to the Growth plan, which includes: ✅ Single Sign-On (SSO) login ✅ Content History ✅ Releases ? Please log in or sign up. Skip ? Do you want to use the default database (sqlite) ? Yes ? Start with an example structure & data? Yes ? Start w...