Error: listen EADDRINUSE :::8080 at Server.setupListenHandle 这是端口被占用导致的,更换端口即可
fatal: unable to access ‘https://github.com/AdiDahan/ng-context-menu.git/': Could not resolve proxy: localhost 或者 proxy had an error Error: getaddrinfo ENOTFOUND localhost
本地的hosts文件导致的无法解析localhost,参考,使用SwitchHosts之类的软件更改hosts之后,生效的host文件需要保留以下内容——
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
- 初始化设备时,提示类似
Setup had an error Error: Service had an error: "Error: Not found; no service started."
原因是STFservice 启动失败,手机端清理后台程序也可能导致这个现象。需要手动重启这个服务——直接启动服务可能无效,需要先手动启动STFservice应用的主页面,对应的Service会自动启动(后续可以优化这里)参考
adb shell am start -n jp.co.cyberagent.stf/.IdentityActivity
- macbook adb cannot open interface 出现类似下列错误——
adb E 661 9881 usb_osx.cpp:331] Could not open interface: e00002c5
adb E 661 9881 usb_osx.cpp:265] Could not find device interface
可能是chrome://inspect/#devices 导致的问题。关闭这个页面,重启adb server
如果由于依赖导致编译失败。 先确保依赖的应用都安装成功
brew install graphicsmagick zeromq protobuf yasm pkg-config
然后在根目录下执行npm rebuild
,然后再执行npm install
npm install
失败都话,先执行npm cache clean --force
,然后重新执行这个命令STF之SSO认证
集成了公司的SSO认证,一直工作正常,临时断电,重启PC后。服务正常启动,但服务时走认证流程时提示——Failed to obtain access token
,搜索对应的问题,找到InternalOAuthError: Failed to obtain access token
InternalOAuthError: Failed to obtain access token
at Strategy.OAuth2Strategy._createOAuthError (/home/stf/RemoteDeviceNew/node_modules/passport-oauth2/lib/strategy.js:410:17)
at /home/stf/RemoteDeviceNew/node_modules/passport-oauth2/lib/strategy.js:177:24
at /home/stf/RemoteDeviceNew/node_modules/oauth/lib/oauth2.js:191:18
at ClientRequest.<anonymous> (/home/stf/RemoteDeviceNew/node_modules/oauth/lib/oauth2.js:162:5)
at emitOne (events.js:116:13)
at ClientRequest.emit (events.js:211:7)
at TLSSocket.socketErrorListener (_http_client.js:401:9)
at emitOne (events.js:116:13)
at TLSSocket.emit (events.js:211:7)
at emitErrorNT (internal/streams/destroy.js:66:8)
at _combinedTickCallback (internal/process/next_tick.js:139:11)
at process._tickCallback (internal/process/next_tick.js:181:9)
看起来是相同的问题,直接采用require('https').globalAgent.options.rejectUnauthorized = false;
问题依然复现。
在node_modules/passport-oauth2/lib/strategy.js
文件中添加debug信息,重启服务后提示——getaddrinfo ENOTFOUND
,看起来是无法找到SSO服务器。从STF所在的机器ping此地址(断电重启的原因?)尝试先在/etc/hosts
中添加解析地址。搞定~
Failed to obtain access in======== token: { Error: getaddrinfo ENOTFOUND sso.test-sso.com sso.test-sso.com:443
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:67:26)
errno: 'ENOTFOUND',
code: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: 'sso.test-sso.com',
host: 'sso.test-sso.com',
port: 443 }
comments powered by Disqus