Как остановить приложение Node.js, использующее модуль forever в Windows?
Я прошел через очень много вопросов, касающихся навсегда модуля для APP nodejs, но не нашел своего ответа.
Forever
Модуль отлично работает на Linux-коробке, но сейчас я ставлю свое приложение на Windows 7 и пытаюсь запустить его навсегда. Сначала я установил модуль навсегда как
npm install forever -g
после этого я запустил свое приложение как
forever start app.js
он работает нормально, говоря, что файл app.js работает с навсегда, и я успешно обращаюсь к своему приложению.
Когда я выполняю команду forever stop app.js
Я получаю ошибку
вечный файл не работает
Пожалуйста, предложите мне, если кто-то использовал навсегда на Windows, как я могу остановить свое приложение на Windows.
6 ответов
Использование forever list
затем навсегда остановиться с идентификатором, например forever stop 0
Вот пример вывода
user@some-server]$ forever list
info: Forever processes running
data: uid command script forever pid id logfile uptime
data: [0] 9Xzw ng serve --host 0.0.0.0 --port 4009 13164 29579 /home/ec2-user/.forever/9Xzw.log 7:1:20:50.412
data: [1] wOj1 npm run-script app-start-dev 29500 24978 /home/ec2-user/.forever/wOj1.log 0:0:5:3.433
Вот 0
это как индекс, который находится в первом столбце вывода. Если запущены два процесса, мы можем использовать такие индексы, как 0
или же 1
остановить первый или второй процесс.
forever stop 0
ИЛИ ЖЕ forever stop 1
У меня была такая же проблема, и я обнаружил, что это потому, что я всегда запускал sudo (в Linux), чтобы я мог запустить производственный сайт на порту 80. Это помогло:
sudo forever list
Это только для того, чтобы расширить ответ @ laktak. Результат forever list
на Windows будет выглядеть примерно так:
info: Forever processes running
data: uid command script forever p
id id logfile uptime
data: [0] an1b "C:\nodejs\node.exe" C:\sbSerialWidget\server.js 8780 1
0152 C:\Users\username\.forever\an1b.log STOPPED
Я не был уверен, какой из них был идентификатором изначально, но я понял, что это была первая запись после второй data
поле выше, поэтому интересующая вас строка обозначена жирным шрифтом и курсивом:
данные: [0] an1b C:\nodejs\node.exe
C:\sbSerialWidget\server.js
8780 1 0152 C: \ Users \ username.forever \ an1b.log ОСТАНОВЛЕНО
Чтобы остановить этот конкретный экземпляр, вы должны выполнить:
forever stop 0
Надеюсь, это поможет кому-то еще, кто был смущен, как я
Это ошибка в Windows https://github.com/nodejitsu/forever/issues/337 Если вам нужно остановить свое приложение, просто откройте диспетчер задач, найдите процесс node.js и убейте его. Тяжело, но работает.
навсегда остановить 0
где 0 - это индекс вашего приложения, если оно у вас есть, то 0.
Вы можете следить за документами forever, с которыми связаны все команды, навсегда.
$ forever --help
usage: forever [action] [options] SCRIPT [script-options]
Monitors the script specified in the current process or as a daemon
actions:
start Start SCRIPT as a daemon
stop Stop the daemon SCRIPT by Id|Uid|Pid|Index|Script
stopall Stop all running forever scripts
restart Restart the daemon SCRIPT
restartall Restart all running forever scripts
list List all running forever scripts
config Lists all forever user configuration
set <key> <val> Sets the specified forever config <key>
clear <key> Clears the specified forever config <key>
logs Lists log files for all forever processes
logs <script|index> Tails the logs for <script|index>
columns add <col> Adds the specified column to the output in `forever list`. Supported columns: 'uid', 'command', 'script', 'forever', 'pid', 'id', 'logfile', 'uptime'
columns rm <col> Removed the specified column from the output in `forever list`
columns set <cols> Set all columns for the output in `forever list`
cleanlogs [CAREFUL] Deletes all historical forever log files
options:
-m MAX Only run the specified script MAX times
-l LOGFILE Logs the forever output to LOGFILE
-o OUTFILE Logs stdout from child script to OUTFILE
-e ERRFILE Logs stderr from child script to ERRFILE
-p PATH Base path for all forever related files (pid files, etc.)
-c COMMAND COMMAND to execute (defaults to node)
-a, --append Append logs
-f, --fifo Stream logs to stdout
-n, --number Number of log lines to print
--pidFile The pid file
--uid DEPRECATED. Process uid, useful as a namespace for processes (must wrap in a string)
e.g. forever start --uid "production" app.js
forever stop production
--id DEPRECATED. Process id, similar to uid, useful as a namespace for processes (must wrap in a string)
e.g. forever start --id "test" app.js
forever stop test
--sourceDir The source directory for which SCRIPT is relative to
--workingDir The working directory in which SCRIPT will execute
--minUptime Minimum uptime (millis) for a script to not be considered "spinning"
--spinSleepTime Time to wait (millis) between launches of a spinning script.
--colors --no-colors will disable output coloring
--plain Disable command line colors
-d, --debug Forces forever to log debug output
-v, --verbose Turns on the verbose messages from Forever
-s, --silent Run the child script silencing stdout and stderr
-w, --watch Watch for file changes
--watchDirectory Top-level directory to watch from
--watchIgnore To ignore pattern when watch is enabled (multiple option is allowed)
-t, --killTree Kills the entire child process tree on `stop`
--killSignal Support exit signal customization (default is SIGKILL),
used for restarting script gracefully e.g. --killSignal=SIGTERM
Any console output generated after calling `forever stop/stopall` will not appear in the logs
-h, --help You're staring at it
[Long Running Process]
The forever process will continue to run outputting log messages to the console.
ex. forever -o out.log -e err.log my-script.js
[Daemon]
The forever process will run as a daemon which will make the target process start
in the background. This is extremely useful for remote starting simple node.js scripts
without using nohup. It is recommended to run start with -o -l, & -e.
ex. forever start -l forever.log -o out.log -e err.log my-daemon.js
forever stop my-daemon.js