I am using this command to stop the Appium server :
kill $(lsof -t -i: 10723)
But now it is not working.
I am using this command to stop the Appium server :
kill $(lsof -t -i: 10723)
But now it is not working.
Avoid hardcoding pid, port, address, etc. Search by process name (Appium):
kill -9 $(ps -A | grep -m1 Appium | awk '{print $1}')