README 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. MongoDB README
  2. Welcome to MongoDB!
  3. COMPONENTS
  4. mongod - The database server.
  5. mongos - Sharding router.
  6. mongo - The database shell (uses interactive javascript).
  7. UTILITIES
  8. install_compass - Installs MongoDB Compass for your platform.
  9. BUILDING
  10. See docs/building.md.
  11. RUNNING
  12. For command line options invoke:
  13. $ ./mongod --help
  14. To run a single server database:
  15. $ sudo mkdir -p /data/db
  16. $ ./mongod
  17. $
  18. $ # The mongo javascript shell connects to localhost and test database by default:
  19. $ ./mongo
  20. > help
  21. INSTALLING COMPASS
  22. You can install compass using the install_compass script packaged with MongoDB:
  23. $ ./install_compass
  24. This will download the appropriate MongoDB Compass package for your platform
  25. and install it.
  26. DRIVERS
  27. Client drivers for most programming languages are available at
  28. https://docs.mongodb.com/manual/applications/drivers/. Use the shell
  29. ("mongo") for administrative tasks.
  30. BUG REPORTS
  31. See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.
  32. PACKAGING
  33. Packages are created dynamically by the package.py script located in the
  34. buildscripts directory. This will generate RPM and Debian packages.
  35. DOCUMENTATION
  36. https://docs.mongodb.com/manual/
  37. CLOUD HOSTED MONGODB
  38. https://www.mongodb.com/cloud/atlas
  39. FORUMS
  40. https://community.mongodb.com
  41. A forum for technical questions about using MongoDB.
  42. https://community.mongodb.com/c/server-dev
  43. A forum for technical questions about building and developing MongoDB.
  44. LEARN MONGODB
  45. https://university.mongodb.com/
  46. LICENSE
  47. MongoDB is free and open-source. Versions released prior to October 16,
  48. 2018 are published under the AGPL. All versions released after October
  49. 16, 2018, including patch fixes for prior versions, are published under
  50. the Server Side Public License (SSPL) v1. See individual files for
  51. details.