一、安装apache 1)安装apache yum install -y httpd 2)启动apache服务 systemctl start httpd 3)查看服务状态(验证服务是否启动) systemctl status httpd (状态为active runging是启动)netstat ...
分类:
Web程序 时间:
2020-11-20 12:04:08
阅读次数:
21
命令: rs.conf(); db.runCommand( { replSetGetConfig: 1 } ); ####################################################################################### ...
分类:
数据库 时间:
2020-11-19 12:02:42
阅读次数:
11
本文主要介绍 src.rpm 文件中提取相关源码的方法。
分类:
其他好文 时间:
2020-11-17 12:21:47
阅读次数:
4
mongodb 官方的go驱动包 go.mongodb.org/mongo-driver 使用起来比较繁琐,最近对其进行了二次封装 github地址:https://github.com/w3liu/go-common/tree/master/store/mongo测试用例如下: func Test ...
分类:
数据库 时间:
2020-11-13 13:16:09
阅读次数:
40
查找admin集合下前10条数据: db.admin.find().limit(10); 插入数据 > post={table: "activityzones", ... fields: [ ... { ... name: "_id", ... type: "ObjectId", ... hidde ...
分类:
数据库 时间:
2020-11-12 13:54:07
阅读次数:
13
尚硅谷韩顺平(推荐):https://www.bilibili.com/video/BV1dW411M7xL?from=search&seid=8072051292168114337 yum是一个shell前端软件包管理器。基于rpm包管理,能够从指定的服务器自动下载rpm包并且安装,可以自动处理依 ...
分类:
系统相关 时间:
2020-11-11 16:38:07
阅读次数:
14
Single Field 单字段索引 示例文档:records { "_id": ObjectId("570c04a4ad233577f97dc459"), "score": 1034, "location": { state: "NY", city: "New York" } } 在单个字段上创建 ...
分类:
数据库 时间:
2020-11-10 10:51:59
阅读次数:
8
在你已经安装部署并允许MongoDB服务后,你必须要了解MongoDB的运行情况,并查看MongoDB的性能。这样在大流量得情况下可以很好的应对并保证MongoDB正常运作。 MongoDB中提供了mongostat 和 mongotop 两个命令来监控MongoDB的运行情况。 mongostat ...
分类:
数据库 时间:
2020-11-10 10:44:09
阅读次数:
9
MongoDB 使用 update() 和 save() 方法来更新集合中的文档。接下来让我们详细来看下两个函数的应用及其区别。 update() 方法 update() 方法用于更新已存在的文档。语法格式如下: db.collection.update( <query>, <update>, { ...
分类:
数据库 时间:
2020-11-10 10:35:54
阅读次数:
9
标准 URI 连接语法: mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]] mongodb:// 这是固定的格式,必须要指定。 username ...
分类:
数据库 时间:
2020-11-10 10:29:19
阅读次数:
16