[log]brew install mongodb

brew install mongodb


A CA file has been bootstrapped using certificates from the SystemRoots
keychain. To add additional certificates (e.g. the certificates added in
the System keychain), place .pem files in
  /usr/local/etc/openssl/certs

and run
  /usr/local/opt/openssl/bin/c_rehash

openssl is keg-only, which means it was not symlinked into /usr/local,
because Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries.

If you need to have openssl first in your PATH run:
  echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile

For compilers to find openssl you may need to set:
  export LDFLAGS="-L/usr/local/opt/openssl/lib"
  export CPPFLAGS="-I/usr/local/opt/openssl/include"



A CA file has been bootstrapped using certificates from the SystemRoots
keychain. To add additional certificates (e.g. the certificates added in
the System keychain), place .pem files in
  /usr/local/etc/openssl/certs

and run
  /usr/local/opt/openssl/bin/c_rehash

openssl is keg-only, which means it was not symlinked into /usr/local,
because Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries.

If you need to have openssl first in your PATH run:
  echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile

For compilers to find openssl you may need to set:
  export LDFLAGS="-L/usr/local/opt/openssl/lib"
  export CPPFLAGS="-I/usr/local/opt/openssl/include"

==> mongodb
To have launchd start mongodb now and restart at login:
  brew services start mongodb  # 启动
Or, if you don't want/need a background service you can just run:
  mongod --config /usr/local/etc/mongod.conf





~ $ sudo mkdir -p /data/db
Password:
~ $ sudo chown -R $USER /data/db
~ $ nano /usr/local/etc/mongod.con



pgrep mongod  # 退出


~ $ brew services start mongodb
==> Successfully started `mongodb` (label: homebrew.mxcl.mongodb)


~ $ mongo
MongoDB shell version v4.0.3
connecting to: mongodb://127.0.0.1:27017
Implicit session: session {
    
     "id" : UUID("c2d0607c-1788-428d-9844-fb77192dce48") }
MongoDB server version: 4.0.3
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
	http://docs.mongodb.org/

这个是参考,?

https://www.jianshu.com/p/d929436a4b7c

猜你喜欢

转载自blog.csdn.net/java_sparrow/article/details/98227337