Loading

邢栋博客

mongodb添加用户报错TypeError:db.addUser is not a function

db.addUser('admin','admin123') 出现 2016-08-11T12:22:00.498+0800 E QUERY [thread1] TypeError: db.addUser is not a function : 原因 新版的mongodb已经不支持addUser方法了。 db.createUser({user:'admin',pwd:'admin123',roles:['userAdminAnyDatabase']})

npam命令详解

npam命令详解 npam [扫描类型] [扫描参数] [hosts地址与范围] 选项与参数: [扫描类型] -sT:扫描TCP数据包已建立的连接 conneted -sS:扫描TCP数据包带有SYN标卷的数据 -sP:以ping的方式进行扫描 -sU:以UDP的数据格式进行扫描 -sO:以IP的协议进行主机的扫描 [扫描参数] -pT:使用TCP里头的ping方式进行扫描,可以获知目前有几台计算机存在 -pI:使用实际的ping(带有IMCP数据包的)来进行扫描 -p:这个是port range,例如 1024-,80-1023,30000-60000...

nginx访问ci框架出现Access denied.

nginx访问ci框架出现Access denied. nginx访问ci框架出现Access denied. Lepus(天兔)web管理台nginx重写 server { listen 80; server_name lepus.example.com; client_max_body_size 10m; index index.html index.htm index.php; root /work/www/lepus; fastcg...

yii2控制器中跳转带提示语

控制器中 <?php use yii\helpers\Url; public function actionDelete($id) { $model = new LiveUser; $params = array(); $params['id'] = $id; $result = $model->findOne($params)->delete();//删除 if($result){ $messag...

linux ip命令详解

ip命令详解 1.关于接口设备的相关设置 ip link ,与OSI七层协议的第二层数据链路层有关 ip [-s] link show //单纯的查看该设备的相关信息 ip link set [device] [动作与参数] 选项与参数 show:仅显示出这个设备的相关属性,-s会显示更多统计数据 set:可以设置项目,device指的是eth0、eth1等设备名称 动作与参数,如下 up|down:启动(up)或关闭(down)某个接口,其他参数默认使用的以太网 address:如果这个设备可以更改mac的话,用这个参数修改 name:给予这个设备一个...

linux route命令详解

route命令详解 route [-nee] route add [-net][-host] [网络或主机] netmask [mask] [gw|dev] route del [-net][-host] [网络或主机] netmask [mask] [gw|dev] 查看的参数 -n:不要使用通信协议或主机名,直接使用IP或port number -ee:显示更详细的信息 增加add与删除del路由的相关参数 -net:表示后面接的路由为一个网络 -host:表示后面接的为连接到单部主机的路由 netmask:与网络相关,可以设置netmask决定网络...

私房菜服务器架设篇之连接internet读书笔记

1.观察内核所捕捉到的网卡信息 dmesg |grep -in eth 查看相关的设备芯片数据 lspci |grep -i ethernet 2.观察网卡的模块 lsmod |grep 1000 modinfo e1000 3.编译网卡驱动程序 a.下载驱动程序 b.解压与编译 tar -zxvf e1000.tar.gz -C /usr/local/src cd /usr/local/src/e1000/src make install c.模块的测试与处理 1.先删除已经加载在内存中的旧模块 rmmod e1000 2.加载新模块 modprobe...

Connection could not be established with host smtp.exmail.qq.com [ #0]

今天在用yii2发送邮件的时候提示 Connection could not be established with host smtp.exmail.qq.com [ #0] openssl没啥问题,函数权限也有打开了 折腾半天后终于找到解决办法 出问题之前的代码 /common/config/main-local.php中mailer配置 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'viewPath' => '@common/mail', 'useFileTransp...

composer安装

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } el...

brew link openssl

brew unlink openssl --force && brew link openssl --force