- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I used nohup to run a python program (comfyUI) which is occupying port 8188. However, now I am unable to stop this program. Even after rebooting the machine multiple times, I can still see that port 8188 is being occupied by running ss -tunlp, but I cannot stop it. I think it is consuming a lot of resources. What should I do?
Here is a screenshot of my terminal showing the issue.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi nameliu,
Thank you for reaching out to us. Please follow the steps below and provide us with a screenshot of the terminal if there is any issue.
To list any process listening to the port 8188: lsof -i:8188
To kill any process listening to the port 8188: kill $(lsof -t -i:8188)
To kill any process listening to the port 8188 (alternate method): kill -9 $(lsof -t -i:8188)
Regards,
Sarven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi nameliu,
This thread will no longer be monitored since we have provided a solution. If you need any additional information from Intel, please submit a new question.
Regards,
Sarven

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page