0

How to unset the MONGO_URL of my meteor app in windows. My meteor app is crashing after I ran this code : set MONGO_URL=mongodb://192.168.1.172:3001/meteor meteor in cmd. How to unset it and connect it back to the built in db?

unset MONGO_URL just not working in windows cmd.

Dellasys
  • 1
  • 1
  • Maybe this is helpful: http://superuser.com/questions/279072/how-do-i-clear-all-environment-variables-from-a-windows-shell-session – Markus Sabin Oct 04 '16 at 15:31
  • And [another](http://stackoverflow.com/questions/13222724/command-line-to-remove-an-environment-variable-from-the-os-level-configuration) – CodeChimp Oct 04 '16 at 16:51

1 Answers1

0

In windows, it seems like restarting the command prompt will reset the mongo_url that I set. now works fine.

Dellasys
  • 1
  • 1