node nginx后端环境安装

使用的阿里云的centos
打开Terminal,输入以下命令安装Nginx:

yum install nginx

安装完成后,输入以下命令将Nginx加入系统启动项中:

systemctl enable nginx

输入以下命令启动Nginx:

systemctl start nginx

检查Nginx是否已经启动成功:

systemctl status nginx

如果Nginx已经成功启动,您应该能够看到输出信息中的“active(running)”状态

查找nginx配置文件

nginx -t

安装node,

打开终端并更新您的系统软件包列表:

sudo yum update

添加Node.js官方的软件包仓库:

curl -fsSL https://rpm.nodesource.com/setup_current.x | sudo -E bash -

注意:如果您想安装特定版本的Node.js,请使用相应版本号替换“current”。

安装Node.js:

sudo yum install -y nodejs

验证Node.js安装成功:

node -v

安装nrm,修改npm配置,主要是淘宝镜像

npm install -g nrm
nrm ls
nrm use taobo

安装pm2,通过pm2启动js

npm install -g pm2
pm2 start index.js -i max -n test --watch

index.js 启动的文件
test 启动的命名
–watch 监听文件修改

修改nginx配置文件,找到nginx.config

location /api/ {
     root   html;
     index  index.html index.htm;
     proxy_pass  http://127.0.0.1:3000;
}

3000为node开启的接口

安装 Git,可以按照以下步骤进行:

yum install git

等待安装完成后,输入以下命令以检查 Git 是否已正确安装:

git --version

如果输出版本号,则表示 Git 安装成功。

生成ssh密钥
打开终端或命令提示符
输入以下命令:

`ssh-keygen -t ed25519 -C "[email protected]"` 

(将 [email protected] 替换为你的电子邮件地址)
按 Enter 键,系统会询问你要将密钥保存在哪里。默认情况下,会将密钥保存在 ~/.ssh/id_ed25519 文件中,如果你想改变文件名或路径,可以输入新的路径和文件名。例如,你可以输入 ~/.ssh/github_ed25519,将密钥保存为 github_ed25519。
系统会要求你输入一个密码。你可以输入密码,或者按 Enter 键留空,然后按 Enter 键确认。

cat /root/.ssh/id_ed25519.pub

你可能感兴趣的:(前端,学习,笔记,前端,node.js,nginx)