Our new server is now online - a little later than expected -
and we're once again accepting new customers.
Existing customers that were looking to upgrade but we're stuck
waiting for the new server are now also able to upgrade; if you
can't immediately change your plan via mPanel please contact
support so we can assist you.
We apologise for the delay in making this happen! We were - so
we thought - well prepared for the release of this new server; it
had been happily sitting in the rack and had passed all our usual
tests. However, as soon as we started moving it into production, we
noticed some major stability problems when moving VPS guests back
and forth.
After double checking the hardware again we were able to rule
most of that out, and then started looking more closely at the
exact nature of the fault. In the end, it turned out to be a
low-level problem with how we zeroed the disks before VPS
installation - something would trip up resulting in a kernel
panic.
Fortunately the resolution for this was relatively simple - just
a minor change to how the disk zeroing process is handled. For
those interested in the gory details, we changed:
dd if=/dev/zero bs=1M count=5k of=/dev/storage/customer_disk
to:
dd if=/dev/zero bs=1M count=5k of=/dev/storage/customer_disk
oflag=direct
So if you're seeing weird crashes or kernel panics when trying
to zero disks... this could be why!