How to install MAAS

Errors or typos? Topics missing? Hard to read? Let us know.

This page explains how to install MAAS from scratch.

If you’re already running MAAS, it’s probably easier to upgrade. Also note that support for PostgreSQL version 12 is deprecated for MAAS version 3.4, and will be discontinued in MAAS 3.5. We recommend upgrading to PostgreSQL version 14 before installing MAAS 3.4 or higher.

Install from Snap

To install MAAS from a snap:

  1. Check the MAAS installation requirements to make sure that your hardware will support MAAS.

  2. Enter the following command:

    sudo snap install --channel=X.X maas
    

    where “X.X” is the MAAS version you want to install (3.4, 3.3, etc.).

  3. Enter your account password.

At this point, the snap will download and install the chosen version.

Install from packages

To install MAAS from packages:

  1. Check the MAAS installation requirements to make sure that your hardware will support MAAS.

  2. Add the MAAS PPA to your apt repository paths:

    sudo apt-add-repository ppa:maas/X.X
    

    where “X.X” is the MAAS version you want to install (3.4, 3.3, etc).

  3. Update your apt repository lists:

    sudo apt update
    
  4. Install MAAS with the following command:

    sudo apt-get -y install maas
    
  5. Choose “Y” if asked about whether to continue with the install.

Potential NTP conflicts

When installing MAAS on Ubuntu, there can be conflicts between the existing NTP client, systemd-timesyncd, and the NTP client/server provided by MAAS, chrony. This can lead to time synchronisation issues, especially if MAAS is configured with different upstream NTP servers than the ones used by systemd-timesyncd. To avoid conflicts, users can manually disable and stop systemd-timesyncd using the following command:

sudo systemctl disable --now systemd-timesyncd

Also note that support for PostgreSQL 12 has been deprecated in MAAS 3.3 and will be discontinued in MAAS 3.5.

POC configuration (Snap only)

There is a proof-of-concept configuration defined for the MAAS Snap version. To initialise the MAAS snap in this POC configuration, simply use the --help flag with maas init and follow the instructions.

Production configuration

To install MAAS in a production configuration:

  1. Install PostgreSQL on any machine where you want to keep the database with the following commands:

    sudo apt update -y
    sudo apt install -y postgresql
    
  2. Create desired values for the following variables (replace them in the commands below):

    $MAAS_DBUSER = ___________
    $MAAS_DBPASS = ___________
    $MAAS_DBNAME = ___________
    $HOSTNAME = _________
    

Note that for most situations, you can use localhost for $HOSTNAME.

  1. Create a suitable PostgreSQL user:

    sudo -i -u postgres psql -c "CREATE USER \"$MAAS_DBUSER\" WITH ENCRYPTED PASSWORD '$MAAS_DBPASS'"
    
  2. Create the MAAS database:

    sudo -i -u postgres createdb -O "$MAAS_DBUSER" "$MAAS_DBNAME"
    
  3. Edit /etc/postgresql/14/main/pg_hba.conf and add a line for the newly created database:

    host    $MAAS_DBNAME    $MAAS_DBUSER    0/0     md5
    
  4. Initialise MAAS via the following command:

    sudo maas init region+rack --database-uri "postgres://$MAAS_DBUSER:$MAAS_DBPASS@$HOSTNAME/$MAAS_DBNAME"
    

Distributed environment (packages only)

You can set up a distributed environment when you install with MAAS packages. To run MAAS region and rack controllers on separate machines:

  1. Check the MAAS installation requirements to make sure that your hardware will support MAAS.

  2. Add the MAAS PPA to your apt repository paths on both region and rack target hosts:

    sudo apt-add-repository ppa:maas/X.X
    

    where “X.X” is the MAAS version you want to install.

  3. Update your apt repository lists on both region and rack hosts:

    sudo apt update
    
  4. Install the MAAS region controller on the target region host:

    sudo apt install maas-region-controller
    
  5. Install the MAAS rack controller on the target rack host:

    sudo apt install maas-rack-controller
    
  6. Register the rack controller with the region controller by running the following command on the rack host:

    sudo maas-rack register
    

These two steps will lead you through two similar apt install sequences.

Create an admin user

To create a MAAS administrative user:

  1. Create a MAAS administrator user to access the web UI:

    sudo maas createadmin --username=$PROFILE --email=$EMAIL_ADDRESS
    

    Substitute $PROFILE with the administrative MAAS username you wish to create. $EMAIL_ADDRESS is an email address you may type in at random (currently, MAAS does not use this email address). The createadmin option will cause MAAS to ask for an SSH key.

  2. To use an SSH key associated with your launchpad accounts, enter lp:$USERNAME (substitute your LP username for $USERNAME).

  3. Alternatively, to use an SSH key associated with your github account, enter gh:$USERNAME (substitute your github username for $USERNAME)

Check MAAS status

To check the status of running services, enter:

sudo maas status

Typical output looks like this:

bind9                            RUNNING   pid 7999, uptime 0:09:17
dhcpd                            STOPPED   Not started
dhcpd6                           STOPPED   Not started
ntp                              RUNNING   pid 8598, uptime 0:05:42
postgresql                       RUNNING   pid 8001, uptime 0:09:17
proxy                            STOPPED   Not started
rackd                            RUNNING   pid 8000, uptime 0:09:17
regiond:regiond-0                RUNNING   pid 8003, uptime 0:09:17
regiond:regiond-1                RUNNING   pid 8008, uptime 0:09:17
regiond:regiond-2                RUNNING   pid 8005, uptime 0:09:17
regiond:regiond-3                RUNNING   pid 8015, uptime 0:09:17
tgt                              RUNNING   pid 8040, uptime 0:09:15

Your mileage may vary.

More init options

The init command can takes optional arguments. To list them, as well as read a brief description of each, you can enter:

sudo maas init --help

Configure MAAS with the UI

To configure MAAS for first-time use with the MAAS UI:

  1. Access MAAS at this address, where $API_HOST is the hostname or IP address of the region API server, which was set during installation:

    http://${API_HOST}:5240/MAAS
    
  2. Log in at the prompts, with the login information you created when initialising MAAS.

  3. On the first welcome screen, set the DNS forwarder to a suitable value, e.g., 8.8.8.8. This could be your own internal DNS server, if you have one.

  4. Select an Ubuntu image to import; you may be required to select at least one LTS version.

  5. Click Continue; a screen labelled, “SSH keys for admin:” appears.

  6. In the Source drop-down, select “Launchpad,” “Github,” or “Upload.”

  7. If you want to upload your SSH public key from Launchpad, you would enter the following, where <username> is your Launchpad username:

    lp:<username>
    
  8. If you want to upload your github public SSH key, you would enter the following, where <username> is your GitHub username:

    gh:<username>
    
  9. If you want to use your existing public key from your home directory, select Upload.

  10. Copy your entire public key from .ssh/id_rsa.pub (or wherever you may have stored the key).

  11. Paste the public key into the block labelled “Public key.”

  12. Press the “Import” button to import this key.

  13. You should see a message that MAAS has been successfully set up. Click Go to the Dashboard to proceed.

  14. Select Subnets from the top menu.

  15. Choose the VLAN on which you want to enable DHCP.

  16. Select Enable DHCP.

You should now be able to add, commission, and deploy machines.

Configure MAAS with the CLI

Login to the MAAS CLI via the following process:

  1. Generate the API-key for the login you’re going to use, replacing $PROFILE with whatever username you set during the createadmin part of the install process.

    sudo maas apikey --username=$PROFILE > api-key-file
    
  2. Login with the following command, substituting $MAAS_URL with the URL that was returned to you when you initialised MAAS, for example, 192.168.43.251:5240/MAAS. :

    maas login $PROFILE $MAAS_URL < (cat api-key-file) 
    
  3. Set upstream DNS (8.8.8.8 is always a reliable value):

    maas $PROFILE maas set-config name=upstream_dns value="8.8.8.8"
    
  4. Add a public SSH key to a MAAS user account:

    maas $PROFILE sshkeys create "key=$SSH_KEY"
    
  5. See what images you may have already downloaded:

    maas $PROFILE boot-resources read | jq -r '.[] | "\(.name)\t\(.architecture)"'
    
  6. Select an image(s) for download (e.g., “trusty” in this example):

    maas $PROFILE boot-source-selections create 1 os="ubuntu" release="trusty" arches="amd64" subarches="*"  labels="*"
    
  7. Import your selected image(s):

    maas admin boot-resources import
    
  8. Identify a valid fabric ID for DHCP (returns "fabric_id": $FABRIC_ID,):

    maas $PROFILE subnet read $SUBNET_CIDR | grep fabric_id
    
  9. Find the name of the primary rack controller:

    maas $PROFILE rack-controllers read | grep hostname | cut -d '"' -f 4
    
  10. Create an IP range for DHCP (in this case, a dynamic range):

    maas $PROFILE ipranges create type=dynamic start_ip=$START_IP end_ip=$END_IP
    
  11. Use this collected information to turn on DHCP:

    maas $PROFILE vlan update $FABRIC_ID untagged dhcp_on=True primary_rack=$RACK_CONTR_HOSTNAME
    

You should now be able to add, commission, and deploy machines.

On Ubuntu 20.04, postgresql is version 12 so this path doesn’t exist.

1 Like

thanks for reading so closely. kudos for catching this.

I think this should be --database-uri maas-test-db:///

Maybe in the following paragraph, we could mention that gh stands for github, and this should be and existing github username from which ssh keys would be imported, e.g. gh:your-github-username

hiiiii! Sorry to bump an old topic, but I uh… was testing out the install with the maas-test-db instructions. After running the sudo maas init region+rack --database-uri maas-test-db:/// command and confirming the MAAS URL, I realized I probably didn’t want to use the default IP of the KVM machine I’m running in (as it doesn’t have a guaranteed address since this is a test environment) and hit ctrl+c.

This led to a borked install and some interesting errors (no stdout after the init command finished, running maas createadmin led to a weird error, etc). I figured out that I needed to remove/reinstall the maas-test-db snap, but it might be worth noting on the page how to get back to a ‘clean install’ for similarly indecisive individuals such as myself.

1 Like

lol. good point. got some suggested text? we crowdsource doc when we can…

1 Like

How about something like… (assuming that I’m correct in that the database needs to be sandblasted away):

How to uninstall/revert to a clean install

If something goes wrong during the installation process, it might be necessary to return to a clean state before proceeding with the tutorial. As MAAS stores configuration information in database, the DB must be cleaned up.

If you used the maas-test-db snap, it’s as simple as uninstalling and reinstalling the snap:

  1. sudo snap remove maas-test-db
  2. sudo snap install maas-test-db

Since I have no idea yet what is actually stored in the database, I have no idea what you’d need to remove if you configured it with a stand alone install hah! But.

1 Like

nice. that’s a great starting point for the test version, and I see ways to do something similar for the production version, too. lemme play with this and come back to see if i’ve captured your thoughts adequately! :slight_smile:

1 Like

Yay! That’s awesome!

I know this isn’t the place to suggest it, but I wonder if maas could be configured to capture ctrl-c events and print back that stopping now may lead to an inconsistent state, etc, and to hit ctrl-c again to confirm killing the process… I should figure out where to go make that suggestion, hah.

heh. there’s a doc for that!

1 Like

The documentation for package installation of MAAS suggests adding “ppa:maas/3.3-next”, but that repo is for beta builds of MAAS. Shouldn’t people be using “ppa:maas/3.3” instead for normal (non-developmental) installs?

Hello,

Maybe I’m missing a point but, when installing MAAS 3.2+ with PGSQL14 appears to be having some problems.

When I edit like you did :

with :

When I init the cluster I get a :

sudo maas init region+rack --database-uri “postgres://$MAAS_DBUSER:$MAAS_DBPASS@$HOSTNAME/$MAAS_DBNAME”
MAAS URL [default=http://172.16.XX.YY:5240/MAAS]:
Failed to perfom migrations:ations
Traceback (most recent call last):
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/base/base.py”, line 217, in ensure_connection
self.connect()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/base/base.py”, line 195, in connect
self.connection = self.get_new_connection(conn_params)
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/postgresql/base.py”, line 178, in get_new_connection
connection = Database.connect(**conn_params)
File “/snap/maas/26274/usr/lib/python3/dist-packages/psycopg2/init.py”, line 126, in connect
conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
psycopg2.OperationalError: could not connect to server: Connection refused
Is the server running on host “172.16.XX.YY” and accepting
TCP/IP connections on port 5432?

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File “/snap/maas/26274/bin/maas-region”, line 8, in
sys.exit(run())
File “/snap/maas/26274/lib/python3.8/site-packages/maasserver/region_script.py”, line 77, in run
run_django(is_snap, is_devenv)
File “/snap/maas/26274/lib/python3.8/site-packages/maasserver/region_script.py”, line 66, in run_django
management.execute_from_command_line()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/core/management/init.py”, line 381, in execute_from_command_line
utility.execute()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/core/management/init.py”, line 375, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/core/management/base.py”, line 323, in run_from_argv
self.execute(*args, **cmd_options)
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/core/management/base.py”, line 364, in execute
output = self.handle(*args, **options)
File “/snap/maas/26274/lib/python3.8/site-packages/maasserver/management/commands/dbupgrade.py”, line 107, in handle
conn.ensure_connection()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/base/base.py”, line 217, in ensure_connection
self.connect()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/utils.py”, line 89, in exit
raise dj_exc_value.with_traceback(traceback) from exc_value
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/base/base.py”, line 217, in ensure_connection
self.connect()
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/base/base.py”, line 195, in connect
self.connection = self.get_new_connection(conn_params)
File “/snap/maas/26274/usr/lib/python3/dist-packages/django/db/backends/postgresql/base.py”, line 178, in get_new_connection
connection = Database.connect(**conn_params)
File “/snap/maas/26274/usr/lib/python3/dist-packages/psycopg2/init.py”, line 126, in connect
conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
django.db.utils.OperationalError: could not connect to server: Connection refused
Is the server running on host “172.16.XX.YY” and accepting
TCP/IP connections on port 5432?

My workaround was :
Edit pg_hba.conf
host $MAAS_DBNAME $MAAS_DBUSER 172.16.XX.YY/ZZ md5
And postgresql.conf
listen_addresses = '*'

And restarting postgresql service.

Hello,

On the documentation page, when you select: v3.4 Snap, it tells you to sudo snap install --channel=latest/edge maas, which will bring the wrong version (3.5.0~alpha1-14457-g.c9d08507b).

I think that the correct one should be snap install maas --channel=3.4/beta.

Cheers!

THanks @tmartins. It also looks like the latest docs page has the “How to Configure MaaS” section at the bottom completely missing… THe only place I can find docs on this are on the 3.4 announcement page: https://maas.io/docs/what-is-new-with-maas-3-4. Anyone know the right place for the docs for 3.4 beta?

EDIT: After much head scratching, I now believe that THE OP IN THIS THREAD IS THE LATEST DOCUMENTATION FOR 3.4-BETA.

image

This should be “maas $PROFILE” and not “maas admin”.

Hi there, it seems that the maas packages where not published to the ppa for the version 3.4, https://ppa.launchpadcontent.net/maas/3.4/ubuntu/pool/main/

there is no maas package which make it impossible to install it over debian package.

Hi @erickeller

MAAS 3.4 is not released yet. We expect to release it in the next weeks or so.

1 Like
  1. The second line here appears to merely be a typo :slight_smile:

Go to custom anchor

Should be more like

[Install MAAS](link)

  1. In the “Distributed env (Deb)” section a useful step is given:

Add the MAAS 3.3 PPA to your apt repository paths on both region and rack target hosts:

It’s probably better to specify “Add the MAAS PPA for the version of MAAS you want” and anchor that to the install section above. Speaking of which, wouldn’t it be better to break it up into two sections, “Install snap” and “Install deb”, and then have each version be a subsection? But since the instructions are largely aligned independent of version, maybe just make it one section each with snap install --channel=${x.y} maas and sudo apt-add-repository ppa:maas/${x.y}
It would make the top-of-page index more readable, I think.

  1. Wording in “Create an admin” is a bit confusing

Substitute $PROFILE is the administrative MAAS username you wish to create.

Axe substitute and replace $PROFILE with one of $LOGNAME, $USER or $USERNAME.
The numbering scheme also seems to indicate that each of the three points are different steps which must be undertaken to create an admin, but (2) and (3) appear to just be modifications on the command given in (1). Perhaps they should be notes or added to the explanation of $PROFILE?

  1. Nit on user SSH key location:

Copy your entire public key from .ssh/id_rsa.pub

Maybe make it ~/.ssh/id_{scheme}.pub

The init command is not correct. At least not for the .deb install. I haven’t tried the others.

$ sudo maas init region+rack --database-uri "postgres://$MAAS_DBUSER:$MAAS_DBPASS@$HOSTNAME/$MAAS_DBNAME"
usage: maas [-h] COMMAND ...

options:
  -h, --help      show this help message and exit

drill down:
  COMMAND
    login         Log in to a remote API, and remember its description and credentials.
    logout        Log out of a remote API, purging any stored credentials.
    list          List remote APIs that have been logged-in to.
    refresh       Refresh the API descriptions of all profiles.
    init          Initialize controller.
    apikey        Used to manage a user's API keys. Shows existing keys unless --generate or
                  --delete is passed.
    configauth    Configure external authentication.
    config-tls    Configure MAAS Region TLS.
    config-vault  Configure MAAS Region Vault integration.
    createadmin   Create a MAAS administrator account.
    changepassword
                  Change a MAAS user's password.

https://maas.io/

sudo maas init region+rack --database-uri "postgres://$MAAS_DBUSER:$MAAS_DBPASS@$HOSTNAME/$MAAS_DBNAME"
usage: maas [-h] COMMAND ...

options:
  -h, --help      show this help message and exit

drill down:
  COMMAND
    login         Log in to a remote API, and remember its description and credentials.
    logout        Log out of a remote API, purging any stored credentials.
    list          List remote APIs that have been logged-in to.
    refresh       Refresh the API descriptions of all profiles.
    init          Initialize controller.
    apikey        Used to manage a user's API keys. Shows existing keys unless --generate or
                  --delete is passed.
    configauth    Configure external authentication.
    config-tls    Configure MAAS Region TLS.
    config-vault  Configure MAAS Region Vault integration.
    createadmin   Create a MAAS administrator account.
    changepassword
                  Change a MAAS user's password.

https://maas.io/

unrecognized arguments: region+rack --database-uri postgres://<redacted>

1 Like