Files
nocodb/packages/noco-docs/docs/020.getting-started/050.self-hosted/010.installation/050.executable-installation.md
2024-09-03 21:12:00 +05:30

2.2 KiB

title, description, tags, keywords
title description tags keywords
Executables Executable installation
Open Source
NocoDB installation
NocoDB executable installation
NocoDB prerequisites

Installing NocoDB using Executables

NocoDB provides pre-built executables for various platforms, allowing you to run NocoDB without any additional dependencies.

Downloading and Running NocoDB

Choose the appropriate command based on your operating system and architecture:

curl http://get.nocodb.com/macos-x64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
curl http://get.nocodb.com/macos-arm64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
curl http://get.nocodb.com/linux-x64 -o nocodb -L \
  && chmod +x nocodb \
  && ./nocodb
```bash curl http://get.nocodb.com/linux-arm64 -o nocodb -L \ && chmod +x nocodb \ && ./nocodb ``` ```bash iwr http://get.nocodb.com/win-x64.exe -OutFile "Noco-win-x64.exe" .\Noco-win-x64.exe ```
iwr http://get.nocodb.com/win-arm64.exe -OutFile "Noco-win-arm64.exe"
.\Noco-win-arm64.exe

Accessing NocoDB

Once you run the executable, you can access NocoDB in your browser by visiting http://localhost:8080.

Important Notes

  • The executables are self-contained and don't require any additional installation steps.
  • By default, NocoDB will use SQLite as the database, storing data in the same directory as the executable.
  • To use a different database or configure other options, you can set environment variables before running the executable.

Troubleshooting

  • If you see a security warning on macOS, you may need to allow the executable in System Preferences > Security & Privacy.
  • On Windows, if SmartScreen prevents the execution, you can choose "More info" and then "Run anyway".
  • Make sure port 8080 is not in use by another application.