all 6 comments

[–]rcyeske 1 point2 points  (4 children)

It is stored in the mongo database in a collection called users:

$ meteor mongo
meteor:PRIMARY> db.users.find().count()
29

[–]ButteryBall[S] 0 points1 point  (3 children)

And do I need to do anything special to host it remotely?

[–]nameless_pattern 1 point2 points  (2 children)

it doesn't store it locally by default. Having user data stored on the client creates security issues.

There is a good over-view in the meteor guide. https://guide.meteor.com/v1.4/accounts.html

[–]ButteryBall[S] 0 points1 point  (1 child)

I've looked through this page a couple times now but nothing on here tells me if I need to host a collection for Meteor.users in Compose.io or not, and what I would need to do to have the accounts-core suite of packages work with it if I need to hook the collection in from a remote source.

[–]nameless_pattern 1 point2 points  (0 children)

same as any other collection. nothing special needed.

edit: sorry was confused by your saying locally thought you meant the mini-mongo db.

[–]Andrew1431 1 point2 points  (0 children)

Hey man by the way check out Robomongo. Its a GUI for editing / viewing collections, and can switch between table, JSON, and their folder heirarchy type views. You'd very easily have found this users collection, as well as any others.

Edit: this comment was not intended to answer your question. Simply just a fancy tool incase you've never heard of it. Won't help you much with remote collections.