by ezs | Apr 21, 2014 | evilzenscientist, Uncategorized
Something is broken with Comcast Business Internet.
Speed test (urg) to Comcast in Seattle gives 50/10 – as expected:

Speed test to Comcast in San Jose gives 50/10 as expected:

Speed test to Comcast in Salt Lake gives 2/10 – which is horribly broken.

Same Ookla test outside Comcast – and I get 2/10 in Seattle.

Comcast Chicago compared with Comcast Seattle.

by ezs | Feb 27, 2014 | evilzenscientist, Uncategorized
I had a group of machines for a pilot project just stop launching Power View.
Very frustrating – and then my machine stopped working.
I finally tracked down the problem – and hopefully this helps others.
Using the Registry Editor – RegEdit – browse to
Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\User Settings
You should see a registry key PowerViewExcelAddin
Delete the key.
Now open Excel – create a new blank workbook.
On the Insert tab you should see PowerView
Click on PowerView – Excel will say you need to enable Power View – click on Enable.
The Power View and all of the BI should work now.
by ezs | Feb 18, 2014 | evilzenscientist, Uncategorized
Bobbins. I made a change to the web server config in Azure today – and it took the web server VMs offline.
Still troubleshooting on the why – but I had to rebuild the base server and re-attach the web content and database drive.
Lesson learned – test, test and document the changes..
by ezs | Feb 8, 2014 | evilzenscientist
A fun day.
First up there is a feature gap on Azure – where there is no reverse DNS – i.e. PTR records – for virtual machines.
The main problem I am having since moving things to Azure is that mail delivery from Postfix is getting some hosts rejected – because the receiving MTA receives no host on reverse DNS lookup of the sending MTA. Imagine I sent mail to foo@bar.com – and my MTA is running with a public IP address of {x.x.x.x}. The receiving MTA does a reverse lookup for {x.x.x.x} and finds no record. The mail is bounced.
My solution is to send mail via Office 365 – reconfiguring Postfix to relay via Office 365 using SMTP. The added challenge – Office 365 uses TLS for security and requires STARTTLS.
As I mentioned – a fun day grinding through docs and understanding what was needed to get this to work.
The short version:
This is the additional config for Postfix – here I am using SLES 11 SP2 – this is in /etc/postfix/main.cf
# Use Office 365 as relay
relayhost = [smtp.office365.com]:587
# Use credentials for auth to Office 365
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
smtp_send_dummy_mail_auth = yes
smtp_always_send_ehlo = yes
smtp_tls_security_level = encrypt
smtp_use_tls = yes
smtp_tls_CAfile = /etc/ssl/certs/cacert.pem
# misc
tls_random_source = dev:/dev/urandom
#logging
#smtpd_tls_loglevel = 2
#smtp_tls_loglevel = 2
#enhanced logging for Office 365
#debug_peer_list = smtp.office365.com
#debug_peer_level = 4
The plaintext username/password pair were placed in /etc/postfix/sasl_passwd
[smtp.office365.com]:587 Office 365 authentication:complex password
I also modified /etc/postfix/sender_canonical to remap the default from name to the same name used for Office 365 authentication
wwwrun@myhostname.com Office 365 authentication name
Finally I found an interesting set of bugs/features in WordPress – where the assumption is that the default PHP mailer is being used and that the wrong from email is being injected into the PHP mailer function. Messy. Opened for two years now.
This was resolved by using the WP Mail Options plugin to overwrite the mail from field.
End result – all working.
by ezs | Jan 28, 2014 | evilzenscientist, Uncategorized
Early start this morning – head into Seattle to meet a truck and driver delivering a Perceptive Pixel 55” interactive touch screen for an event this evening.
The screen and PC are not too big – but they are fragile and expensive – so the shipping case is enormous! Over 1200 pounds (500kg) of wood, steel, wheels and hardware.
Delivery was an adventure; two hotels with similar sounding names within 100 yards of each other; narrow alleys; rubbish collection; cyclists and bad drivers.

Eventually the box was unloaded and we went for an unescorted trip through the back offices of a large hotel. Guaranteed to get security interested and come find you 😀
by ezs | Jan 19, 2014 | evilzenscientist, Uncategorized
Every time I move blog server I need to tweak PHP settings.
For my own sanity – here are the main ones:
memory_limit = 512MB
max_execution_time = 300
post_max_size = 32M
upload_max_filesize = 512M
Recent Comments