首页 > 其他分享 >【Ambari编译报错】phantomjs从github上下载失败导致无法编译的问题

【Ambari编译报错】phantomjs从github上下载失败导致无法编译的问题

时间:2024-10-24 11:46:18浏览次数:3  
标签:npm github ambari modules 编译 rebuildBundles verb 报错 ERROR

PhantomJS 下载失败问题

1. 错误分析

下面是完整的报错日志:

[ERROR] npm verb unsafe-perm in lifecycle true
[ERROR] npm verb unlock done using /root/.npm/_locks/phantomjs-ca2567298810d09d.lock for /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/phantomjs
[ERROR] npm verb unlock done using /root/.npm/_locks/core-js-29b3f75c7b038ece.lock for /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/karma/node_modules/core-js
[ERROR] npm verb about to build /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/karma
[ERROR] npm info build /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/karma
[ERROR] npm info linkStuff [email protected]
[ERROR] npm verb linkBins [email protected]
[ERROR] npm verb link bins [ {
    karma: './bin/karma' },
[ERROR] npm verb link bins   '/opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/.bin',
[ERROR] npm verb link bins   false ]
[ERROR] npm verb linkMans [email protected]
[ERROR] npm verb rebuildBundles [email protected]
[ERROR] npm verb gentlyRm don't care about contents; nuking /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/.bin/karma
[ERROR] npm verb rebuildBundles [ '.bin',
[ERROR] npm verb rebuildBundles   'bluebird',
[ERROR] npm verb rebuildBundles   'body-parser',
[ERROR] npm verb rebuildBundles   'chokidar',
[ERROR] npm verb rebuildBundles   'colors',
[ERROR] npm verb rebuildBundles   'combine-lists',
[ERROR] npm verb rebuildBundles   'connect',
[ERROR] npm verb rebuildBundles   'core-js',
[ERROR] npm verb rebuildBundles   'di',
[ERROR] npm verb rebuildBundles   'dom-serialize',
[ERROR] npm verb rebuildBundles   'expand-braces',
[ERROR] npm verb rebuildBundles   'glob',
[ERROR] npm verb rebuildBundles   'graceful-fs',
[ERROR] npm verb rebuildBundles   'http-proxy',
[ERROR] npm verb rebuildBundles   'isbinaryfile',
[ERROR] npm verb rebuildBundles   'lodash',
[ERROR] npm verb rebuildBundles   'log4js',
[ERROR] npm verb rebuildBundles   'mime',
[ERROR] npm verb rebuildBundles   'minimatch',
[ERROR] npm verb rebuildBundles   'optimist',
[ERROR] npm verb rebuildBundles   'qjobs',
[ERROR] npm verb rebuildBundles   'range-parser',
[ERROR] npm verb rebuildBundles   'rimraf',
[ERROR] npm verb rebuildBundles   'safe-buffer',
[ERROR] npm verb rebuildBundles   'socket.io',
[ERROR] npm verb rebuildBundles   'source-map',
[ERROR] npm verb rebuildBundles   'tmp',
[ERROR] npm verb rebuildBundles   'useragent' ]
[ERROR] npm info install [email protected]
[ERROR] npm info postinstall [email protected]
[ERROR] npm verb unlock done using /root/.npm/_locks/karma-f241847ca8dea731.lock for /opt/modules/ambari/ambari-admin/src/main/resources/ui/admin-web/node_modules/karma
[ERROR] npm verb stack Error: [email protected] install: `node install.js`
[ERROR] npm verb stack Exit status 1
[ERROR] npm verb stack     at EventEmitter.<ano

标签:npm,github,ambari,modules,编译,rebuildBundles,verb,报错,ERROR
From: https://blog.csdn.net/TTBIGDATA/article/details/143205446

相关文章

  • github加速 DevSidecar 1.8.8
    DevSidecar1.8.8更多配置请参考:github开源......
  • 【Azure Developer】使用JavaScript通过SDK进行monitor-query的client认证报错问题
    问题描述使用JavaScript通过SDK进行monitor-query的client初始化时候,需要进行认证时报错AADSTS90002。代码如下:constcredential=newDefaultAzureCredential();constlogsQueryClient=newLogsQueryClient(credential,{endpoint:"https://api.loganalytics.azur......
  • 【磐维数据库】instr函数在磐维数据库使用报错处理过程
    背景江西移动现场,应用侧在磐维数据库使用instr函数时报错,报错如下:ERROR:functioninstr(text,unknown,integer,bigint)doesnotexist环境描述出问题的环境信息OS版本:BCLinuxforEuler21.10(LTS-SP2)DB版本:panweidb3.0.0问题描述程序代码显示functioninstr不存......
  • MacOS 同时配置github、gitee和gitlab密钥
    MacOS同时配置github、gitee和gitlab密钥1在终端中新建~/.ssh目录1.1生成GitHub、Gitee和Gitlab的SSH密钥对ssh-keygen-ted25519-C"[email protected]"-f~/.ssh/id_ed25519_giteessh-keygen-ted25519-C"[email protected]"-f~/.ssh/id_ed25519_githubssh-keyge......
  • 编译宏
    C#编译宏C#的预处理机制预处理过程扫描源代码,对其进行初步的转换,产生新的源代码提供给编译器。可见预处理过程先于编译器对源代码进行处理。预处理指令是以#号开头的代码行。#号必须是该行除了任何空白字符外的第一个字符。#后是指令关键字,在关键字和#号之间允许存在任意个数的......
  • git拉取代码时报错 cannot lock ref 'refs/remotes/origin/refactor': is at but exp
    这个错误通常发生在Git试图更新远程引用(如分支或标签)时,但本地的引用与远程的引用不匹配。具体来说,Git期望某个引用(如refs/remotes/origin/refactor)处于某个特定的提交(如4a06cb568),但实际上它指向了另一个提交(如7a05be1d8)。使用方法2解决成功解决方法清除远程引用缓存......
  • Mac下为php7.3编译安装Redis扩展(phpredis)教程(使用brew安装的php)
    Mac下为php7.3编译安装Redis扩展(phpredis)教程(使用brew安装的php)_brewphp7.3扩展-CSDN博客此文章为在mac下为php7.*编译安装redis拓展的教程,本教程默认用户已经安装brew,并且php为brew安装,没有安装可自行安装。1.先安装环境依赖。brewinstallautoconfwget若已经安装可......
  • Chromium127编译指南 Windows篇 - 使用 GN 工具生成构建文件(六)
    前言在上一篇文章中,我们已经成功获取了Chromium的源代码并同步了相关的第三方依赖。本文将继续深入,指导您如何使用GN工具生成构建文件,为接下来的编译工作奠定基础。切换Chromium版本至127在开始正式构建之前,我们需要将版本切换至127,这里我们使用git的切出功能创建新分支......
  • FFmpeg开发笔记(五十九)Linux编译ijkplayer的Android平台so库LD
    ijkplayer是一款由B站研发的移动端国产播放器,它基于FFmpeg3.4版本,同时兼容Android和iOS两大移动操作系统。ijkplayer的源码托管地址为https://github.com/bilibili/ijkplayer,截止2024年9月15日,ijkplayer获得3.24万星标数,以及0.81万个分支数,而这还是ijkplayer停止更新6年之后的数据......
  • iusb3mon.dll报错怎么办?iusb3mon.dll错误原因、影响及修复策略全面解析
    iusb3mon.dll是Windows操作系统中一个重要的动态链接库文件,与IntelUSB3.0eXtensibleHostController驱动程序紧密相关。它负责管理和监控USB3.0端口上的活动,确保USB3.0设备能够正确地与计算机通信。然而,在使用过程中,我们有时会遇到iusb3mon.dll报错的情况,这可能导致USB3......