Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pylume_examples.py can't run #57

Open
OKHand-Zy opened this issue Mar 18, 2025 · 0 comments
Open

pylume_examples.py can't run #57

OKHand-Zy opened this issue Mar 18, 2025 · 0 comments

Comments

@OKHand-Zy
Copy link

I tried several times, but I kept encountering the same issue. I cleared port 3000, but it still says it's in use when I run the program.

❯ sudo lsof -i :3000
Password:
COMMAND  PID USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
lume    2132 ziyu    4u  IPv6 0x14f803e4fdc52de0      0t0  TCP *:hbci (LISTEN)
❯ kill 2132
❯ sudo lsof -i :3000
❯ python pylume_examples.py
2025-03-18 16:25:41,939 - lume_server - DEBUG - Starting PyLume server
2025-03-18 16:25:41,939 - lume_server - DEBUG - Checking availability of port 3000
2025-03-18 16:25:41,939 - lume_server - DEBUG - Created socket for port 3000 check
2025-03-18 16:25:41,939 - lume_server - DEBUG - Set SO_REUSEADDR
2025-03-18 16:25:41,939 - lume_server - DEBUG - Successfully bound to port 3000
2025-03-18 16:25:41,939 - lume_server - DEBUG - Successfully listening on port 3000
2025-03-18 16:25:41,939 - lume_server - DEBUG - Port 3000 is available
2025-03-18 16:25:41,939 - lume_server - DEBUG - Socket closed
2025-03-18 16:25:41,939 - lume_server - DEBUG - Port 3000 is available
2025-03-18 16:25:43,975 - lume_server - DEBUG - PyLume server started successfully
2025-03-18 16:25:43,975 - lume_server - DEBUG - Server is now responsive

=== Getting Latest IPSW URL ===
2025-03-18 16:25:43,975 - lume_server - DEBUG - Starting PyLume server
2025-03-18 16:25:43,976 - lume_server - DEBUG - Checking availability of port 3000
2025-03-18 16:25:43,976 - lume_server - DEBUG - Created socket for port 3000 check
2025-03-18 16:25:43,976 - lume_server - DEBUG - Set SO_REUSEADDR
2025-03-18 16:25:43,976 - lume_server - DEBUG - Successfully bound to port 3000
2025-03-18 16:25:43,976 - lume_server - DEBUG - Successfully listening on port 3000
2025-03-18 16:25:43,976 - lume_server - DEBUG - Port 3000 is available
2025-03-18 16:25:43,976 - lume_server - DEBUG - Socket closed
2025-03-18 16:25:43,976 - lume_server - DEBUG - Port 3000 is available
2025-03-18 16:25:45,982 - lume_server - DEBUG - Stopping lume server...
Traceback (most recent call last):
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/site-packages/pylume/server.py", line 293, in _start_server
    await self._wait_for_server()
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/site-packages/pylume/server.py", line 324, in _wait_for_server
    raise RuntimeError(error_msg)
RuntimeError: Server process terminated unexpectedly.
Exit code: 1
Output: [2025-03-18T08:25:44Z] INFO: Starting server port=3000
[2025-03-18T08:25:44Z] ERROR: Port 3000 is already in use by another process
Try using a different port: lume serve --port 3001


During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/ziyu/RemoteFolder/ziyu-pr/computer/examples/pylume_examples.py", line 98, in <module>
    asyncio.run(main())
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
    return future.result()
  File "/Users/ziyu/RemoteFolder/ziyu-pr/computer/examples/pylume_examples.py", line 17, in main
    url = await pylume.get_latest_ipsw_url()
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/site-packages/pylume/pylume.py", line 43, in wrapper
    await self.server.ensure_running()
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/site-packages/pylume/server.py", line 398, in ensure_running
    await self._start_server()
  File "/Users/ziyu/miniconda3/envs/computer/lib/python3.10/site-packages/pylume/server.py", line 297, in _start_server
    raise RuntimeError(f"Failed to start lume server process: {str(e)}")
RuntimeError: Failed to start lume server process: Server process terminated unexpectedly.
Exit code: 1
Output: [2025-03-18T08:25:44Z] INFO: Starting server port=3000
[2025-03-18T08:25:44Z] ERROR: Port 3000 is already in use by another process
Try using a different port: lume serve --port 3001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant