摘要: 查看MongoDB占用端口 杀进程 查看日志文件 查看MongoDB配置文件 启动MongoDB 启动指定配置文件 阅读全文
posted @ 2017-03-06 00:25 DaMingGe 阅读(126) 评论(0) 推荐(0) 编辑
摘要: MongoDB 用户权限管理手册 https://docs.mongodb.com/manual/reference/method/js user management/ 创建用户 参数详解 user(需要创建的用户信息) user:新建用户名 pwd:新建用户密码 customData:存放一些用 阅读全文
posted @ 2017-03-06 00:24 DaMingGe 阅读(7190) 评论(0) 推荐(0) 编辑
摘要: mac 一般使用bash作为默认shell 加载顺序 /etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc 当然/etc/profile和/etc/paths是系统级别的,系统启动就会加载,后面几个是当前 阅读全文
posted @ 2017-03-06 00:22 DaMingGe 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 方案一:利用数组的indexOf(一) 原理 先声明一个空数组,然后循环数组成员,利用了数组的indexOf方法去判断当前成员是否存在新数组内,如果不存在则push进去,最后返回新数组得到一个去重后的数组! 代码如下 javascript Array.prototype.unique = funct 阅读全文
posted @ 2017-03-06 00:18 DaMingGe 阅读(929) 评论(0) 推荐(0) 编辑