mongodb
瓦力冫
喜欢看点书,跑跑步,热爱游戏编程
展开
-
mac mongodb pymongo 简单使用
1.安装mongodb brew install mongodbbrew services start mongodbbrew services stop mongodbbrew services restart mongodb写配置文件mongodb.confport=27017dbpath=/Users/walle/Documents/mongoConfig/dblogpath=/...原创 2018-04-17 19:46:17 · 1094 阅读 · 0 评论 -
Mongodb 简单配置和密码访问
1.配置net: port: 27017 bindIp: 0.0.0.0security: authorization: enabledsystemLog: destination: file path: "/data/log/mongod.log" logAppend: truestorage: dbPath: "/data/db"#processManage...原创 2018-04-18 12:59:39 · 855 阅读 · 0 评论 -
Scrapy 抓取指数基金6个月前10 名 存到mongodb 中
1.抓取前的分析 http://fund.eastmoney.com/trade/zs.html#zwf_,sc_6y,st_desc 地址是这个,我们发现中间的内容是后来通过ajax来加载的,所以这个地址是抓取不到的。通过chrome开发者工具发现真正的地址是这个: https://fundapi.eastmoney.com/fundtradenew.aspx?ft=zs&sc=3y&a...原创 2018-04-01 21:22:06 · 665 阅读 · 0 评论 -
Docker mongodb Dockerfile ubuntu
1.目录结构,把配置文件也放这里,等下复制到image里面去2.mongod.confnet: port: 27017 bindIp: 0.0.0.0security: authorization: enabledsystemLog: destination: file path: "/data/log/mongod.log" logAppend: truestora...原创 2018-04-18 15:43:39 · 971 阅读 · 0 评论 -
Mac 开机启动redis和mongodb
1.mongodb开机启动,新建一个plist文件 <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist versio原创 2018-05-14 07:50:36 · 1005 阅读 · 0 评论 -
mongo 数据备份用户名加密码
语法mongodump命令脚本语法如下:>mongodump -h dbhost -d dbname -o dbdirectory-h:MongDB所在服务器地址,例如:127.0.0.1,当然也可以指定端口号:127.0.0.1:27017 -d:需要备份的数据库实例,例如:test -o:备份的数据存放位置,例如:c:\data\dump,当然该目录需要提前建立,在备份完成后,系统自动在...原创 2018-05-26 07:32:07 · 2474 阅读 · 0 评论 -
mongod config fork
在mongodb 的配置文件里把fork选项设置为true后,启动/usr/bin/mongod --config /etc/mongodb.conf ,就会自动的fork一个子进程来运行mongod,这样退出shell后,也会运行了。另外看下使用fork 和nohup的区别,看下上面这个回答http://www.waitingfy.com/archives/5203...原创 2018-12-29 18:27:17 · 2308 阅读 · 1 评论