-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 good day to all. i am trying to run local sync server with local account server. i have succesfully started fxa-auth-server, fxa-content-server and syncserver.
so now i want to configure it to connect each other and setup dns to local servers. i want to keep domain names original for my insternal net, so i have configured zone on dns. now i am not understand what and where i need to set in configuration. what have i done: 1. syncserver gentoo64 syncserver # pwd /home/mozilla-sync/syncserver gentoo64 syncserver # git diff diff --git a/syncserver.ini b/syncserver.ini index 7672182..e15cd7c 100644 - --- a/syncserver.ini +++ b/syncserver.ini @@ -1,6 +1,6 @@ [server:main] use = egg:gunicorn - -host = 0.0.0.0 +host = internal_ip port = 5000 workers = 1 timeout = 30 @@ -11,10 +11,11 @@ use = egg:syncserver [syncserver] # This must be edited to point to the public URL of your server, # i.e. the URL as seen by Firefox. - -public_url = http://localhost:5000/ +public_url = https://token.services.mozilla.com # This defines the database in which to store all server data. - -#sqluri = sqlite:////tmp/syncserver.db +sqluri = pymysql://root:[email protected]/sync +#sqluri = sqlite:////home/mozilla-sync/syncserver/syncserver.db # This is a secret key used for signing authentication tokens. # It should be long and randomly-generated. @@ -23,7 +24,7 @@ public_url = http://localhost:5000/ # head -c 20 /dev/urandom | sha1sum # # If not specified then the server will generate a temporary one at startup. - -#secret = INSERT_SECRET_KEY_HERE +secret = secret_key # Set this to "false" to disable new-user signups on the server. # Only request by existing accounts will be honoured. @@ -35,11 +36,11 @@ public_url = http://localhost:5000/ # details from public_url. This could have security implications if e.g. # you tell the app that it's on HTTPS but it's really on HTTP, so it should # only be used as a last resort and after careful checking of server config. - -force_wsgi_environ = false +force_wsgi_environ = true # Uncomment and edit the following to use a local BrowserID verifier # rather than posting assertions to the mozilla-hosted verifier. # Audiences should be set to your public_url without a trailing slash. - -#[browserid] - -#backend = tokenserver.verifiers.LocalVerifier - -#audiences = https://localhost:5000 +[browserid] +backend = tokenserver.verifiers.LocalVerifier +audiences = https://token.services.mozilla.com 2. fxa-auth-server gentoo64 fxa-auth-server # pwd /home/mozilla-sync/fxa-auth-server gentoo64 fxa-auth-server # git diff diff --git a/config/index.js b/config/index.js index 9f71aad..737a8c0 100644 - --- a/config/index.js +++ b/config/index.js @@ -63,7 +63,7 @@ var conf = convict({ }, publicUrl: { format: 'url', - - default: 'http://127.0.0.1:9000', + default: 'https://api.accounts.firefox.com', env: 'PUBLIC_URL' }, domain: { @@ -114,7 +114,7 @@ var conf = convict({ listen: { host: { doc: 'The ip address the server should bind', - - default: '127.0.0.1', + default: 'local_ip', format: 'ipaddress', env: 'IP_ADDRESS' }, 3. fxa-content-server gentoo64 fxa-content-server # pwd /home/mozilla-sync/fxa-content-server gentoo64 fxa-content-server # git diff diff --git a/server/config/content.json b/server/config/content.json index 11f03a6..65d21c1 100644 - --- a/server/config/content.json +++ b/server/config/content.json @@ -1,13 +1,13 @@ { - - "allowed_parent_origins": ["https://123done-content.dev.lcip.org/"], + "allowed_parent_origins": ["https://accounts.firefox.com"], "csp": { "enabled": false }, - - "fxaccount_url": "https://content.dev.lcip.org/auth", - - "oauth_client_id": "ea3ca969f8c6bb0d", - - "oauth_url": "https://oauth-content.dev.lcip.org", - - "profile_images_url": "https://content.dev.lcip.org/profile", - - "profile_url": "https://content.dev.lcip.org/profile", - - "public_url": "http://127.0.0.1:3030", + "fxaccount_url": "http://local_ip:9000", + "oauth_client_id": "534456", + "oauth_url": "http://1", + "profile_images_url": "http://2", + "profile_url": "http://3", + "public_url": "http://local_ip:3030", "use_https": false } diff --git a/server/config/production.json b/server/config/production.json index 09958c4..2f8d26f 100644 - --- a/server/config/production.json +++ b/server/config/production.json @@ -3,7 +3,7 @@ "static_directory": "dist", "page_template_subdirectory": "dist", "csp": { - - "enabled": true, + "enabled": false, "reportOnly": true } } 4.nginx server { listen 443 http2; server_name token.services.mozilla.com; limit_req zone=perip_ssl burst=100; limit_req zone=perserver_ssl burst=1000; server_name_in_redirect on; port_in_redirect on; ssl on; ssl_protocols TLSv1.2; ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH"; ssl_ecdh_curve secp384r1; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; ssl_certificate /etc/nginx/token.ser vices.mozilla.com.pem; ssl_certificate_key /etc/nginx/firef ox.key; ssl_dhparam /etc/nginx/dhp40 96.pem; location / { proxy_pass http://local_ip:5000/; proxy_redirect http://local_ip:5000/ defau lt; proxy_no_cache $cookie_nocache $arg_nocache$ arg_comment; proxy_no_cache $http_pragma $http_authori zation; proxy_cache_bypass $cookie_nocache $arg_noca che$arg_comment; proxy_cache_bypass $http_pragma $http_aut horization; proxy_cache_valid 200 302 20m; proxy_cache_valid 404 1m; proxy_set_header Host $host; proxy_set_header X-Real- IP $remote_addr; proxy_set_header X-Forwarded- For $proxy_add_x_forwarded_for; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 300; proxy_read_timeout 300; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 100m; } } server { listen 443 http2; server_name accounts.firefox.com; limit_req zone=perip_ssl burst=100; limit_req zone=perserver_ssl burst=1000; server_name_in_redirect on; port_in_redirect on; ssl on; ssl_protocols TLSv1.2; ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH"; ssl_ecdh_curve secp384r1; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; ssl_certificate /etc/nginx/accounts. firefox.com.pem; ssl_certificate_key /etc/nginx/firef ox.key; ssl_dhparam /etc/nginx/dhp40 96.pem; location / { proxy_pass http://local_ip:3030/; proxy_redirect http://local_ip:3030/ defau lt; proxy_no_cache $cookie_nocache $arg_nocache$ arg_comment; proxy_no_cache $http_pragma $http_authori zation; proxy_cache_bypass $cookie_nocache $arg_noca che$arg_comment; proxy_cache_bypass $http_pragma $http_aut horization; proxy_cache_valid 200 302 20m; proxy_cache_valid 404 1m; proxy_set_header Host $host; proxy_set_header X-Real- IP $remote_addr; proxy_set_header X-Forwarded- For $proxy_add_x_forwarded_for; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 300; proxy_read_timeout 300; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 100m; } } server { listen 443 http2; server_name api.accounts.firefox.com; limit_req zone=perip_ssl burst=100; limit_req zone=perserver_ssl burst=1000; server_name_in_redirect on; port_in_redirect on; ssl on; ssl_protocols TLSv1.2; ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH"; ssl_ecdh_curve secp384r1; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; ssl_certificate /etc/nginx/api.accou nts.firefox.com.pem; ssl_certificate_key /etc/nginx/firef ox.key; ssl_dhparam /etc/nginx/dhp40 96.pem; location / { proxy_pass http://local_ip:9000/; proxy_redirect http://local_ip:9000/ defau lt; proxy_no_cache $cookie_nocache $arg_nocache$ arg_comment; proxy_no_cache $http_pragma $http_authori zation; proxy_cache_bypass $cookie_nocache $arg_noca che$arg_comment; proxy_cache_bypass $http_pragma $http_aut horization; proxy_cache_valid 200 302 20m; proxy_cache_valid 404 1m; proxy_set_header Host $host; proxy_set_header X-Real- IP $remote_addr; proxy_set_header X-Forwarded- For $proxy_add_x_forwarded_for; client_max_body_size 100m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 300; proxy_read_timeout 300; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 100m; } } after start all 3 services and trying to create sync account in browser i have infinite loading in browser. and following in console: fxa-auth-server # npm run start-mysql > [email protected] start-mysql /home/mozilla-sync/fxa-auth-server > NODE_ENV=dev scripts/start-local-mysql.sh 2>&1 keys file already exists README.md index.js node_modules package.json test {"Timestamp":1485782444932000000,"Logger":"fxa-auth-db- server","Type":"bin.db_patcher.patched","Severity":6,"Pid":32625,"EnvVe rsion":"2.0","Fields":{"level":39}} mail_helper started... fxa-auth-server.INFO: geodb.start {"op":"geodb.start","enabled":true,"dbPath":"/home/mozilla-sync/fxa- auth-server/node_modules/fxa-geodb/db/cities-db.mmdb"} fxa-auth-server.INFO: undefined {"env":"dev","geodb":{"dbPath":"/home/mozilla-sync/fxa-auth- server/node_modules/fxa-geodb/db/cities- db.mmdb","enabled":true},"log":{"level":"info","fmt":"pretty"},"memcach ed":{"address":"127.0.0.1:11211","idle":30000,"lifetime":7200},"publicU rl":"https://api.accounts.firefox.com","domain":"api.accounts.firefox.c om","secretKeyFile":"/home/mozilla-sync/fxa-auth-server/config/secret- key.json","publicKeyFile":"/home/mozilla-sync/fxa-auth- server/config/public- key.json","trustedJKUs":["http://127.0.0.1:8080/.well-known/public- keys","http://127.0.0.1:10139/.well-known/public- keys"],"vapidKeysFile":"/home/mozilla-sync/fxa-auth- server/config/vapid- keys.json","db":{"backend":"httpdb"},"httpdb":{"url":"http://127.0.0.1: 8000"},"listen":{"host":"192.168.0.252","port":9000},"customsUrl":"none ","contentServer":{"url":"http://127.0.0.1:3030"},"smtp":{"api":{"host" :"127.0.0.1","port":9001},"host":"127.0.0.1","port":9999,"secure":false ,"sender":"Firefox Accounts <no- [email protected]>","verificationUrl":"http://127.0.0.1:3030/verify_email" ,"verifyLoginUrl":"http://127.0.0.1:3030/complete_signin","passwordRese tUrl":"http://127.0.0.1:3030/complete_reset_password","initiatePassword ResetUrl":"http://127.0.0.1:3030/reset_password","syncUrl":"https://www .mozilla.org/firefox/sync/","androidUrl":"https://www.mozilla.org/firef ox/android/","iosUrl":"https://www.mozilla.org/firefox/ios/","supportUr l":"https://support.mozilla.org/kb/im-having-problems-with-my-firefox- account","redirectDomain":"firefox.com","privacyUrl":"https://www.mozil la.org/privacy","passwordManagerInfoUrl":"https://support.mozilla.org/k b/password-manager-remember-delete-change-and-import#w_viewing-and- deleting- passwords","initiatePasswordChangeUrl":"http://127.0.0.1:3030/settings/ change_password","reportSignInUrl":"http://127.0.0.1:3030/report_signin "},"maxEventLoopDelay":0,"scrypt":{"maxPending":0},"i18n":{"defaultLang uage":"en","supportedLanguages":["ar","ast","az","bg","bn- BD","cs","cy","da","de","dsb","en","en-GB","es","es-AR","es-CL","es- ES","es-MX","et","fa","ff","fi","fr","fy","he","hi- IN","hsb","hu","id","it","ja","ka","kab","kk","ko","lt","lv","nl","nn- NO","pa","pl","pt","pt-BR","pt- PT","rm","ro","ru","sk","sl","sq","sr","sr-LATN","sv","sv- SE","te","tr","uk","zh-CN","zh- TW"]},"tokenLifetimes":{"accountResetToken":900000,"passwordForgotToken ":3600000,"passwordChangeToken":900000},"verifierVersion":0,"snsTopicAr n":"disabled","bounces":{"region":"","bounceQueueUrl":"","complaintQueu eUrl":""},"verificationReminders":{"rate":1},"useHttps":false,"keyPath" :"/home/mozilla-sync/fxa-auth- server/key.pem","certPath":"/home/mozilla-sync/fxa-auth- server/cert.pem","lockoutEnabled":true,"newLoginNotificationEnabled":tr ue,"deviceUpdatesEnabled":true,"deviceNotificationsEnabled":true,"oauth ":{"url":"http://localhost:9010","keepAlive":false,"extra":{"email":fal se}},"statsd":{"enabled":true,"host":"localhost","port":8125,"sample_ra te":1},"metrics":{"flow_id_key":"YOU MUST CHANGE ME","flow_id_expiry":7200000},"corsOrigin":["*"],"clientAddressDepth":3 ,"signinConfirmation":{"forcedEmailAddresses":"/.+@mozilla\\.com$/","sk ipForNewAccounts":{"enabled":false,"maxAge":14400000}},"securityHistory ":{"enabled":true,"ipProfiling":{"enabled":true,"allowedRecency":259200 000}},"lastAccessTimeUpdates":{"enabled":false,"sampleRate":1,"enabledE mailAddresses":"/.+@mozilla\\.com$/"},"signinUnblock":{"codeLength":8," codeLifetime":3600000,"enabled":true,"allowedEmailAddresses":"/.+@mozil la\\.com$/","forcedEmailAddresses":"/^$/","sampleRate":1},"hpkpConfig": {"enabled":false,"reportOnly":true,"reportUri":"","includeSubDomains":t rue,"maxAge":1,"sha256s":[]},"isProduction":false} {"Timestamp":1485782452038000000,"Logger":"fxa-auth-db- server","Type":"bin.server.connect","Severity":6,"Pid":32636,"EnvVersio n":"2.0","Fields":{"patchLevel":39,"patchLevelRequired":39}} {"Timestamp":1485782454386000000,"Logger":"fxa-auth-db- server","Type":"bin.server.start","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"port":8000}} {"Timestamp":1485782454406000000,"Logger":"fxa-auth-db- server","Type":"bin.server.variables.SLAVE","Severity":6,"Pid":32636,"E nvVersion":"2.0","Fields":{"character_set_client":"utf8","character_set _connection":"utf8","character_set_database":"utf8","character_set_file system":"binary","character_set_results":"utf8","character_set_server": "utf8","character_set_system":"utf8","collation_connection":"utf8_gener al_ci","collation_database":"utf8_unicode_ci","collation_server":"utf8_ general_ci","max_connections":"151","version":"5.6.35- log","wait_timeout":"28800"}} {"Timestamp":1485782454409000000,"Logger":"fxa-auth-db- server","Type":"bin.server.connectionConfig.SLAVE","Severity":6,"Pid":3 2636,"EnvVersion":"2.0","Fields":{"bigNumberStrings":false,"charsetNumb er":33,"clientFlags":455631,"connectTimeout":10000,"database":"fxa","da teStrings":false,"flags":"","insecureAuth":false,"maxPacketSize":0,"mul tipleStatements":false,"protocol41":true,"ssl":false,"stringifyObjects" :false,"supportBigNumbers":false,"timezone":"local","trace":true,"typeC ast":true}} {"Timestamp":1485782454422000000,"Logger":"fxa-auth-db- server","Type":"bin.server.variables.MASTER","Severity":6,"Pid":32636," EnvVersion":"2.0","Fields":{"character_set_client":"utf8","character_se t_connection":"utf8","character_set_database":"utf8","character_set_fil esystem":"binary","character_set_results":"utf8","character_set_server" :"utf8","character_set_system":"utf8","collation_connection":"utf8_gene ral_ci","collation_database":"utf8_unicode_ci","collation_server":"utf8 _general_ci","max_connections":"151","version":"5.6.35- log","wait_timeout":"28800"}} {"Timestamp":1485782454430000000,"Logger":"fxa-auth-db- server","Type":"bin.server.connectionConfig.MASTER","Severity":6,"Pid": 32636,"EnvVersion":"2.0","Fields":{"bigNumberStrings":false,"charsetNum ber":33,"clientFlags":455631,"connectTimeout":10000,"database":"fxa","d ateStrings":false,"flags":"","insecureAuth":false,"maxPacketSize":0,"mu ltipleStatements":false,"protocol41":true,"ssl":false,"stringifyObjects ":false,"supportBigNumbers":false,"timezone":"local","trace":true,"type Cast":true}} fxa-auth-server.INFO: geodb.accuracy {"op":"geodb.accuracy","accuracy":50} fxa-auth-server.INFO: geodb.accuracy_confidence {"op":"geodb.accuracy_confidence","accuracy_confidence":"fxa.location.a ccuracy.uncertain"} fxa-auth-server.INFO: geodb.check {"op":"geodb.check","result":{"location":{"city":"Mountain View","country":"United States","state":"California","stateCode":"CA"},"timeZone":"America/Los_ Angeles"}} fxa-auth-server.INFO: geodb.start {"op":"geodb.start","enabled":true,"dbPath":"/home/mozilla-sync/fxa- auth-server/node_modules/fxa-geodb/db/cities-db.mmdb"} fxa-auth-server.INFO: geodb.start {"op":"geodb.start","enabled":true,"dbPath":"/home/mozilla-sync/fxa- auth-server/node_modules/fxa-geodb/db/cities-db.mmdb"} fxa-auth-server.INFO: server.start.1 {"op":"server.start.1","msg":"running on http://192.168.0.252:9000"} {"Timestamp":1485782466925000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782469375000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19087368} } fxa-auth-server.INFO: stat {"stat":"mem","rss":160849920,"heapUsed":57741064} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782481937000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782484375000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19097384} } fxa-auth-server.INFO: stat {"stat":"mem","rss":160849920,"heapUsed":57815096} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782496948000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782499378000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19105232} } fxa-auth-server.INFO: stat {"stat":"mem","rss":160849920,"heapUsed":57885808} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782511960000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782514380000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19113080} } fxa-auth-server.INFO: stat {"stat":"mem","rss":160849920,"heapUsed":57960880} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782526972000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782529383000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19120928} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":58929080} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782541974000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782544385000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19135104} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59001872} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782556987000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782559387000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19142952} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59069472} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782571998000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782574388000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19150800} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59176656} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782587004000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782589390000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19181360} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59259824} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782602017000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782604393000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19189208} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59327144} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782617028000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782619395000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19197056} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59394368} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782632038000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782634397000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19204904} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59461592} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782647050000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782649399000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19212752} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59528432} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782662063000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782664402000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19220600} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59599400} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782677076000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782679404000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19228448} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59666560} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782692088000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782694406000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19236296} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59740832} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782707099000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782709408000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19244144} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59807736} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782722111000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782724408000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19251992} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59877856} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782737120000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782739409000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19260712} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":59945144} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782752133000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782754411000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19268560} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60012432} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782767146000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782769412000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19276408} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60079912} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782782158000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782784415000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19284256} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60146696} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782797171000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782799415000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19292104} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60214176} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782812183000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782814417000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19300016} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60281720} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782827197000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782829419000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19319864} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60372816} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782842208000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782844421000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19328824} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60439848} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782857219000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782859426000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19336672} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60506784} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782872231000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782874428000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19351704} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60573944} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782887243000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782889428000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19359552} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60645496} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782902255000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782904431000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19367400} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60712912} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782917267000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782919432000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19375248} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60786672} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782932278000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782934433000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19383096} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60854136} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782947288000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782949435000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19390944} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60921440} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782962300000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782964438000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19398792} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":60988968} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782977314000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782979439000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19406640} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61056208} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485782992324000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485782994439000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19414488} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61125816} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783007336000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783009442000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19422336} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61193280} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783022348000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783024444000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19430184} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61260680} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783037361000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783039446000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19438032} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61328080} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783052373000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783054448000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19453432} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61395448} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783067384000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783069450000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19461280} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61462720} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783082397000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783084451000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19469128} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61530184} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783097409000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783099453000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19476976} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61601320} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783112421000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783114454000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19487440} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61668624} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783127434000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783129456000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19495320} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61736024} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783142447000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783144456000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19503200} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61803392} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783157459000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783159458000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19511080} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61870728} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783172471000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783174461000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19518960} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":61938064} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783187484000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783189463000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19526840} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":62005528} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783202494000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783204464000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19534720} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":62072960} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783217507000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783219465000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19542600} } fxa-auth-server.INFO: stat {"stat":"mem","rss":161120256,"heapUsed":62140392} fxa-auth-server.INFO: stat {"stat":"scrypt","maxPending":0,"numPending":0,"numPendingHWM":0} {"Timestamp":1485783232519000000,"Logger":"fxa-auth-db- server","Type":"bin.server.stats","Severity":6,"Pid":32636,"EnvVersion" :"2.0","Fields":{"stat":"mysql","errors":0,"connections":2,"queue":0,"f ree":2}} {"Timestamp":1485783234467000000,"Logger":"fxa-auth-db- server","Type":"bin.server.mem","Severity":6,"Pid":32636,"EnvVersion":" 2.0","Fields":{"rss":48340992,"heapTotal":36179824,"heapUsed":19550480} } fxa-content-server # npm run start > [email protected] start /home/mozilla-sync/fxa-content-server > node scripts/check-local-config && grunt server Running "server" task Running "clean:app" (clean) task >> 54 paths cleaned. Running "selectconfig:app" (selectconfig) task Using configuration files /home/mozilla-sync/fxa-content- server/server/config/local.json Running "l10n-create-json" task Running "copy:strings" (copy) task Copied 218 files Running "po2json:all" (po2json) task Running "po2json:template" (po2json) task Running "l10n-generate-tos-pp:app" (l10n-generate-tos-pp) task Running "clean:tos_pp" (clean) task >> 2 paths cleaned. Running "replace:tos_pp" (replace) task Running "remarkable:tos_pp" (remarkable) task Running "copy:tos_pp" (copy) task Copied 2 files Running "sass:styles" (sass) task Running "autoprefixer:dist" (autoprefixer) task >> 4 autoprefixed stylesheets created. Running "connect_fonts" task Running "do_connect_fonts:dist" (do_connect_fonts) task >> Connect fonts CSS has been generated. Running "concurrent:server" (concurrent) task Running "copy:styles" (copy) task Copied 51 files Done. Running "connect_fonts_copy:dist" (connect_fonts_copy) task >> 320 files copied. Done. Running "copy:normalize" (copy) task Copied 1 file Done. Running "serverproc:app" (serverproc) task fxa-content-server.server.main.INFO: page_template_directory: /home/mozilla-sync/fxa-content-server/server/templates/pages/src fxa-content-server.server.main.INFO: Firefox Account Content server listening on port 3030 fxa-content-server.server.main.INFO: Firefox Account HTTP redirect server listening on port 3080 fxa-content-server.server.version.INFO: source set to: https://github.c om/mozilla/fxa-content-server.git fxa-content-server.server.version.INFO: version set to: 0.79.1 fxa-content-server.server.version.INFO: commit hash set to: da729b7369d6f9934e45744aea96b5798a9e22dc fxa-content-server.server.version.INFO: fxa-content-server-l10n commit hash set to: 924ee9bad0797dc45fc2367b92a32048e272e1e6 fxa-content-server.server.version.INFO: tos-pp (legal-docs) commit hash set to: 8a8746faac fxa-content-server.server.requests.INFO: GET /signup?service=sync&context=fx_desktop_v3&entrypoint=preferences 200 1806.908 fxa-content-server.server.requests.INFO: GET /bower_components/normalize-css/normalize.css 200 18.822 fxa-content-server.server.requests.INFO: GET /styles/fontello.css 200 8.059 fxa-content-server.server.requests.INFO: GET /styles/fonts/en.css 200 8.704 fxa-content-server.server.requests.INFO: GET /styles/main.css 200 2.487 fxa-content-server.server.requests.INFO: GET /scripts/head/boot.js 304 54.232 fxa-content-server.server.requests.INFO: GET /scripts/head/startup- styles.js 304 27.272 fxa-content-server.server.requests.INFO: GET /scripts/head/start.js 304 4.772 fxa-content-server.server.requests.INFO: GET /bower_components/html5shiv/dist/html5shiv.js 304 96.241 fxa-content-server.server.requests.INFO: GET /scripts/lib/environment.js 304 23.958 fxa-content-server.server.requests.INFO: GET /bower_components/requirejs/require.js 304 16.981 fxa-content-server.server.requests.INFO: GET /experiments.bundle.js 200 4.164 fxa-content-server.server.requests.INFO: GET /images/firefox.png 304 25.899 fxa-content-server.server.requests.INFO: GET /images/spinnerlight.png 304 2.237 fxa-content-server.server.requests.INFO: GET /images/mozilla.png 304 1.904 fxa-content-server.server.requests.INFO: GET /fonts/latin/firasans- light.woff2 200 1.570 fxa-content-server.server.requests.INFO: GET /scripts/main.js 304 1.678 fxa-content-server.server.requests.INFO: GET /scripts/require_config.js 304 1.630 fxa-content-server.server.requests.INFO: GET /scripts/lib/app-start.js 304 5.844 fxa-content-server.server.requests.INFO: GET /scripts/lib/environment.js 304 6.033 fxa-content-server.server.requests.INFO: GET /scripts/lib/able.js 304 1.566 fxa-content-server.server.requests.INFO: GET /scripts/views/app.js 304 49.744 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/index.js 304 296.239 fxa-content-server.server.requests.INFO: GET /scripts/lib/constants.js 304 3.202 fxa-content-server.server.requests.INFO: GET /scripts/lib/error- utils.js 304 1.995 fxa-content-server.server.requests.INFO: GET /scripts/models/form- prefill.js 304 2.161 fxa-content-server.server.requests.INFO: GET /scripts/lib/height- observer.js 304 1.851 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/iframe.js 304 19.579 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/inter-tab.js 304 2.035 fxa-content-server.server.requests.INFO: GET /scripts/lib/metrics.js 304 2.070 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/notifier.js 304 1.419 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/null.js 304 1.050 fxa-content-server.server.requests.INFO: GET /scripts/models/reliers/oauth.js 304 36.584 fxa-content-server.server.requests.INFO: GET /scripts/lib/promise.js 304 2.404 fxa-content-server.server.requests.INFO: GET /scripts/models/refresh- observer.js 304 1.988 fxa-content-server.server.requests.INFO: GET /scripts/models/reliers/relier.js 304 2.164 fxa-content-server.server.requests.INFO: GET /scripts/lib/router.js 304 4.949 fxa-content-server.server.requests.INFO: GET /scripts/lib/screen- info.js 304 0.817 fxa-content-server.server.requests.INFO: GET /scripts/lib/session.js 304 1.987 fxa-content-server.server.requests.INFO: GET /scripts/lib/storage- metrics.js 304 1.846 fxa-content-server.server.requests.INFO: GET /scripts/models/reliers/sync.js 304 8.541 fxa-content-server.server.requests.INFO: GET /scripts/lib/url.js 304 1.597 fxa-content-server.server.requests.INFO: GET /scripts/models/user.js 304 0.908 fxa-content-server.server.requests.INFO: GET /scripts/lib/user-agent.js 304 0.737 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/web.js 304 2.937 fxa-content-server.server.requests.INFO: GET /bower_components/jquery/dist/jquery.js 304 59.478 fxa-content-server.server.requests.INFO: GET /scripts/lib/assertion.js 304 2.733 fxa-content-server.server.requests.INFO: GET /scripts/lib/config- loader.js 304 2.116 fxa-content-server.server.requests.INFO: GET /scripts/lib/fxa-client.js 304 3.586 fxa-content-server.server.requests.INFO: GET /scripts/lib/marketing- email-client.js 304 2.562 fxa-content-server.server.requests.INFO: GET /scripts/lib/oauth- client.js 304 1.952 fxa-content-server.server.requests.INFO: GET /scripts/lib/profile- client.js 304 2.367 fxa-content-server.server.requests.INFO: GET /scripts/lib/require-on- demand.js 304 2.444 fxa-content-server.server.requests.INFO: GET /scripts/models/verification/same-browser.js 304 60.981 fxa-content-server.server.requests.INFO: GET /scripts/lib/sentry.js 304 1.669 fxa-content-server.server.requests.INFO: GET /scripts/lib/storage.js 304 2.069 fxa-content-server.server.requests.INFO: GET /scripts/lib/translator.js 304 1.818 fxa-content-server.server.requests.INFO: GET /scripts/models/unique- user-id.js 304 2.303 fxa-content-server.server.requests.INFO: GET /bower_components/underscore/underscore.js 304 49.605 fxa-content-server.server.requests.INFO: GET /scripts/views/base.js 304 2.260 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/loading-mixin.js 304 9.376 fxa-content-server.server.requests.INFO: GET /bower_components/cocktail/Cocktail.js 304 15.129 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-desktop-v1.js 304 1.513 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-desktop-v2.js 304 1.264 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-desktop-v3.js 304 2.077 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-fennec-v1.js 304 0.858 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-firstrun-v2.js 304 1.317 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-ios-v1.js 304 3.370 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/redirect.js 304 1.628 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-firstrun-v1.js 304 1.728 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/base.js 304 1.477 fxa-content-server.server.requests.INFO: GET /scripts/lib/auth- errors.js 304 2.687 fxa-content-server.server.requests.INFO: GET /scripts/lib/dom-writer.js 304 3.338 fxa-content-server.server.requests.INFO: GET /bower_components/requirejs-mustache/stache.js 304 49.149 fxa-content-server.server.requests.INFO: GET /scripts/lib/logger.js 304 1.760 fxa-content-server.server.requests.INFO: GET /scripts/lib/oauth- errors.js 304 1.417 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/duplex.js 304 19.935 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/senders/postmessage.js 304 28.227 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/receivers/postmessage.js 304 13.445 fxa-content-server.server.requests.INFO: GET /bower_components/Duration.js/duration.js 304 57.972 fxa-content-server.server.requests.INFO: GET /scripts/lib/xhr.js 304 4.088 fxa-content-server.server.requests.INFO: GET /bower_components/speed- trap/dist/speed-trap.js 304 14.338 fxa-content-server.server.requests.INFO: GET /scripts/lib/strings.js 304 1.169 fxa-content-server.server.requests.INFO: GET /scripts/lib/validate.js 304 2.064 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/base.js 304 1.856 fxa-content-server.server.requests.INFO: GET /scripts/lib/transform.js 304 1.854 fxa-content-server.server.requests.INFO: GET /scripts/lib/vat.js 304 0.547 fxa-content-server.server.requests.INFO: GET /bower_components/p/p.js 304 16.857 fxa-content-server.server.requests.INFO: GET /scripts/models/reliers/base.js 304 0.671 fxa-content-server.server.requests.INFO: GET /scripts/models/mixins/resume-token.js 304 19.827 fxa-content-server.server.requests.INFO: GET /scripts/models/mixins/search-param.js 304 2.035 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/avatar_camera.js 304 2.683 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/avatar_change.js 304 0.704 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/avatar_crop.js 304 1.066 fxa-content-server.server.requests.INFO: GET /scripts/views/cannot_create_account.js 304 1.579 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/avatar_gravatar.js 304 3.547 fxa-content-server.server.requests.INFO: GET /scripts/lib/verification- reasons.js 304 1.177 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/change_password.js 304 1.829 fxa-content-server.server.requests.INFO: GET /scripts/views/clear_storage.js 304 0.932 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/communication_preferences.js 304 0.726 fxa-content-server.server.requests.INFO: GET /scripts/views/complete_reset_password.js 304 2.025 fxa-content-server.server.requests.INFO: GET /scripts/views/connect_another_device.js 304 1.989 fxa-content-server.server.requests.INFO: GET /scripts/views/cookies_disabled.js 304 1.200 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/delete_account.js 304 1.131 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/display_name.js 304 0.902 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/gravatar_permissions.js 304 1.615 fxa-content-server.server.requests.INFO: GET /scripts/views/legal.js 304 3.806 fxa-content-server.server.requests.INFO: GET /scripts/views/permissions.js 304 4.745 fxa-content-server.server.requests.INFO: GET /scripts/views/pp.js 304 1.036 fxa-content-server.server.requests.INFO: GET /scripts/views/ready.js 304 1.575 fxa-content-server.server.requests.INFO: GET /scripts/views/report_sign_in.js 304 2.249 fxa-content-server.server.requests.INFO: GET /scripts/views/choose_what_to_sync.js 304 2.658 fxa-content-server.server.requests.INFO: GET /scripts/views/sign_in_reported.js 304 1.808 fxa-content-server.server.requests.INFO: GET /scripts/views/sign_up.js 304 1.868 fxa-content-server.server.requests.INFO: GET /scripts/views/tos.js 304 0.691 fxa-content-server.server.requests.INFO: GET /scripts/views/why_connect_another_device.js 304 0.955 fxa-content-server.server.requests.INFO: GET /scripts/views/complete_sign_up.js 304 2.996 fxa-content-server.server.requests.INFO: GET /scripts/views/confirm_reset_password.js 304 2.276 fxa-content-server.server.requests.INFO: GET /scripts/views/confirm.js 304 1.007 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/clients.js 304 1.302 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/client_disconnect.js 304 2.064 fxa-content-server.server.requests.INFO: GET /scripts/views/force_auth.js 304 1.867 fxa-content-server.server.requests.INFO: GET /scripts/views/reset_password.js 304 0.789 fxa-content-server.server.requests.INFO: GET /scripts/views/settings.js 304 2.357 fxa-content-server.server.requests.INFO: GET /scripts/views/sign_in.js 304 8.836 fxa-content-server.server.requests.INFO: GET /scripts/views/sign_in_unblock.js 304 2.062 fxa-content-server.server.requests.INFO: GET /scripts/models/account.js 304 2.995 fxa-content-server.server.requests.INFO: GET /scripts/lib/marketing- email-errors.js 304 5.342 fxa-content-server.server.requests.INFO: GET /bower_components/ua- parser-js/src/ua-parser.js 304 38.069 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/receivers/web-channel.js 304 2.152 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/senders/web-channel.js 304 1.776 fxa-content-server.server.requests.INFO: GET /scripts/lib/errors.js 304 11.111 fxa-content-server.server.requests.INFO: GET /scripts/lib/sign-in- reasons.js 304 8.783 fxa-content-server.server.requests.INFO: GET /scripts/lib/verification- methods.js 304 16.218 fxa-content-server.server.requests.INFO: GET /scripts/lib/profile- errors.js 304 7.087 fxa-content-server.server.requests.INFO: GET /bower_components/raven- js/dist/raven.js 304 34.457 fxa-content-server.server.requests.INFO: GET /scripts/lib/null- storage.js 304 1.568 fxa-content-server.server.requests.INFO: GET /bower_components/requirejs-text/text.js 304 16.730 fxa-content-server.server.requests.INFO: GET /bower_components/node- uuid/uuid.js 304 18.898 fxa-content-server.server.requests.INFO: GET /bower_components/backbone/backbone.js 304 41.054 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/external-links-mixin.js 304 1.383 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/notifier-mixin.js 304 1.474 fxa-content-server.server.requests.INFO: GET /scripts/lib/null- metrics.js 304 1.420 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/timer-mixin.js 304 1.565 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/fx- desktop-v1.js 304 1.547 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-sync.js 304 0.690 fxa-content-server.server.requests.INFO: GET /scripts/views/behaviors/halt.js 304 15.729 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/fx-sync-web-channel.js 304 1.645 fxa-content-server.server.requests.INFO: GET /scripts/views/behaviors/null.js 304 1.397 fxa-content-server.server.requests.INFO: GET /scripts/views/behaviors/navigate.js 304 1.419 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/oauth.js 304 4.523 fxa-content-server.server.requests.INFO: GET /bower_components/mustache/mustache.js 304 15.553 fxa-content-server.server.requests.INFO: GET /bower_components/vat/vat.js 304 29.949 fxa-content-server.server.requests.INFO: GET /scripts/models/resume- token.js 304 1.917 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/avatar-mixin.js 304 1.670 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/modal-settings-panel-mixin.js 304 1.864 fxa-content-server.server.requests.INFO: GET /scripts/models/profile- image.js 304 1.451 fxa-content-server.server.requests.INFO: GET /scripts/views/progress_indicator.js 304 1.427 fxa-content-server.server.requests.INFO: GET /bower_components/webrtc- adapter/adapter.js 304 28.143 fxa-content-server.server.requests.INFO: GET /bower_components/blueimp- canvas-to-blob/js/canvas-to-blob.js 304 74.349 fxa-content-server.server.requests.INFO: GET /scripts/views/form.js 304 5.320 fxa-content-server.server.requests.INFO: GET /scripts/models/cropper- image.js 304 0.751 fxa-content-server.server.requests.INFO: GET /scripts/lib/image- loader.js 304 1.694 fxa-content-server.server.requests.INFO: GET /scripts/lib/cropper.js 304 1.611 fxa-content-server.server.requests.INFO: GET /bower_components/JavaScript-MD5/js/md5.js 304 50.999 fxa-content-server.server.requests.INFO: GET /scripts/views/decorators/progress_indicator.js 304 18.107 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/back-mixin.js 304 2.267 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/experiment-mixin.js 304 0.927 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/service-mixin.js 304 1.765 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/floating-placeholder-mixin.js 304 2.083 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/password-mixin.js 304 2.044 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/password-strength-mixin.js 304 1.439 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/settings-panel-mixin.js 304 1.268 fxa-content-server.server.requests.INFO: GET /scripts/lib/xss.js 304 1.966 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/flow-events-mixin.js 304 2.150 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/password-reset-mixin.js 304 3.429 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/resend-mixin.js 304 0.942 fxa-content-server.server.requests.INFO: GET /scripts/models/verification/reset-password.js 304 0.837 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/marketing-mixin.js 304 1.500 fxa-content-server.server.requests.INFO: GET /scripts/views/marketing_snippet.js 304 1.455 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/checkbox-mixin.js 304 2.211 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/verification-reason-mixin.js 304 0.901 fxa-content-server.server.requests.INFO: GET /scripts/views/legal_copy.js 304 1.133 fxa-content-server.server.requests.INFO: GET /scripts/models/verification/report-sign-in.js 304 5.662 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/account-reset-mixin.js 304 1.054 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/flow-begin-mixin.js 304 1.444 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/migration-mixin.js 304 1.529 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/resume-token-mixin.js 304 1.424 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/signed-in-notification-mixin.js 304 0.787 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/signin-mixin.js 304 1.940 fxa-content-server.server.requests.INFO: GET /scripts/views/coppa/coppa-age-input.js 304 18.845 fxa-content-server.server.requests.INFO: GET /scripts/lib/mailcheck.js 304 0.570 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/signup-mixin.js 304 0.674 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/modal-panel-mixin.js 304 0.607 fxa-content-server.server.requests.INFO: GET /scripts/models/verification/sign-up.js 304 4.983 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/open-webmail-mixin.js 304 2.169 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/signed-out-notification-mixin.js 304 1.805 fxa-content-server.server.requests.INFO: GET /scripts/models/attached- clients.js 304 2.011 fxa-content-server.server.requests.INFO: GET /scripts/views/decorators/allow_only_one_submit.js 304 1.439 fxa-content-server.server.requests.INFO: GET /scripts/views/settings/avatar.js 304 1.481 fxa-content-server.server.requests.INFO: GET /scripts/views/sub_panels.js 304 1.396 fxa-content-server.server.requests.INFO: GET /bower_components/jquery- modal/jquery.modal.js 304 1.878 fxa-content-server.server.requests.INFO: GET /scripts/models/marketing- email-prefs.js 304 3.004 fxa-content-server.server.requests.INFO: GET /scripts/models/oauth- token.js 304 2.401 fxa-content-server.server.requests.INFO: GET /i18n/client.json 200 5.346 fxa-content-server.server.requests.INFO: GET /scripts/lib/channels/senders/fx-desktop-v1.js 304 3.621 fxa-content-server.server.requests.INFO: GET /scripts/models/auth_brokers/mixins/channel.js 304 14.107 fxa-content-server.server.requests.INFO: GET /scripts/templates/500.mustache 200 66.222 fxa-content-server.server.requests.INFO: GET /scripts/templates/400.mustache 200 8.294 fxa-content-server.server.requests.INFO: GET /scripts/templates/loading.mustache 200 27.885 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/avatar_camera.mustache 200 39.873 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/avatar_change.mustache 200 34.185 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/avatar_crop.mustache 200 12.108 fxa-content-server.server.requests.INFO: GET /scripts/templates/cannot_create_account.mustache 200 20.592 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/avatar_gravatar.mustache 200 12.230 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/change_password.mustache 200 2.931 fxa-content-server.server.requests.INFO: GET /scripts/templates/clear_storage.mustache 200 27.768 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/communication_preferences.mustache 200 3.427 fxa-content-server.server.requests.INFO: GET /scripts/templates/complete_reset_password.mustache 200 3.267 fxa-content-server.server.requests.INFO: GET /scripts/templates/connect_another_device.mustache 200 22.454 fxa-content-server.server.requests.INFO: GET /scripts/templates/cookies_disabled.mustache 200 1.847 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/delete_account.mustache 200 2.517 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/display_name.mustache 200 6.011 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/gravatar_permissions.mustache 200 15.431 fxa-content-server.server.requests.INFO: GET /scripts/templates/legal.mustache 200 45.048 fxa-content-server.server.requests.INFO: GET /scripts/templates/partial/permission.mustache 200 49.757 fxa-content-server.server.requests.INFO: GET /scripts/templates/permissions.mustache 200 28.391 fxa-content-server.server.requests.INFO: GET /scripts/templates/pp.mustache 200 3.218 fxa-content-server.server.requests.INFO: GET /scripts/templates/ready.mustache 200 2.681 fxa-content-server.server.requests.INFO: GET /scripts/templates/report_sign_in.mustache 200 2.508 fxa-content-server.server.requests.INFO: GET /scripts/templates/choose_what_to_sync.mustache 200 18.985 fxa-content-server.server.requests.INFO: GET /scripts/templates/sign_in_reported.mustache 200 3.009 fxa-content-server.server.requests.INFO: GET /scripts/templates/sign_up.mustache 200 26.294 fxa-content-server.server.requests.INFO: GET /scripts/templates/tos.mustache 200 1.597 fxa-content-server.server.requests.INFO: GET /scripts/templates/why_connect_another_device.mustache 200 50.828 fxa-content-server.server.requests.INFO: GET /scripts/templates/complete_sign_up.mustache 200 2.729 fxa-content-server.server.requests.INFO: GET /scripts/templates/confirm_reset_password.mustache 200 35.935 fxa-content-server.server.requests.INFO: GET /scripts/templates/confirm.mustache 200 13.301 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/clients.mustache 200 11.507 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/client_disconnect.mustache 200 32.864 fxa-content-server.server.requests.INFO: GET /scripts/templates/force_auth.mustache 200 27.375 fxa-content-server.server.requests.INFO: GET /scripts/templates/reset_password.mustache 200 30.438 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings.mustache 200 20.241 fxa-content-server.server.requests.INFO: GET /scripts/templates/sign_in.mustache 200 1.366 fxa-content-server.server.requests.INFO: GET /scripts/templates/sign_in_unblock.mustache 200 4.928 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/jquery-plugin.js 304 17.463 fxa-content-server.server.requests.INFO: GET /scripts/views/decorators/notify_delayed_request.js 304 1.195 fxa-content-server.server.requests.INFO: GET /scripts/views/tooltip.js 304 1.548 fxa-content-server.server.requests.INFO: GET /scripts/lib/key-codes.js 304 5.227 fxa-content-server.server.requests.INFO: GET /scripts/lib/experiment.js 304 0.545 fxa-content-server.server.requests.INFO: GET /scripts/templates/partial/show-password.mustache 200 17.136 fxa-content-server.server.requests.INFO: GET /scripts/views/mixins/password-prompt-mixin.js 304 1.727 fxa-content-server.server.requests.INFO: GET /scripts/models/flow.js 304 2.225 fxa-content-server.server.requests.INFO: GET /scripts/models/email- resend.js 304 1.829 fxa-content-server.server.requests.INFO: GET /scripts/models/verification/base.js 304 0.885 fxa-content-server.server.requests.INFO: GET /scripts/templates/marketing_snippet.mustache 200 61.664 fxa-content-server.server.requests.INFO: GET /bower_components/fxa- checkbox/checkbox.js 304 1.490 fxa-content-server.server.requests.INFO: GET /scripts/templates/partial/coppa-age-input.mustache 200 17.551 fxa-content-server.server.requests.INFO: GET /bower_components/mailcheck/src/mailcheck.js 304 18.320 fxa-content-server.server.requests.INFO: GET /scripts/models/device.js 304 2.235 fxa-content-server.server.requests.INFO: GET /scripts/models/oauth- app.js 304 0.796 fxa-content-server.server.requests.INFO: GET /scripts/templates/settings/avatar.mustache 200 18.773 fxa-content-server.server.requests.INFO: GET /scripts/templates/sub_panels.mustache 200 40.400 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/checkbox-input.js 304 0.812 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/default.js 304 1.773 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/email-input.js 304 2.005 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/password-input.js 304 1.745 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/text-input.js 304 0.693 fxa-content-server.server.requests.INFO: GET /scripts/views/elements/unblock-code-input.js 304 0.888 fxa-content-server.server.requests.INFO: GET /scripts/lib/experiments/connect-another-device.js 304 24.402 fxa-content-server.server.requests.INFO: GET /scripts/lib/experiments/mailcheck.js 304 4.889 fxa-content-server.server.requests.INFO: GET /scripts/lib/experiments/base.js 304 1.450 syncserver # make serve ./local/bin/gunicorn --paste ./syncserver.ini /home/mozilla-sync/syncserver/local/lib/python2.7/site- packages/tokenserver/verifiers.py:50: FutureWarning: The BrowserID certificate format has not been finalized and may change in backwards- incompatible ways. If you find that the latest version of this module cannot verify a valid BrowserID assertion, please contact the author. super(LocalVerifier, self).__init__(**kwargs) what am i doing wrong ? -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEl/sA7WQg6czXWI/dsEApXVthX7wFAliPQZYACgkQsEApXVth X7w5MRAAopwMwh22NUhj3lfkYUXxUmIB6yp0MOWqAJVcl3DbDPb2Nrx8rmUTyueb rygqwO6dyTM8NrVRqUb3U3GKgRBhCfI3W60vzZG1RxDi9OMANCOczLqgLgq7NK0/ ruRiKyU88o+1RP7KtfazoTZWtavfY91nVIc0N3vQKiTL8mLJRCMlxk0hUwappyak FF0ZvjOM540vKjbyob11vcSLd0xqH51QmqMvNzojs8HZPtxX8W7igPEecO4nC8l/ cmabEHDFUQdBmA0GYJmaVM2fCRYosoe9BOiNJM3rYoE5LJLwMZNoL5mn9MK4IHV2 NKfsuKCQB9i7Uhu6g589ZmmYSLi0IxgLZrtwgmSgMRSdYkEyHSsq/XwKzx/PSksM m7mgH53SfAYU+jrWdts69ghj6kH9wSzN2O5l8qqCRT+ZZ0do18gj0HNgzSzPqUtl GI9JJMfnuESzuo+8AuPexGCNpcB2yH7uY4B/81wvvCCnNoLV2fIwVlskwTt47zDy x2QG0JVAJ+hVvJM6yNO38gHYcITT1i/F9Mt5T4niYlwyfsKIUVjL1Z0WixszY1jj Fu03fxsDxc9JCZq7+DuzfP6NDztYEUtmmJ4SbHx3rwJROSJm1xY5dETHHrqDt9LF 3YLwIbbWNS5ZMAT71jVF2+6RpzR7Qe6Vl3/OwBOJ+KVWANBd4iM= =l+ol -----END PGP SIGNATURE----- _______________________________________________ Dev-fxacct mailing list [email protected] https://mail.mozilla.org/listinfo/dev-fxacct

