OpenStack Newton : Keystone 設定#12016/11/15 |
OpenStack Identity Service (Keystone) をインストールします。
|
|
[1] | Keystone をインストールします。(自動起動は無効にしておきます) |
root@dlp:~# echo "manual" > /etc/init/keystone.override root@dlp:~# apt-get -y install keystone python-openstackclient apache2 libapache2-mod-wsgi python-oauth2client
|
[2] | Keystone 用のユーザーとデータベースを MariaDB に登録しておきます。 |
root@dlp:~# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 32 Server version: 10.0.27-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04 Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
create database keystone; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on keystone.* to keystone@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on keystone.* to keystone@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
[3] | Keystone の基本設定です。 |
root@dlp:~#
vi /etc/keystone/keystone.conf # 642行目:変更追記 ( MariaDB に登録したもの ) connection = mysql+pymysql://keystone:password@10.0.0.30/keystone
# 1461行目:Memcache サーバー追記 [memcache]
servers = 10.0.0.30:11211
# 2613行目:追記 [token]
provider = fernet
driver = memcache
root@dlp:~#
su -s /bin/bash keystone -c "keystone-manage db_sync"
# キー初期化 root@dlp:~# keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone root@dlp:~# keystone-manage credential_setup --keystone-user keystone --keystone-group keystone
# 自ホスト(コントローラーホスト)定義 root@dlp:~# export controller=10.0.0.30
# keystone ブートストラップ (adminpassword の箇所は任意の管理者パスワードを設定) root@dlp:~# keystone-manage bootstrap --bootstrap-password adminpassword \ --bootstrap-admin-url http://$controller:35357/v3/ \ --bootstrap-internal-url http://$controller:35357/v3/ \ --bootstrap-public-url http://$controller:5000/v3/ \ --bootstrap-region-id RegionOne |
[4] | Apache httpd の基本設定です。 |
root@dlp:~#
vi /etc/apache2/apache2.conf # 70行目:サーバー名指定 ServerName dlp.srv.world
rm -f /var/lib/keystone/keystone.db root@dlp:~# systemctl restart apache2
|
Sponsored Link |