This article is using Ubuntu 13.10 (Saucy) as a base install. One of the issues with using OpenCompute nodes is the fact that it is headless. One of the issues that generally comes up with all tools, being it Cobler, Mirantis, or MAAS, is that the pxe config is not setup to actually show the serial information. While playing with Ubuntu MAAS, I did figure out a way to redirect the console to serial to be viewed of SOL.
The first step is to install MAAS following the directions that are posted. In this case I actually installed MAAS on a non-OpenCompute platform, in this case a laptop that I generally use as the controller. The reasoning is that I don’t want to waste a power OpenCompute node on what can easily be ran on a basic computer.
We are going to need to modify the templates that are located at /etc/maas/templates/pxe so that we can setup the bootloader and the kernel params so everything gets redirected to console. If this is not setup, the lat thing you should see before funky characters would be:
Loading amd64/generic/saucy/xinstall/linux........ Loading amd64/generic/saucy/xinstall/initrd.gz.......................
We first will need to setup the boot loader on each image to redirect to the console. This can be done by:
# cd /etc/maas/templates/pxe/ # sed -i '1iSERIAL 0 115200n8' config.commissioning.template # sed -i '1iSERIAL 0 115200n8' config.install.template # sed -i '1iSERIAL 0 115200n8' config.local.amd64.template # sed -i '1iSERIAL 0 115200n8' config.local.i386.template # sed -i '1iSERIAL 0 115200n8' config.local.template # sed -i '1iSERIAL 0 115200n8' config.xinstall.template
The second piece we have to fix then is having the kernel direct to console also. This is good for when MAAS does the automated install. This step is easier and what you need to do is go to the MAAS webpage, click on the gear on the top left, and scroll down to the “Global Kernel Parameters” section. Add “console=tty0 console=ttyS4,115200n8” in the text box and click the “Save” button.