This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Terminating a process on port 8081 | |
| Run the following command on a Mac to find the id for the process that is listening on port 8081: | |
| $ sudo lsof -i :8081 | |
| Then run the following to terminate the process: | |
| $ kill -9 <PID> | |
| On Windows you can find the process using port 8081 using Resource Monitor and stop it using Task Manager. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # source: | |
| # https://discussions.apple.com/message/32354266#message32354266 | |
| sudo mdutil -Ea | |
| sudo mdutil -ai off | |
| sudo mdutil -ai on |