Невозможно запустить bigbluebutton html5. Я пытаюсь установить "npm start" с "meteor npm install", и он не работает - PullRequest
0 голосов
/ 04 мая 2020

Я пытаюсь запустить среду разработки bigblubutton- html5, однако ниже приведено сообщение об ошибке, которое генерируется после выполнения следующей команды:

npm start

Это руководство, которому я следовал : https://docs.bigbluebutton.org/2.2/dev.html

Это сообщение об ошибке:

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! bbb-html5-client@ start:dev: `ROOT_URL=http://127.0.0.1/html5client NODE_ENV=development meteor`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bbb-html5-client@ start:dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2020-04-30T23_28_17_291Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! bbb-html5-client@ start: `if test "$NODE_ENV" = "production" ; then npm run start:prod; else npm run start:dev; fi`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bbb-html5-client@ start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2020-04-30T23_28_17_304Z-debug.log

1 Ответ

0 голосов
/ 04 мая 2020

Я получил решение

Сначала

meteor npm install

Затем

export METEOR_ALLOW_SUPERUSER=true

Наконец

npm start 

Эти Команды решили проблему для меня.

Если это не сработает в первый раз, возможно, вам нужно сначала выполнить эти шаги.

npm cache clean --force

rm -r node_modules

rm -r package-lock.json

И попробовать первые команды еще раз.

...