I have made some changes at Solr Schema file and I see I 'am forced to restart SolR in order to have Solr running with new schema updates.
This is hosted on a server where solr is running from a start.jar file but I'am not sure how it was started(maybe with nohup)
I have found a way to stop SolR from another question(https://stackoverflow.com/questions/2150767/how-to-start-solr-automatically):
kill `ps uax | grep -i "java -jar start.jar" | head -n 1 | awk '{print $2}'`
After this, I start SolR with "java -jar start.jar".
Is this a correct way to do the restart or is there built-in/better way to restart the jar?