February 2018
Beginner
290 pages
7h 28m
English
Let's take a look at the default local.conf file that is copied from the samples. In the following snippet, I have removed the comments, however, please look at the full file as the comments show several different configuration options:
alokshrivastwa@instance-1:/devstack$ cat local.conf | grep -v "#" | grep -v "^$" [[local|localrc]] ADMIN_PASSWORD=nomoresecret DATABASE_PASSWORD=stackdb RABBIT_PASSWORD=stackqueue SERVICE_PASSWORD=$ADMIN_PASSWORD LOGFILE=$DEST/logs/stack.sh.log LOGDAYS=2 SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f5 SWIFT_REPLICAS=1 SWIFT_DATA_DIR=$DEST/data
We can see that we can set the database password, the AMQP (RabbitMQ) password, and so on. In this file, we will install the Heat project. ...
Read now
Unlock full access