下面是详细的步骤说明:
vi /etc/yum.repos.d/mongodb-org-4.0.repo
[mongodb-org-4.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.0.asc
yum update
yum install -y mongodb-org
systemctl start mongod
systemctl status mongod
如果运行正确,则会输出MongoDB服务的一些信息。
mongo
show dbs # 查看所有的数据库
use test # 切换到test数据库
db.createCollection("example") # 在test数据库创建集合example
db.example.insert({name: "John", age: 25, gender: "male"}) # 向example集合中插入文档
db.example.find() # 查询集合example中的所有文档
pip install pymongo
```
import pymongo
# 连接MongoDB
client = pymongo.MongoClient("mongodb://localhost:27017/")
# 操作MongoDB
db = client["mydatabase"]
collection = db["customers"]
customers = [{"name": "John", "address": "Highway 37"},
{"name": "Jane", "address": "Highway 38"}]
collection.insert_many(customers)
# 输出插入结果
print(collection.find())
```
以上代码将连接MongoDB数据库,并在名为“mydatabase”的数据库中创建名为“customers”的集合,向其中插入了两条记录。
以上就是Centos7 yum安装mongodb实现步骤详解的完整攻略。
本文链接:http://task.lmcjl.com/news/18770.html