Bug report: Codex VS Code extension stuck on loading, never shows login screen
OpenAI Developer Community
February 7, 2026
I figured it out in my case:
My browser tried to send the data to localhost:1455 , because port 1455 is already in use by another process (likely a hung background. So what I do was just kill this pid, and redit it. it worked for me.
Find the process holding the port:
Windows (PowerShell):
netstat -ano | findstr :1455Linux/Mac:
lsof -i :1455ornetstat -nlp | grep 1455
Kill it:
Windows:
taskkill /PID <PID_FROM_ABOVE> /FLinux/Mac:
kill -9 <PID>
Discussion in the ATmosphere