1. 使用nvm安装node之后,直接运行node命令会报错 node: command not found 需要使用nvm ls  查询一下当前使用的安装的node版本,然后使用node use 版本号 ,在运行node -v 就可以了 2. 但是当重新连接服务器后,运行node又会报错 node: command not found 这时候我们需要手动配置一下 查询node路径:whereis node(先nvm use 一下,不然会查不到路径) ln -s node路径 /usr/loca…
遇到的问题及解决办法 在redis.conf里bind 真机ip后,接着重新执行每个redis.conf,最后再创建集群,但报错,如下图所示: 图中报的错即: [ERR] Node 192.168.161.131:7000 is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains some key in database 0. 这就奇怪了,于是我又去检查了一下red…
一.在安装flannel网络插件后,发现pod: kube-flannel-ds 一直是CrashLoopBackOff 此报错是因为安装Kubeadm Init的时候,没有增加 --pod-network-cidr 10.244.0.0/16参数或者kube-flannel.yml如果yml中的"Network": "10.244.0.0/16"和--pod-network-cidr不一样,所以,修改yml文件中的Network为相同网段后即可 二.在创建pod时…
在node文件夹中(M:\express-test),执行 npm install express 在使用npm安装express时,报npm WARN saveError ENOENT: no such file or directory, open 'M:\express-test\package.json'错误, 和下面错误一样: 错误原因:项目没有package.json文件导致 解决方案: 使用 npm init -y  生成默认的 package.json  和 package-lo…
如图 解决方案: 目录中执行 npm install chromedriver --chromedriver_cdnurl=http://cdn.npm.taobao.org/dist/chromedriver…
由于升级node 到 8.0.0 版本 vscode 启动一直报错: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead. 无法通过“旧”协议连接到运行时:请考虑采用“检查器”协议(10000 毫秒后超时). 原因是升级到 8.0.0 以后 node调试协议变更,必须设置"protocol": "inspec…
mongoose报错:(node:15689) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead. 解决办法: //连接数据库 mongoose.set('useCreateIndex', true) //加上这个 mongoose.connect(db, { useNewUrlParser: true })…
编译PHP 报错:node.c: In function dom_canonicalization  /opt/php-5.2.17/ext/dom/node.c:1953: error: dereferencing pointer to incomplete type 是libxml导致的问题,可以下载补丁patch一下. # curl -o php-5.x.x.patch https://mail.gnome.org/archives/xml/2012-August/txtbgxGXAvz4…
创建nodeTest.js如下: var http = require('http'); http.createServer(function (request, response){ response.writeHead(200, {'Content-Type' : 'text/plain'}); response.end('hello world\n'); }).listen(80); console.log('server running at http://127.0.0.1:80');…
解决关于jquery中$.get()方法总是报“HierarchyRequestError: Node cannot be inserted at the specified point in the hierarchy”错的方法 今天在看<jquery基础教程(第三版)>第十章的时候,运行随书下载的源码时总是不成功.起初以为书中自带的JS文件有错呢,但是测来测去也没发现哪里有问题.现在把源码附下: 1.这是书中带的HTML文件,其余的忽略不计,关键的就是下面这个a. <a id=&qu…