...
- Before starting vREST, please ensure that MongoDB server is ready to accept database connections. So,
- If you are running MongoDB on separate machine, then please ensure that MongoDB server is running before starting the vREST application.
or if you are running MongoDB on the same machine as vREST application, then you must run vrest.service after mongod.service as follows:
Code Block [Unit] Description=vREST - An automated REST API Testing Tool After=network.target mongod.service [Service] ExecStart=</path/to/vrest/binary/file> Restart=always User=<USER_NAME> Group=<GROUP_NAME> Environment=PATH=/usr/bin:/usr/local/bin WorkingDirectory=</path/to/vrest/binary/directory> [Install] WantedBy=multi-user.target
And you must update the mongod.service by following this link.