Skip to content

Instantly share code, notes, and snippets.

@AhmedHelalAhmed
Created March 7, 2020 10:09
Show Gist options
  • Select an option

  • Save AhmedHelalAhmed/835bc1891ba91ff43d6118887c9dbfd6 to your computer and use it in GitHub Desktop.

Select an option

Save AhmedHelalAhmed/835bc1891ba91ff43d6118887c9dbfd6 to your computer and use it in GitHub Desktop.
mongodb install ubuntu
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
sudo apt-get update
sudo apt-get install -y mongodb
sudo apt-get install php-mongodb
#for test
mongo
@AhmedHelalAhmed
Copy link
Author

`

from terminal

mongo
show databases;
show tables;
db.collectionName.find() # get all objects
`

@AhmedHelalAhmed
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment