I'm doing a Meteor app where I can have multiple users. I want to run two instances of the app.
So I do meteor --port 3001
from a terminal and meteor --port 3002
from another teminal.
The first instance works fine and launch properly the app. The second returns an error :
Error: EBUSY, unlink 'C:\Users\userName\Desktop\myAppName\.meteor\local\db\mongod.lock'
So I assume mongodb lock the database... So how can I test my app when multiple users are using it on the same time ?
Thanks :=)