mongodb安装笔记【服务没有及时响应或控制请求】

php中文网
发布: 2016-06-07 15:28:08
原创
1933人浏览过

mongodb安装笔记 --下面大部分都是参考网上资料,仅仅作为笔记使用 参考链接 Mongodb官网安装 Mongodb官网对比 相关文档 我的mongodb安装在[d:Javamongodb] 所以需要根目录手动创建文件夹【e:datadb】 mongodb使用服务方式安装 D:Javamongodbinmong

mongodb安装笔记

--下面大部分都是参考网上资料,仅仅作为笔记使用

参考链接

Mongodb官网安装

Mongodb官网对比

相关文档

我的mongodb安装在[d:Javamongodb]

所以需要根目录手动创建文件夹【e:datadb】

mongodb使用服务方式安装

 'D:Javamongodbinmongod.exe --bind_ip 127.0.0.1 --logpath d:\Java\mongodb
\logs\MongoLog.log --logappend --dbpath d:\data --directoryperdb --service'
Fri Jan 10 09:17:45.050 Service can be started from the command line with 'net s
tart MongoDB'
登录后复制
日志需要指定具体的文件,比如MongoLog.log 之前没有置顶就报错【服务没有及时响应或控制请求】

安装、删除服务指令

mongod --install

mongod --service

mongod --remove

mongod --reinstall

或者

C:mongodbinmongod.exe --remove
登录后复制

启动服务

小微助手
小微助手

微信推出的一款专注于提升桌面效率的助手型AI工具

小微助手 249
查看详情 小微助手
net start Mongodb
登录后复制
停止服务
net stop Mongodb
登录后复制
测试简单JavaScript语句
> 3+3
6

> db
test
> // the first write will create the db:

> db.foo.insert( { a : 1 } )
> db.foo.find()
{ _id : ..., a : 1 }
mongo.exe的详细的用法可以参考mongo.exe --help
登录后复制

下面从官网摘抄下来的普通sql跟MongoDB的区别

Create and Alter

The following table presents the various SQL statements related totable-level actions and the corresponding MongoDB statements.

SQL Schema Statements MongoDB Schema Statements Reference
@@######@@

Implicitly created on first insert() operation. The primary key_idis automatically added if_id field is not specified.

@@######@@

However, you can also explicitly create a collection:

@@######@@
Seeinsert() anddb.createCollection()for more information.
@@######@@

Collections do not describe or enforce the structure of itsdocuments; i.e. there is no structural alteration at thecollection level.

However, at the document level, update() operations can add fields to existingdocuments using the$set operator.

@@######@@
See the Data Modeling Concepts, update(), and$set for moreinformation on changing the structure of documents in acollection.
@@######@@

Collections do not describe or enforce the structure of itsdocuments; i.e. there is no structural alteration at the collectionlevel.

However, at the document level, update() operations can remove fields fromdocuments using the$unset operator.

@@######@@
See Data Modeling Concepts, update(), and$unset for more information on changing the structure ofdocuments in a collection.
@@######@@ @@######@@ See ensureIndex()andindexes for more information.
@@######@@ @@######@@ See ensureIndex()andindexes for more information.
@@######@@ @@######@@ See drop() formore information.

Insert

The following table presents the various SQL statements related toinserting records into tables and the corresponding MongoDB statements.

SQL INSERT Statements MongoDB insert() Statements Reference
@@######@@ @@######@@ See insert() for more information.

Select

The following table presents the various SQL statements related toreading records from tables and the corresponding MongoDB statements.

SQL SELECT Statements MongoDB find() Statements Reference
@@######@@ @@######@@ See find()for more information.
@@######@@ @@######@@ See find()for more information.
@@######@@ @@######@@ See find()for more information.
@@######@@ @@######@@ See find()for more information.
@@######@@ @@######@@ See find()for more information.
@@######@@ @@######@@ See find()and$ne for more information.
@@######@@ @@######@@ See find()and$and for more information.
@@######@@ @@######@@ See find()and$or for more information.
@@######@@ @@######@@ See find()and$gt for more information.
@@######@@ @@######@@ See find()and$lt for more information.
@@######@@ @@######@@ See find(),$gt, and $lte formore information.
@@######@@ @@######@@ See find()and$regex for more information.
@@######@@ @@######@@ See find()and$regex for more information.
@@######@@ @@######@@ See find()andsort()for more information.
@@######@@ @@######@@ See find()andsort()for more information.
@@######@@ @@######@@

or

@@######@@
See find()andcount() formore information.
@@######@@ @@######@@

or

@@######@@
See find(),count(), and$exists for more information.
@@######@@ @@######@@

or

@@######@@
See find(),count(), and$gt for more information.
@@######@@ @@######@@ See find()anddistinct()for more information.
@@######@@ @@######@@

or

@@######@@
See find(),findOne(),andlimit()for more information.
@@######@@ @@######@@ See find(),limit(), andskip() formore information.
@@######@@ @@######@@ See find()andexplain()for more information.

Update Records

The following table presents the various SQL statements related toupdating existing records in tables and the corresponding MongoDBstatements.

SQL Update Statements MongoDB update() Statements Reference
@@######@@ @@######@@ See update(),$gt, and $set for moreinformation.
@@######@@ @@######@@ See update(),$inc, and $set for moreinformation.

Delete Records

The following table presents the various SQL statements related todeleting records from tables and the corresponding MongoDB statements.

SQL Delete Statements MongoDB remove() Statements Reference
@@######@@ @@######@@ See remove()for more information.
@@######@@ @@######@@ See remove()for more information.
CREATE TABLE users (
    id MEDIUMINT NOT NULL
        AUTO_INCREMENT,
    user_id Varchar(30),
    age Number,
    status char(1),
    PRIMARY KEY (id)
)
登录后复制
db.users.insert( {
    user_id: "abc123",
    age: 55,
    status: "A"
 } )
登录后复制
db.createCollection("users")
登录后复制
ALTER TABLE users
ADD join_date DATETIME
登录后复制
db.users.update(
    { },
    { $set: { join_date: new Date() } },
    { multi: true }
)
登录后复制
ALTER TABLE users
DROP COLUMN join_date
登录后复制
db.users.update(
    { },
    { $unset: { join_date: "" } },
    { multi: true }
)
登录后复制
CREATE INDEX idx_user_id_asc
ON users(user_id)
登录后复制
db.users.ensureIndex( { user_id: 1 } )
登录后复制
CREATE INDEX
       idx_user_id_asc_age_desc
ON users(user_id, age DESC)
登录后复制
db.users.ensureIndex( { user_id: 1, age: -1 } )
登录后复制
DROP TABLE users
登录后复制
db.users.drop()
登录后复制
INSERT INTO users(user_id,
                  age,
                  status)
VALUES ("bcd001",
        45,
        "A")
登录后复制
db.users.insert( {
       user_id: "bcd001",
       age: 45,
       status: "A"
} )
登录后复制
SELECT *
FROM users
登录后复制
db.users.find()
登录后复制
SELECT id, user_id, status
FROM users
登录后复制
db.users.find(
    { },
    { user_id: 1, status: 1 }
)
登录后复制
SELECT user_id, status
FROM users
登录后复制
db.users.find(
    { },
    { user_id: 1, status: 1, _id: 0 }
)
登录后复制
SELECT *
FROM users
WHERE status = "A"
登录后复制
db.users.find(
    { status: "A" }
)
登录后复制
SELECT user_id, status
FROM users
WHERE status = "A"
登录后复制
db.users.find(
    { status: "A" },
    { user_id: 1, status: 1, _id: 0 }
)
登录后复制
SELECT *
FROM users
WHERE status != "A"
登录后复制
db.users.find(
    { status: { $ne: "A" } }
)
登录后复制
SELECT *
FROM users
WHERE status = "A"
AND age = 50
登录后复制
db.users.find(
    { status: "A",
      age: 50 }
)
登录后复制
SELECT *
FROM users
WHERE status = "A"
OR age = 50
登录后复制
db.users.find(
    { $or: [ { status: "A" } ,
             { age: 50 } ] }
)
登录后复制
SELECT *
FROM users
WHERE age > 25
登录后复制
db.users.find(
    { age: { $gt: 25 } }
)
登录后复制
SELECT *
FROM users
WHERE age < 25
登录后复制
db.users.find(
   { age: { $lt: 25 } }
)
登录后复制
SELECT *
FROM users
WHERE age > 25
AND   age <= 50
登录后复制
db.users.find(
   { age: { $gt: 25, $lte: 50 } }
)
登录后复制
SELECT *
FROM users
WHERE user_id like "%bc%"
登录后复制
db.users.find(
   { user_id: /bc/ }
)
登录后复制
SELECT *
FROM users
WHERE user_id like "bc%"
登录后复制
db.users.find(
   { user_id: /^bc/ }
)
登录后复制
SELECT *
FROM users
WHERE status = "A"
ORDER BY user_id ASC
登录后复制
db.users.find( { status: "A" } ).sort( { user_id: 1 } )
登录后复制
SELECT *
FROM users
WHERE status = "A"
ORDER BY user_id DESC
登录后复制
db.users.find( { status: "A" } ).sort( { user_id: -1 } )
登录后复制
SELECT COUNT(*)
FROM users
登录后复制
db.users.count()
登录后复制
db.users.find().count()
登录后复制
SELECT COUNT(user_id)
FROM users
登录后复制
db.users.count( { user_id: { $exists: true } } )
登录后复制
db.users.find( { user_id: { $exists: true } } ).count()
登录后复制
SELECT COUNT(*)
FROM users
WHERE age > 30
登录后复制
db.users.count( { age: { $gt: 30 } } )
登录后复制
db.users.find( { age: { $gt: 30 } } ).count()
登录后复制
SELECT DISTINCT(status)
FROM users
登录后复制
db.users.distinct( "status" )
登录后复制
SELECT *
FROM users
LIMIT 1
登录后复制
db.users.findOne()
登录后复制
db.users.find().limit(1)
登录后复制
SELECT *
FROM users
LIMIT 5
SKIP 10
登录后复制
db.users.find().limit(5).skip(10)
登录后复制
EXPLAIN SELECT *
FROM users
WHERE status = "A"
登录后复制
db.users.find( { status: "A" } ).explain()
登录后复制
UPDATE users
SET status = "C"
WHERE age > 25
登录后复制
db.users.update(
   { age: { $gt: 25 } },
   { $set: { status: "C" } },
   { multi: true }
)
登录后复制
UPDATE users
SET age = age + 3
WHERE status = "A"
登录后复制
db.users.update(
   { status: "A" } ,
   { $inc: { age: 3 } },
   { multi: true }
)
登录后复制
DELETE FROM users
WHERE status = "D"
登录后复制
db.users.remove( { status: "D" } )
登录后复制
DELETE FROM users
登录后复制
db.users.remove( )
登录后复制
相关标签:
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号