如何使用PM2运行MongoDB

时间:2019-03-22 16:18:50

标签: mongodb server vps pm2

如何使用PM2运行MongoDB?我正在使用Linux VPS(CentOS),并且尝试这样做:

pm2 mongod

^并且可行,但是问题是我需要绑定IP和DBPath名称

pm2 mongod -dbpath /home/[ommitted]/data/db --bind_ip [ommitted] -auth

^但这由于PM2标志而不起作用。因此,我该如何使用PM2来运行它,或者至少使它运行,以使其在关闭终端时不会关闭

2 个答案:

答案 0 :(得分:0)

您可以创建一个运行命令的SH文件,然后运行SH文件。 1。

Name it 'run.sh'

2。

Open/edit file

3。

mongod -dbpath /home/[ommitted]/data/db --bind_ip [ommitted] -auth

4。

pm2 start run.sh

答案 1 :(得分:0)

官方方式是
pm2 start mongod -- -dbpath /home/[ommitted]/data/db --bind_ip [ommitted] -auth

如他们的主页所示 https://pm2.keymetrics.io/docs/usage/quick-start/

enter image description here

enter image description here