Create proxy server Socket hang up (HTTPS)

Hi I’m using meteor and http-proxy from node js. I got this error sometimes

W20160526-08:53:02.348(7)? (STDERR) 
W20160526-08:53:02.350(7)? (STDERR) /usr/local/bin/here_test/node_modules/http-proxy/lib/http-proxy/index.js:119
W20160526-08:53:02.350(7)? (STDERR)     throw err;
W20160526-08:53:02.426(7)? (STDERR)           ^
W20160526-08:53:02.429(7)? (STDERR) Error: socket hang up
W20160526-08:53:02.429(7)? (STDERR)     at createHangUpError (http.js:1528:15)
W20160526-08:53:02.430(7)? (STDERR)     at Socket.socketCloseListener (http.js:1578:23)
W20160526-08:53:02.430(7)? (STDERR)     at Socket.emit (events.js:95:17)
W20160526-08:53:02.430(7)? (STDERR)     at TCP.close (net.js:466:12)

this is my proxy code

var PATH_TO_KEY = "/usr/local/bin/here_test/here.enseval.com.key",  
    PATH_TO_CERT = "/usr/local/bin/here_test/star_enseval_com(3).pem";
    //PATH_TO_CHAIN = "";

var fs = require('fs'),  
    httpProxy = require('http-proxy');

var options = {  
  ssl: {    
    key: fs.readFileSync(PATH_TO_KEY, 'utf8'),
    cert: fs.readFileSync(PATH_TO_CERT, 'utf8')
    //ca : fs.readFileSync(PATH_TO_CHAIN, 'utf8')
  },
  target : "http://here.enseval.com",
  secure:true,
  ws:true,
  xfwd: true 
};

var server = httpProxy.createProxyServer(options).listen(443);

I already use ws:true according to this website but still I got that randomly errors.

Anyone can help me?

thank you

1 Like

Same here. I installed tarang:ssl and browser-policy to enable HTTPS and now whenever I reload the page the first time, there is a socket hangup with the following errors, and then when I reload the second time, it loads correctly.

Error from server:

W20170527-10:16:52.861(-4)? (STDERR) /Users/[]/.meteor/packages/tarang_ssl/.1.0.1.1071l09++os+web.browser+web.cordova/npm/node_modules/http-proxy/lib/http-proxy/index.js:119
W20170527-10:16:52.862(-4)? (STDERR)     throw err;
W20170527-10:16:52.862(-4)? (STDERR)     ^
W20170527-10:16:52.862(-4)? (STDERR)
W20170527-10:16:52.863(-4)? (STDERR) Error: socket hang up
W20170527-10:16:52.864(-4)? (STDERR)     at createHangUpError (_http_client.js:213:15)
W20170527-10:16:52.865(-4)? (STDERR)     at Socket.socketCloseListener (_http_client.js:245:23)
W20170527-10:16:52.865(-4)? (STDERR)     at emitOne (events.js:82:20)
W20170527-10:16:52.866(-4)? (STDERR)     at Socket.emit (events.js:169:7)
W20170527-10:16:52.866(-4)? (STDERR)     at TCP._onclose (net.js:490:12)

Error from client:

membership:4 GET https://localhost:3100/packages/facebook-config-ui/facebook_login_button.css?hash=8fac75b9877919ddba35235171aa61593a5b383a net::ERR_CONNECTION_CLOSED
10:16:54.480 membership:4 GET https://localhost:3100/packages/materialize_materialize/sass/materialize.scss.css?hash=f0d135b3cdff5998f77f371dfa20d2ac6403015a net::ERR_CONNECTION_CLOSED
10:16:54.481 membership:4 GET https://localhost:3100/packages/meteortoys_toykit/style/toykit.css?hash=efa4ef448d695628bffd46a1b6f473d3315503a4 net::ERR_CONNECTION_CLOSED
10:16:54.481 membership:4 GET https://localhost:3100/packages/msavin_mongol/style/Mongol.css?hash=044c99005483416704bb7968906ef770c3a6a902 net::ERR_CONNECTION_CLOSED
10:16:54.481 membership:4 GET https://localhost:3100/packages/msavin_jetsetter/style/JetSetter.css?hash=f2a2da6c78f18aea147a0bf50018d3241cb3d1a4 net::ERR_CONNECTION_CLOSED
10:16:54.481 membership:4 GET https://localhost:3100/packages/meteortoys_blueprint/config/config.css?hash=2f076cece97c37131021f0d5054300afa9872ea5 net::ERR_CONNECTION_CLOSED
...[rest of meteortoys errors]
10:16:55.794 membership:4 GET https://localhost:3100/client/stylesheets/flexgrid.css?hash=894a51b26c5d0d3bb5601eb1eab8b6df904e1e2b net::ERR_CONNECTION_CLOSED
10:16:55.812 membership:18 GET https://localhost:3100/meteor_runtime_config.js net::ERR_CONNECTION_CLOSED
10:16:55.824 meteor.js?hash=27829e9…:46 Uncaught ReferenceError: __meteor_runtime_config__ is not defined
    at meteor.js?hash=27829e9…:46
    at meteor.js?hash=27829e9…:99
    at meteor.js?hash=27829e9…:1213
(anonymous) @ meteor.js?hash=27829e9…:46
(anonymous) @ meteor.js?hash=27829e9…:99
(anonymous) @ meteor.js?hash=27829e9…:1213
10:16:55.834 modules-runtime.js?hash=2b888cb…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at modules-runtime.js?hash=2b888cb…:14
    at modules-runtime.js?hash=2b888cb…:557
(anonymous) @ modules-runtime.js?hash=2b888cb…:14
(anonymous) @ modules-runtime.js?hash=2b888cb…:557
10:16:56.439 modules.js?hash=ad95263…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at modules.js?hash=ad95263…:14
    at modules.js?hash=ad95263…:155987
(anonymous) @ modules.js?hash=ad95263…:14
(anonymous) @ modules.js?hash=ad95263…:155987
10:16:56.519 es5-shim.js?hash=adc3c62…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at es5-shim.js?hash=adc3c62…:14
    at es5-shim.js?hash=adc3c62…:2789
(anonymous) @ es5-shim.js?hash=adc3c62…:14
(anonymous) @ es5-shim.js?hash=adc3c62…:2789
10:16:56.523 promise.js?hash=6a89f2f…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at promise.js?hash=6a89f2f…:14
    at promise.js?hash=6a89f2f…:582
(anonymous) @ promise.js?hash=6a89f2f…:14
(anonymous) @ promise.js?hash=6a89f2f…:582
10:16:56.542 ecmascript-runtime.js?hash=49e1267…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ecmascript-runtime.js?hash=49e1267…:14
    at ecmascript-runtime.js?hash=49e1267…:4630
(anonymous) @ ecmascript-runtime.js?hash=49e1267…:14
(anonymous) @ ecmascript-runtime.js?hash=49e1267…:4630
10:16:56.545 base64.js?hash=0053489…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at base64.js?hash=0053489…:14
    at base64.js?hash=0053489…:188
(anonymous) @ base64.js?hash=0053489…:14
(anonymous) @ base64.js?hash=0053489…:188
10:16:56.550 ejson.js?hash=0f17ced…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ejson.js?hash=0f17ced…:14
    at ejson.js?hash=0f17ced…:699
(anonymous) @ ejson.js?hash=0f17ced…:14
(anonymous) @ ejson.js?hash=0f17ced…:699
10:16:56.552 id-map.js?hash=c7aea8d…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at id-map.js?hash=c7aea8d…:14
    at id-map.js?hash=c7aea8d…:123
(anonymous) @ id-map.js?hash=c7aea8d…:14
(anonymous) @ id-map.js?hash=c7aea8d…:123
10:16:56.554 ordered-dict.js?hash=bacdd18…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ordered-dict.js?hash=bacdd18…:14
    at ordered-dict.js?hash=bacdd18…:254
(anonymous) @ ordered-dict.js?hash=bacdd18…:14
(anonymous) @ ordered-dict.js?hash=bacdd18…:254
10:16:56.558 tracker.js?hash=997515f…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at tracker.js?hash=997515f…:14
    at tracker.js?hash=997515f…:725
(anonymous) @ tracker.js?hash=997515f…:14
(anonymous) @ tracker.js?hash=997515f…:725
10:16:56.560 babel-runtime.js?hash=7d8de6d…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at babel-runtime.js?hash=7d8de6d…:14
    at babel-runtime.js?hash=7d8de6d…:160
(anonymous) @ babel-runtime.js?hash=7d8de6d…:14
(anonymous) @ babel-runtime.js?hash=7d8de6d…:160
10:16:56.564 random.js?hash=a3be1ee…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at random.js?hash=a3be1ee…:14
    at random.js?hash=a3be1ee…:368
(anonymous) @ random.js?hash=a3be1ee…:14
(anonymous) @ random.js?hash=a3be1ee…:368
10:16:56.566 mongo-id.js?hash=345d169…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at mongo-id.js?hash=345d169…:14
    at mongo-id.js?hash=345d169…:142
(anonymous) @ mongo-id.js?hash=345d169…:14
(anonymous) @ mongo-id.js?hash=345d169…:142
10:16:56.568 diff-sequence.js?hash=15014d7…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at diff-sequence.js?hash=15014d7…:14
    at diff-sequence.js?hash=15014d7…:297
(anonymous) @ diff-sequence.js?hash=15014d7…:14
(anonymous) @ diff-sequence.js?hash=15014d7…:297
10:16:56.571 geojson-utils.js?hash=b204c7d…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at geojson-utils.js?hash=b204c7d…:14
    at geojson-utils.js?hash=b204c7d…:439
(anonymous) @ geojson-utils.js?hash=b204c7d…:14
(anonymous) @ geojson-utils.js?hash=b204c7d…:439
10:16:56.586 minimongo.js?hash=5f645b1…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at minimongo.js?hash=5f645b1…:14
    at minimongo.js?hash=5f645b1…:3962
(anonymous) @ minimongo.js?hash=5f645b1…:14
(anonymous) @ minimongo.js?hash=5f645b1…:3962
10:16:56.590 check.js?hash=87c6338…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at check.js?hash=87c6338…:14
    at check.js?hash=87c6338…:583
(anonymous) @ check.js?hash=87c6338…:14
(anonymous) @ check.js?hash=87c6338…:583
10:16:56.593 retry.js?hash=1e40961…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at retry.js?hash=1e40961…:14
    at retry.js?hash=1e40961…:110
(anonymous) @ retry.js?hash=1e40961…:14
(anonymous) @ retry.js?hash=1e40961…:110
10:16:56.604 ddp-common.js?hash=d42359b…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ddp-common.js?hash=d42359b…:14
    at ddp-common.js?hash=d42359b…:493
(anonymous) @ ddp-common.js?hash=d42359b…:14
(anonymous) @ ddp-common.js?hash=d42359b…:493
10:16:56.608 reload.js?hash=628b069…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at reload.js?hash=628b069…:14
    at reload.js?hash=628b069…:309
(anonymous) @ reload.js?hash=628b069…:14
(anonymous) @ reload.js?hash=628b069…:309
10:16:56.637 ddp-client.js?hash=d69811b…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ddp-client.js?hash=d69811b…:14
    at ddp-client.js?hash=d69811b…:5108
(anonymous) @ ddp-client.js?hash=d69811b…:14
(anonymous) @ ddp-client.js?hash=d69811b…:5108
10:16:56.639 ddp.js?hash=25dc3f4…:14 Uncaught TypeError: Cannot read property 'DDP' of undefined
    at ddp.js?hash=25dc3f4…:14
    at ddp.js?hash=25dc3f4…:27
(anonymous) @ ddp.js?hash=25dc3f4…:14
(anonymous) @ ddp.js?hash=25dc3f4…:27
10:16:56.642 allow-deny.js?hash=0a3547d…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at allow-deny.js?hash=0a3547d…:14
    at allow-deny.js?hash=0a3547d…:553
(anonymous) @ allow-deny.js?hash=0a3547d…:14
(anonymous) @ allow-deny.js?hash=0a3547d…:553
10:16:56.646 mongo.js?hash=83e0882…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at mongo.js?hash=83e0882…:14
    at mongo.js?hash=83e0882…:864
(anonymous) @ mongo.js?hash=83e0882…:14
(anonymous) @ mongo.js?hash=83e0882…:864
10:16:56.648 reactive-var.js?hash=ec712fa…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at reactive-var.js?hash=ec712fa…:14
    at reactive-var.js?hash=ec712fa…:142
(anonymous) @ reactive-var.js?hash=ec712fa…:14
(anonymous) @ reactive-var.js?hash=ec712fa…:142
10:16:56.686 jquery.js?hash=c57b3cf…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at jquery.js?hash=c57b3cf…:14
    at jquery.js?hash=c57b3cf…:10421
(anonymous) @ jquery.js?hash=c57b3cf…:14
(anonymous) @ jquery.js?hash=c57b3cf…:10421
10:16:56.689 reactive-dict.js?hash=fafa4f5…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at reactive-dict.js?hash=fafa4f5…:14
    at reactive-dict.js?hash=fafa4f5…:332
(anonymous) @ reactive-dict.js?hash=fafa4f5…:14
(anonymous) @ reactive-dict.js?hash=fafa4f5…:332
10:16:56.701 kadira_flow-router.js?hash=802bf60…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at kadira_flow-router.js?hash=802bf60…:14
    at kadira_flow-router.js?hash=802bf60…:2694
(anonymous) @ kadira_flow-router.js?hash=802bf60…:14
(anonymous) @ kadira_flow-router.js?hash=802bf60…:2694
10:16:56.704 localstorage.js?hash=0e21065…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at localstorage.js?hash=0e21065…:14
    at localstorage.js?hash=0e21065…:93
(anonymous) @ localstorage.js?hash=0e21065…:14
(anonymous) @ localstorage.js?hash=0e21065…:93
10:16:56.706 callback-hook.js?hash=e15ed8a…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at callback-hook.js?hash=e15ed8a…:14
    at callback-hook.js?hash=e15ed8a…:187
(anonymous) @ callback-hook.js?hash=e15ed8a…:14
(anonymous) @ callback-hook.js?hash=e15ed8a…:187
10:16:56.709 observe-sequence.js?hash=8fe5803…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at observe-sequence.js?hash=8fe5803…:14
    at observe-sequence.js?hash=8fe5803…:407
(anonymous) @ observe-sequence.js?hash=8fe5803…:14
(anonymous) @ observe-sequence.js?hash=8fe5803…:407
10:16:56.710 deps.js?hash=7313f5a…:14 Uncaught TypeError: Cannot read property 'Tracker' of undefined
    at deps.js?hash=7313f5a…:14
    at deps.js?hash=7313f5a…:29
(anonymous) @ deps.js?hash=7313f5a…:14
(anonymous) @ deps.js?hash=7313f5a…:29
10:16:56.718 htmljs.js?hash=1ac8780…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at htmljs.js?hash=1ac8780…:14
    at htmljs.js?hash=1ac8780…:685
(anonymous) @ htmljs.js?hash=1ac8780…:14
(anonymous) @ htmljs.js?hash=1ac8780…:685
10:16:56.734 blaze.js?hash=f33d3df…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at blaze.js?hash=f33d3df…:14
    at blaze.js?hash=f33d3df…:3898
(anonymous) @ blaze.js?hash=f33d3df…:14
(anonymous) @ blaze.js?hash=f33d3df…:3898
10:16:56.748 accounts-base.js?hash=00b4c32…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at accounts-base.js?hash=00b4c32…:14
    at accounts-base.js?hash=00b4c32…:1314
(anonymous) @ accounts-base.js?hash=00b4c32…:14
(anonymous) @ accounts-base.js?hash=00b4c32…:1314
10:16:56.750 sha.js?hash=0401328…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at sha.js?hash=0401328…:14
    at sha.js?hash=0401328…:187
(anonymous) @ sha.js?hash=0401328…:14
(anonymous) @ sha.js?hash=0401328…:187
10:16:56.759 srp.js?hash=85fa5b3…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at srp.js?hash=85fa5b3…:14
    at srp.js?hash=85fa5b3…:1445
(anonymous) @ srp.js?hash=85fa5b3…:14
(anonymous) @ srp.js?hash=85fa5b3…:1445
10:16:56.765 accounts-password.js?hash=4313212…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at accounts-password.js?hash=4313212…:14
    at accounts-password.js?hash=4313212…:316
(anonymous) @ accounts-password.js?hash=4313212…:14
(anonymous) @ accounts-password.js?hash=4313212…:316
10:16:56.770 url.js?hash=1378924…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at url.js?hash=1378924…:14
    at url.js?hash=1378924…:115
(anonymous) @ url.js?hash=1378924…:14
(anonymous) @ url.js?hash=1378924…:115
10:16:56.772 oauth.js?hash=a519c34…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at oauth.js?hash=a519c34…:14
    at oauth.js?hash=a519c34…:402
(anonymous) @ oauth.js?hash=a519c34…:14
(anonymous) @ oauth.js?hash=a519c34…:402
10:16:56.774 accounts-oauth.js?hash=71bd708…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at accounts-oauth.js?hash=71bd708…:14
    at accounts-oauth.js?hash=71bd708…:188
(anonymous) @ accounts-oauth.js?hash=71bd708…:14
(anonymous) @ accounts-oauth.js?hash=71bd708…:188
10:16:56.775 service-configuration.js?hash=42ac9ae…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at service-configuration.js?hash=42ac9ae…:14
    at service-configuration.js?hash=42ac9ae…:77
(anonymous) @ service-configuration.js?hash=42ac9ae…:14
(anonymous) @ service-configuration.js?hash=42ac9ae…:77
10:16:56.777 facebook-oauth.js?hash=c8fc745…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at facebook-oauth.js?hash=c8fc745…:14
    at facebook-oauth.js?hash=c8fc745…:99
(anonymous) @ facebook-oauth.js?hash=c8fc745…:14
(anonymous) @ facebook-oauth.js?hash=c8fc745…:99
10:16:56.780 spacebars.js?hash=ebf9381…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at spacebars.js?hash=ebf9381…:14
    at spacebars.js?hash=ebf9381…:335
(anonymous) @ spacebars.js?hash=ebf9381…:14
(anonymous) @ spacebars.js?hash=ebf9381…:335
10:16:56.785 templating-runtime.js?hash=c18de19…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at templating-runtime.js?hash=c18de19…:14
    at templating-runtime.js?hash=c18de19…:256
(anonymous) @ templating-runtime.js?hash=c18de19…:14
(anonymous) @ templating-runtime.js?hash=c18de19…:256
10:16:56.789 templating.js?hash=c2cf38d…:14 Uncaught TypeError: Cannot read property 'Template' of undefined
    at templating.js?hash=c2cf38d…:14
    at templating.js?hash=c2cf38d…:27
(anonymous) @ templating.js?hash=c2cf38d…:14
(anonymous) @ templating.js?hash=c2cf38d…:27
10:16:56.791 facebook-config-ui.js?hash=3e53143…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at facebook-config-ui.js?hash=3e53143…:14
    at facebook-config-ui.js?hash=3e53143…:82
(anonymous) @ facebook-config-ui.js?hash=3e53143…:14
(anonymous) @ facebook-config-ui.js?hash=3e53143…:82
10:16:56.793 accounts-facebook.js?hash=9f0d53e…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at accounts-facebook.js?hash=9f0d53e…:14
    at accounts-facebook.js?hash=9f0d53e…:94
(anonymous) @ accounts-facebook.js?hash=9f0d53e…:14
(anonymous) @ accounts-facebook.js?hash=9f0d53e…:94
10:16:56.822 practicalmeteor_chai.js?hash=92e20bf…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at practicalmeteor_chai.js?hash=92e20bf…:14
    at practicalmeteor_chai.js?hash=92e20bf…:5639
(anonymous) @ practicalmeteor_chai.js?hash=92e20bf…:14
(anonymous) @ practicalmeteor_chai.js?hash=92e20bf…:5639
10:16:56.874 practicalmeteor_sinon.js?hash=b2d5a9f…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at practicalmeteor_sinon.js?hash=b2d5a9f…:14
    at practicalmeteor_sinon.js?hash=b2d5a9f…:6256
(anonymous) @ practicalmeteor_sinon.js?hash=b2d5a9f…:14
(anonymous) @ practicalmeteor_sinon.js?hash=b2d5a9f…:6256
10:16:56.880 tmeasday_check-npm-versions.js?hash=aca693c…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at tmeasday_check-npm-versions.js?hash=aca693c…:14
    at tmeasday_check-npm-versions.js?hash=aca693c…:1334
(anonymous) @ tmeasday_check-npm-versions.js?hash=aca693c…:14
(anonymous) @ tmeasday_check-npm-versions.js?hash=aca693c…:1334
10:16:56.884 react-meteor-data.js?hash=bc68733…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at react-meteor-data.js?hash=bc68733…:14
    at react-meteor-data.js?hash=bc68733…:364
(anonymous) @ react-meteor-data.js?hash=bc68733…:14
(anonymous) @ react-meteor-data.js?hash=bc68733…:364
10:16:56.940 materialize_materialize.js?hash=d432779…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at materialize_materialize.js?hash=d432779…:14
    at materialize_materialize.js?hash=d432779…:7513
(anonymous) @ materialize_materialize.js?hash=d432779…:14
(anonymous) @ materialize_materialize.js?hash=d432779…:7513
10:16:56.942 session.js?hash=821b074…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at session.js?hash=821b074…:14
    at session.js?hash=821b074…:98
(anonymous) @ session.js?hash=821b074…:14
(anonymous) @ session.js?hash=821b074…:98
10:16:56.958 softwarerero_accounts-t9n.js?hash=f1c77da…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at softwarerero_accounts-t9n.js?hash=f1c77da…:14
    at softwarerero_accounts-t9n.js?hash=f1c77da…:4615
(anonymous) @ softwarerero_accounts-t9n.js?hash=f1c77da…:14
(anonymous) @ softwarerero_accounts-t9n.js?hash=f1c77da…:4615
10:16:56.988 std_accounts-ui.js?hash=a0fca7e…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at std_accounts-ui.js?hash=a0fca7e…:14
    at std_accounts-ui.js?hash=a0fca7e…:2937
(anonymous) @ std_accounts-ui.js?hash=a0fca7e…:14
(anonymous) @ std_accounts-ui.js?hash=a0fca7e…:2937
10:16:57.066 std_accounts-material.js?hash=ac685c1…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at std_accounts-material.js?hash=ac685c1…:14
    at std_accounts-material.js?hash=ac685c1…:21100
(anonymous) @ std_accounts-material.js?hash=ac685c1…:14
(anonymous) @ std_accounts-material.js?hash=ac685c1…:21100
10:16:57.079 dburles_google-maps.js?hash=a67573a…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at dburles_google-maps.js?hash=a67573a…:14
    at dburles_google-maps.js?hash=a67573a…:201
(anonymous) @ dburles_google-maps.js?hash=a67573a…:14
(anonymous) @ dburles_google-maps.js?hash=a67573a…:201
10:16:57.082 http.js?hash=9355a65…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at http.js?hash=9355a65…:14
    at http.js?hash=9355a65…:327
(anonymous) @ http.js?hash=9355a65…:14
(anonymous) @ http.js?hash=9355a65…:327
10:16:57.087 ostrio_cookies.js?hash=48f55d6…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ostrio_cookies.js?hash=48f55d6…:14
    at ostrio_cookies.js?hash=48f55d6…:578
(anonymous) @ ostrio_cookies.js?hash=48f55d6…:14
(anonymous) @ ostrio_cookies.js?hash=48f55d6…:578
10:16:57.135 ostrio_files.js?hash=f8ca2bd…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at ostrio_files.js?hash=f8ca2bd…:14
    at ostrio_files.js?hash=f8ca2bd…:4246
(anonymous) @ ostrio_files.js?hash=f8ca2bd…:14
(anonymous) @ ostrio_files.js?hash=f8ca2bd…:4246
10:16:57.165 meteortoys_toykit.js?hash=92ed3a8…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_toykit.js?hash=92ed3a8…:14
    at meteortoys_toykit.js?hash=92ed3a8…:468
(anonymous) @ meteortoys_toykit.js?hash=92ed3a8…:14
(anonymous) @ meteortoys_toykit.js?hash=92ed3a8…:468
10:16:57.208 msavin_mongol.js?hash=7ecc5fc…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at msavin_mongol.js?hash=7ecc5fc…:14
    at msavin_mongol.js?hash=7ecc5fc…:1892
(anonymous) @ msavin_mongol.js?hash=7ecc5fc…:14
(anonymous) @ msavin_mongol.js?hash=7ecc5fc…:1892
10:16:57.223 msavin_jetsetter.js?hash=770a04b…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at msavin_jetsetter.js?hash=770a04b…:14
    at msavin_jetsetter.js?hash=770a04b…:1147
(anonymous) @ msavin_jetsetter.js?hash=770a04b…:14
(anonymous) @ msavin_jetsetter.js?hash=770a04b…:1147
10:16:57.232 meteortoys_blueprint.js?hash=90ea7f1…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_blueprint.js?hash=90ea7f1…:14
    at meteortoys_blueprint.js?hash=90ea7f1…:266
(anonymous) @ meteortoys_blueprint.js?hash=90ea7f1…:14
(anonymous) @ meteortoys_blueprint.js?hash=90ea7f1…:266
10:16:57.235 meteortoys_authenticate.js?hash=f1c112b…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_authenticate.js?hash=f1c112b…:14
    at meteortoys_authenticate.js?hash=f1c112b…:170
(anonymous) @ meteortoys_authenticate.js?hash=f1c112b…:14
(anonymous) @ meteortoys_authenticate.js?hash=f1c112b…:170
10:16:57.238 meteortoys_shell.js?hash=82ac536…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_shell.js?hash=82ac536…:14
    at meteortoys_shell.js?hash=82ac536…:234
(anonymous) @ meteortoys_shell.js?hash=82ac536…:14
(anonymous) @ meteortoys_shell.js?hash=82ac536…:234
10:16:57.240 meteortoys_method.js?hash=52d98f2…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_method.js?hash=52d98f2…:14
    at meteortoys_method.js?hash=52d98f2…:219
(anonymous) @ meteortoys_method.js?hash=52d98f2…:14
(anonymous) @ meteortoys_method.js?hash=52d98f2…:219
10:16:57.244 meteortoys_result.js?hash=4d9f56c…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_result.js?hash=4d9f56c…:14
    at meteortoys_result.js?hash=4d9f56c…:220
(anonymous) @ meteortoys_result.js?hash=4d9f56c…:14
(anonymous) @ meteortoys_result.js?hash=4d9f56c…:220
10:16:57.247 meteortoys_autopub.js?hash=f0ff1cf…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_autopub.js?hash=f0ff1cf…:14
    at meteortoys_autopub.js?hash=f0ff1cf…:114
(anonymous) @ meteortoys_autopub.js?hash=f0ff1cf…:14
(anonymous) @ meteortoys_autopub.js?hash=f0ff1cf…:114
10:16:57.254 meteortoys_pub.js?hash=6fc2267…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_pub.js?hash=6fc2267…:14
    at meteortoys_pub.js?hash=6fc2267…:219
(anonymous) @ meteortoys_pub.js?hash=6fc2267…:14
(anonymous) @ meteortoys_pub.js?hash=6fc2267…:219
10:16:57.262 meteortoys_sub.js?hash=299006e…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_sub.js?hash=299006e…:14
    at meteortoys_sub.js?hash=299006e…:225
(anonymous) @ meteortoys_sub.js?hash=299006e…:14
(anonymous) @ meteortoys_sub.js?hash=299006e…:225
10:16:57.271 meteortoys_email.js?hash=9d3f071…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_email.js?hash=9d3f071…:14
    at meteortoys_email.js?hash=9d3f071…:284
(anonymous) @ meteortoys_email.js?hash=9d3f071…:14
(anonymous) @ meteortoys_email.js?hash=9d3f071…:284
10:16:57.277 meteortoys_listen.js?hash=e30d19a…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_listen.js?hash=e30d19a…:14
    at meteortoys_listen.js?hash=e30d19a…:143
(anonymous) @ meteortoys_listen.js?hash=e30d19a…:14
(anonymous) @ meteortoys_listen.js?hash=e30d19a…:143
10:16:57.281 meteortoys_throttle.js?hash=a310295…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_throttle.js?hash=a310295…:14
    at meteortoys_throttle.js?hash=a310295…:117
(anonymous) @ meteortoys_throttle.js?hash=a310295…:14
(anonymous) @ meteortoys_throttle.js?hash=a310295…:117
10:16:57.294 meteortoys_status.js?hash=9afe249…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_status.js?hash=9afe249…:14
    at meteortoys_status.js?hash=9afe249…:146
(anonymous) @ meteortoys_status.js?hash=9afe249…:14
(anonymous) @ meteortoys_status.js?hash=9afe249…:146
10:16:57.297 meteortoys_hotreload.js?hash=cb39209…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_hotreload.js?hash=cb39209…:14
    at meteortoys_hotreload.js?hash=cb39209…:105
(anonymous) @ meteortoys_hotreload.js?hash=cb39209…:14
(anonymous) @ meteortoys_hotreload.js?hash=cb39209…:105
10:16:57.301 meteortoys_allthings.js?hash=89508ea…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteortoys_allthings.js?hash=89508ea…:14
    at meteortoys_allthings.js?hash=89508ea…:40
(anonymous) @ meteortoys_allthings.js?hash=89508ea…:14
(anonymous) @ meteortoys_allthings.js?hash=89508ea…:40
10:16:57.305 meteorhacks_aggregate.js?hash=3cd551e…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at meteorhacks_aggregate.js?hash=3cd551e…:14
    at meteorhacks_aggregate.js?hash=3cd551e…:36
(anonymous) @ meteorhacks_aggregate.js?hash=3cd551e…:14
(anonymous) @ meteorhacks_aggregate.js?hash=3cd551e…:36
10:16:57.307 jcbernack_reactive-aggregate.js?hash=4e9187a…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at jcbernack_reactive-aggregate.js?hash=4e9187a…:14
    at jcbernack_reactive-aggregate.js?hash=4e9187a…:102
(anonymous) @ jcbernack_reactive-aggregate.js?hash=4e9187a…:14
(anonymous) @ jcbernack_reactive-aggregate.js?hash=4e9187a…:102
10:16:57.317 matb33_collection-hooks.js?hash=d44fd0e…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at matb33_collection-hooks.js?hash=d44fd0e…:14
    at matb33_collection-hooks.js?hash=d44fd0e…:876
(anonymous) @ matb33_collection-hooks.js?hash=d44fd0e…:14
(anonymous) @ matb33_collection-hooks.js?hash=d44fd0e…:876
10:16:57.321 alanning_roles.js?hash=74a6254…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at alanning_roles.js?hash=74a6254…:14
    at alanning_roles.js?hash=74a6254…:961
(anonymous) @ alanning_roles.js?hash=74a6254…:14
(anonymous) @ alanning_roles.js?hash=74a6254…:961
10:16:57.323 tarang_ssl.js?hash=0f338f6…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at tarang_ssl.js?hash=0f338f6…:14
    at tarang_ssl.js?hash=0f338f6…:44
(anonymous) @ tarang_ssl.js?hash=0f338f6…:14
(anonymous) @ tarang_ssl.js?hash=0f338f6…:44
10:16:57.325 webapp.js?hash=8024f6b…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at webapp.js?hash=8024f6b…:14
    at webapp.js?hash=8024f6b…:64
(anonymous) @ webapp.js?hash=8024f6b…:14
(anonymous) @ webapp.js?hash=8024f6b…:64
10:16:57.327 livedata.js?hash=7cf1831…:14 Uncaught TypeError: Cannot read property 'DDP' of undefined
    at livedata.js?hash=7cf1831…:14
    at livedata.js?hash=7cf1831…:31
(anonymous) @ livedata.js?hash=7cf1831…:14
(anonymous) @ livedata.js?hash=7cf1831…:31
10:16:57.331 launch-screen.js?hash=2f56943…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at launch-screen.js?hash=2f56943…:14
    at launch-screen.js?hash=2f56943…:138
(anonymous) @ launch-screen.js?hash=2f56943…:14
(anonymous) @ launch-screen.js?hash=2f56943…:138
10:16:57.333 ui.js?hash=039c55a…:14 Uncaught TypeError: Cannot read property 'Blaze' of undefined
    at ui.js?hash=039c55a…:14
    at ui.js?hash=039c55a…:31
(anonymous) @ ui.js?hash=039c55a…:14
(anonymous) @ ui.js?hash=039c55a…:31
10:16:57.335 autoupdate.js?hash=1fd9cf3…:14 Uncaught TypeError: Cannot read property 'Meteor' of undefined
    at autoupdate.js?hash=1fd9cf3…:14
    at autoupdate.js?hash=1fd9cf3…:206
(anonymous) @ autoupdate.js?hash=1fd9cf3…:14
(anonymous) @ autoupdate.js?hash=1fd9cf3…:206
10:16:57.338 global-imports.js?hash=e6c7b43…:3 Uncaught TypeError: Cannot read property 'Mongo' of undefined
    at global-imports.js?hash=e6c7b43…:3
(anonymous) @ global-imports.js?hash=e6c7b43…:3
10:16:57.433 app.js?hash=e8bf6c0…:1 Uncaught ReferenceError: meteorInstall is not defined

If anyone’s still interested, I replaced tarang:ssl with nourharidy:ssl and the hangups stopped happening.

1 Like