SQL database for SUSE¶
Most OpenStack services use an SQL database to store information. The database typically runs on the controller node. The procedures in this guide use MariaDB or MySQL depending on the distribution. OpenStack services also support other SQL databases including PostgreSQL.
コンポーネントのインストールと設定¶
パッケージをインストールします。
# zypper install mariadb-client mariadb python-PyMySQL
ファイル
/etc/my.cnf.d/openstack.cnf
を作成、編集し、以下の作業をすべて行います。[mysqld]
セクションを作成して、bind-address
にコントローラーノードの管理 IP アドレスを設定して、管理ネットワーク経由で他のノードによりアクセスできるようにします。その他、有用なオプションや UTF-8 文字セットを有効化するためのキーを設定します。[mysqld] bind-address = 10.0.0.11 default-storage-engine = innodb innodb_file_per_table = on max_connections = 4096 collation-server = utf8_general_ci character-set-server = utf8
インストールの最終作業¶
データベースサービスを起動し、システム起動時に自動的に起動するよう設定します。
# systemctl enable mysql.service # systemctl start mysql.service
mysql_secure_installation
スクリプトを実行して、データベースサービスの安全性を向上します。特に、データベースのroot
アカウントに適切なパスワードを選択します。# mysql_secure_installation