I am using mongo-connector to synchronize data between MongoDB and SOLR. I am working in RedHat 7 OS Server, I wanted to run the mongo-connector command as fork process in Server OS, since i need a realtime synchronization without any interruption.
I am issuing the command
sudo mongo-connector -m localhost:27017 -t http://localhost:8983/solr/Search --auto-commit-interval=0 -d solr_doc_manager
this will continue the mongo-connector service until i exit the command interface to the Server. How can i resolve this issue?
Thank you.