MAAS: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 3: Line 3:


==PostgreSQL==
==PostgreSQL==
----
<source lang="bash">
<source lang="bash">
sudo apt install postgresql postgresql-contrib
sudo apt install postgresql postgresql-contrib
Line 10: Line 9:
sudo systemctl start  postgresql
sudo systemctl start  postgresql
sudo systemctl daemon-reload
sudo systemctl daemon-reload
</source>
<source lang="bash">
sudo -i -u postgres bash << EOF
createuser ${USER}
createdb  ${USER}
cat << DDL | psql
ALTER USER ${USER} WITH SUPERUSER;
DDL
EOF
</source>
</source>



Revision as of 19:05, 16 March 2023

sudo snap install maas --channel=3.3/stable
sudo snap install maas

PostgreSQL

sudo apt install postgresql postgresql-contrib
sudo systemctl enable postgresql
sudo systemctl status postgresql
sudo systemctl start  postgresql
sudo systemctl daemon-reload
sudo -i -u postgres bash << EOF
createuser ${USER}
createdb   ${USER}
cat << DDL | psql
ALTER USER ${USER} WITH SUPERUSER;
DDL
EOF
sudo -i -u postgres psql << DDL
CREATE USER ${MAAS_DBUSER} WITH ENCRYPTED PASSWORD '${MAAS_DBPASS}'
DDL
sudo -i -u postgres bash << EOF
createdb -O ${MAAS_DBUSER} ${MAAS_DBNAME}
EOF

Knowledge

install:
sudo snap install maas --channel=3.3
upgrade:
sudo snap refresh maas --channel=3.3
sudo snap install maas-test-db
sudo maas-test-db.psql

sudo maas init --help

References