摘要:
下载 WordPress https://cn.wordpress.org/download/#download-install 直接解压出来 打开 readme.html 有简单指引。 浏览器打开 wp-admin/install.php ,指的是通过 web 服务器 打开。浏览器直接打开是源代码 阅读全文
摘要:
常用命令 查看Nginx的版本号:nginx -V 启动Nginx:start nginx 指定配置启动:nginx -c /path/to/nginx.conf 配置文件修改重新加载命令:nginx -s reload 检查默认配置是否正确: nginx -t 检查指定配置: nginx -t - 阅读全文
摘要:
npm i bcrypt 新系统拉取项目,下载依赖包,其中包含 bcrypt 依赖,一直安装不成功。 gyp: Undefined variable module_name in binding.gyp while trying to load binding.gyp github issues 同 阅读全文
摘要:
突然拉不下来项目,重复生成、设置多次SSH都没用 Permission denied (publickey) 尝试了很多博客的方法都没用。最后还是在gitee官网找到问题、解决办法。 出现的问题 2021年09月26日发布的OpenSSH 8.8中移除了对RSA-SHA1的支持 最新的git for 阅读全文
摘要:
主要步骤参考官网,加上一些错误和额外的包安装。官网地址:https://github.com/meetecho/janus-gateway 一、安装依赖 安装官网指定依赖时,先安装额外命令包 包安装 aptitude install libmicrohttpd-dev libjansson-dev 阅读全文
摘要:
官网各种系统(linux:ubuntu\debian(deepin)\amazon...)安装教程地址:https://docs.mongodb.com/manual/tutorial/install-mongodb-on-debian/分为使用包管理器安装和使用下载的tarball在 Debian 阅读全文
摘要:
环境 Windows10 操作系统 node -v v14.17.6(官网要求 >= v8.6.0) npm -v 7.22.0 git --version git version 2.29.2.windows.2 python -V Python 2.7.18(-V大写,试了 python3 不行 阅读全文
摘要:
Error: ENOSPC: System limit for number of file watchers reached, watch'所在文件路径' vue工程在 deepin15.11 系统环境中运行 npm run serve命令时出现如下错误: 解决方案在终端按顺序执行下面两个命令即可 阅读全文
摘要:
查询方法 mongoose查询使用最基础的方法就是find、findOne方法,前者查询所有满足条件的值,后者取满足条件的某一个值。 查询条件 mongoose查询条件其实就是在find方法的基础上添加mongodb条件操作符,如Thing.find().gt('age', 21)就等同于Thing 阅读全文
摘要:
Mongoose DB 下载地址:https://www.mongodb.com/try/download/community 相关文档 官网手册:https://docs.mongodb.com/manual/ 使用文档:https://mongoosejs.com/docs/ 中文版:http: 阅读全文