Preparing to install the management server on zCX
Task | Action | Reference |
---|---|---|
1 | Make sure that the management server requirements are satisfied. To display the allocated disk space, use the following command: | |
2 | Obtain the installation files and license key. | |
3 | Configure zCX | |
4 | Installing Docker |
Obtaining the installation files and license key
Use the following procedure to obtain the installation files and a license key:
Go toElectronic Product Distribution (EPD) and log in.
- Using the search bar, search for either BMC AMI Cloud Data or BMC AMI Cloud Vault. Both product files are composed with the same binaries.
- Click the version that you want to download.
- On the Product tab, select the files and click Download.
- Select the License Information tab to download the temporary license key.
To obtain a full license key, go toSupport Central and select Case Management.
Open a license key request by clicking on Create New Case and filling in the required information.
Configuring zCX
- Verify that the zCX instance has at least 8 GB of memory.
Verify zCX container disk space:
- Verify that the zCX ROOT file system has at least 8 GB of storage space.
- Verify that the zCX DATA file system has at least 40 GB of storage space. You can add extra data volumes after instance creation.
You can use the following operator command to display the allocated disk space
MODIFY container_name,DISPLAY,DISK
Installing Docker
Create docker volumes for the BMC AMI Cloud management server and database:
docker volume create model9
docker volume create model9db
docker volume create model9db_initdbCreate a docker instance of Alpine Linux to unzip and edit the installation files.
# Running an alpine container and mounting the model9 docker volume
docker run -d --rm --name dummy \
-v model9:/root \
-v model9db_initdb:/docker-entrypoint-initdb.d \
s390x/alpine tail -f /dev/null- Upload the s390x installation zip to the zCX instance using scp or any other tool in binary mode.
Copy the s390x installation zip from the zCX instance to the Alpine container (one line):
docker cp model9-v2.8.2_build_ebcddfb-server-s390x.zip dummy:/root/model9-v2.8.2_build_ebcddfb-server-s390x.zip
Where to go from here