概述
部署Node环境中遇到的一些的问题 :
Ubuntu 安装Node
其中 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.2/install.sh | bash
发现怎么也安装不成功,主要本机使用的默认终端为zsh,然后把.bashrc 中的内容拷贝到 .zshrc
export NVM_DIR="/home/mike/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
安装node和nvm成功之后,可以使用node 运行程序,并使用nvm安装第三方程序。
解决 npm 安装包慢的问题
由于使用nvm安装第三方的包速度很慢,可以切换到国内的淘宝镜像,使用cnpm安装
由于下载npm包很慢,可以使用国内淘宝NPM镜像
你可以使用我们定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:
npm install -g cnpm --registry=https://registry.npm.taobao.org
安装第三方包
cnpm install [name]
安装MongoDB
- 安装 sudo apt-get install mongodb 出现
➜ node.js-tutorial sudo apt-get update
Hit:1 http://packages.microsoft.com/repos/vscode stable InRelease
404 Not Found [IP: 91.189.95.83 80]
Reading package lists... Done
W: GPG error: http://mirrors.163.com/debian sid InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7638D0442B90D010 NO_PUBKEY 04EE7237B7D453EC
E: The repository 'http://mirrors.163.com/debian sid InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: The repository 'http://ppa.launchpad.net/audacity-team/daily/ubuntu bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
主要是由于没有公钥,无法验证下列签名而导致的错误,参考1解决,下载导入公钥
# apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8B48AD6246925553
# apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7638D0442B90D010
# 此处的8B48AD6246925553、7638D0442B90D010是错误提示中的:NO_PUBKEY 8B48AD6246925553 NO_PUBKEY 7638D0442B90D010
详细的安装教程参考Ubuntu下MongoDB安装与使用教程
debian系linux更新时,提示“由于没有公钥,无法验证下列签名” ↩︎
最后
以上就是怕孤独外套为你收集整理的[ 后端篇 ] 02 - 部署Node环境的全部内容,希望文章能够帮你解决[ 后端篇 ] 02 - 部署Node环境所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复