用哪个网站做首页比较好,渠道销售,怎样编程制作自己的app,苗木网站模板查看MongoDB版本可以执行如下命令
mongod --version 如果是Ubuntu#xff0c;则直接安装
sudo apt-get install -y mongodb如果是其他#xff0c;比如Amazon Linux2。
查看Linux系统发行版类型
grep ^NAME /etc/*release
如果是 Amazon Linux 2#xff0c;则创建一个r…查看MongoDB版本可以执行如下命令
mongod --version 如果是Ubuntu则直接安装
sudo apt-get install -y mongodb如果是其他比如Amazon Linux2。
查看Linux系统发行版类型
grep ^NAME /etc/*release
如果是 Amazon Linux 2则创建一个repo文件 在这里
/etc/yum.repos.d/mongodb-org-7.0.repo
其中代码如下
[mongodb-org-7.0]
nameMongoDB Repository
baseurlhttps://repo.mongodb.org/yum/amazon/2/mongodb-org/7.0/aarch64/
gpgcheck1
enabled1
gpgkeyhttps://www.mongodb.org/static/pgp/server-7.0.asc然后开始安装
sudo yum install -y mongodb-org查看使用哪一种 init 系统命令行
ps --no-headers -o comm 1
Then select the appropriate tab below based on the result: systemd - select the systemd (systemctl) tab below. init - select the System V Init (service) tab below. 启动MongoDB
sudo systemctl start mongod如果报下面错
Failed to start mongod.service: Unit mongod.service not found.
则需要
sudo systemctl daemon-reload查看是否启动成功
sudo systemctl status mongod如果系统经过重启可以
sudo systemctl enable mongod参见Install MongoDB Community Edition on Amazon Linux — MongoDB Manual