PM2在AWS上与socketi不起作用

huangapple go评论94阅读模式
英文:

PM2 start not working with socketi in AWS

问题

我正在尝试将soketi部署在AWS Elastic Beanstalk上,并使用pm2在后台运行。
我的bash文件内容如下:

#!/bin/bash
cd /var/app/current/
curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash -
sudo yum install -y nodejs
sudo npm install -g npm
sudo npm install -g @soketi/soketi
sudo npm install -g pm2
pm2 start soketi -- start --config=/var/app/current/my_soketi/config.json

脚本可以正常工作,并且安装所有的依赖项没有出现错误。
但是当我运行以下命令时:

pm2 status

它没有显示soketi正在运行的列表中。

当我在EC2上手动运行以下命令时,它可以正常工作:

pm2 start soketi -- start --config=/var/app/current/my_soketi/config.json
英文:

I am trying to deploy the soketi in aws elastic beanstalk to run in background with pm2
my bash file contains as

#!/bin/bash
cd /var/app/current/
curl -sL https://rpm.nodesource.com/setup_16.x | sudo bash -
sudo yum install -y nodejs
sudo npm install -g npm
sudo npm install -g @soketi/soketi
sudo npm install -g pm2
pm2 start soketi -- start --config=/var/app/current/my_soketi/config.json

the script work and install all the requirement without any error
by when write the command

pm2 status

it is not give that the soketi is running on the list

PM2在AWS上与socketi不起作用

when i run the command manuallyin EC2 it's working

pm2 start soketi -- start --config=/var/app/current/my_soketi/config.json

答案1

得分: 0

你应该写

sudo pm2 status

PM2在AWS上与socketi不起作用

英文:

I should write

sudo pm2 status

PM2在AWS上与socketi不起作用

huangapple
  • 本文由 发表于 2023年8月8日 20:03:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76859370.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定