Meteor Up deployment, can't use meteor mongo --url

前端 未结 7 1310
-上瘾入骨i
-上瘾入骨i 2020-12-09 06:21

I\'ve recently deployed my Meteor app to a Digital Ocean droplet running Ubuntu 14.04 x32. I used Meteor Up with this mup.json file:



        
7条回答
  •  没有蜡笔的小新
    2020-12-09 06:27

    I think I found a solution for accessing the DB with mupx on a digitalocean ubuntu 14.04 server.

    After deployment of your app with mupx, do the following:

    Login with ssh into your server, then install mongo: apt-get install mongodb

    Then run the mongo command on your server. Try checking if your DB exists by running show dbs. If it is, then use yourdbname. It should hold all the data from your running app!

    Let me know if it works. Good luck.

提交回复
热议问题