MongoDB.service failed with result exit-code

Just do those two commands for temporary solution: sudo rm -rf /tmp/mongodb-27017.sock sudo service mongod start For details: That shall be fault due to user permissions in .sock file, You may have to change the owner to monogdb user. sudo chown -R mongodb:mongodb /var/lib/mongodb sudo chown mongodb:mongodb /tmp/mongodb-27017.sock For more details visit Documentation for installation

How to read input data from an excel spreadsheet and pass it JSON payload in karate framework?

A few points: I recommend you look at Karate’s built-in data-table capabilities, it is far more readable, integrates into your test-script and you won’t need to depend on other software. Refer these examples: call-table.feature and dynamic-params.feature Next I would recommend using JSON instead of an Excel or CSV file, it is natively supported by Karate: … Read more