BurpGPT
Aegis CyberBurpGPTUpgrade to Pro edition
  • Welcome
  • Getting Started
    • Installation
  • How To
    • Use the OpenAI's API feature
    • Use the Azure OpenAI Service's API feature
    • Use the Local LLM feature
    • Use the Prompt Library feature
    • Use a custom-trained model
  • Help & FAQ
    • FAQ
      • Can BurpGPT editions be used as standalone applications operating independently?
      • Does BurpGPT Pro cover Azure OpenAI Service/OpenAI usage, or do I need an extra subscription?
      • Does the Pro edition's local LLM feature share any data with OpenAI or any third party?
      • How can I cancel my subscription?
      • How to resolve the 'Runtime Error: Bad magic number in .pyc file' error?
      • How to resolve the 'Cannot use chat template functions...' error?
      • If the server displays an error indicating that port 3000 is in use, how can I resolve this issue?
      • Is it possible for BurpGPT editions to produce false positive results?
      • What are the possible causes for an unsuccessful activation of my BurpGPT Pro?
      • What is the limit for device activations with a single BurpGPT Pro license?
    • Changelog
    • Roadmap
Powered by GitBook
On this page

Was this helpful?

  1. Help & FAQ
  2. FAQ

If the server displays an error indicating that port 3000 is in use, how can I resolve this issue?

This page addresses a frequently asked question.

When you see an error stating port 3000 is already in use, it means another service is using that port or a previous BurpGPT session has not closed properly. To fix this, use the commands below to stop the current server before restarting BurpGPT:

  1. First, identify the process ID (PID) using:

sudo lsof -t -i :3000
  1. Then, forcefully terminate the process by executing:

kill -9 <PID>

Run the following command in PowerShell to terminate the process:

$processId = Get-NetTCPConnection -LocalPort 3000 | Select-Object -ExpandProperty OwningProcess
Get-Process -Id $processId | Stop-Process -Force
PreviousHow to resolve the 'Cannot use chat template functions...' error?NextIs it possible for BurpGPT editions to produce false positive results?

Last updated 1 year ago

Was this helpful?