OpenStackのOコンフィギュレーションバージョンと使用(ii)の

展開のmysql、memcacheの、RabbitMQの

各ノードYUMソース(ソースEPELを削除する)をインストールして構成

[root@linux-host1 ~]# mv /etc/yum.repo.d/* /tmp/
[root@linux-host1 ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@linux-host1 ~]# yum -y install centos-release-openstack-ocata
[root@linux-host1 ~]# yum install python-openstackclient openstack-selinux

MySQL設定サービス

インストールmariadb

[root@linux-host4 ~]# yum install -y mariadb-server

Mariadbは、構成ファイルを変更します

[root@linux-host4 ~]# vim /etc/my.cnf
[client-server]

[mysqld]

socket=/var/lib/mysql/mysql.sock
symbolic-links=0
innodb_file_per_table=1
server_id=1
skip_name_resolve

[client]
port=3306
socket=/var/lib/mysql/mysql.sock

!includedir /etc/my.cnf.d

[root@linux-host4 ~]# vim /etc/my.cnf.d/openstack.cnf
[mysqld]
bind-address = 0.0.0.0 #监听在本机的所有IP地址上
default-storage-engine = innodb
innodb_file_per_table = on
max_connections = 4096
collation-server = utf8_general_ci
character-set-server = utf8

サービスを開始

[root@linux-host4 ~]# systemctl start mariadb
[root@linux-host4 ~]# systemctl enable mariadb

セキュリティ強化

[root@linux-host4 ~]# mysql_secure_installation

memcacheのサービスの設定

memcacheのをインストールします。

[root@linux-host4 ~]# yum -y install memcached

変化プロファイル

[root@linux-host4 ~]# vim /etc/sysconfig/memcached
#监听端口
PORT="11211"
USER="memcached"
#最大使用内存
MAXCONN="1024"
CACHESIZE="1024"
OPTIONS="-l 0.0.0.0,::1"

サービスを開始

[root@linux-host4 ~]# systemctl start memcached.service
[root@linux-host4 ~]# systemctl enable memcached.service

RabbitMQのサービスの設定

ホスト名解決を構成します

[root@linux-host4 ~]# vim /etc/hosts
192.168.8.203 master

RabbitMQのインストール

[root@linux-host4 ~]# yum -y install rabbitmq-server

サービスを開始

[root@linux-host4 ~]# systemctl enable rabbitmq-server.service
[root@linux-host4 ~]# systemctl start rabbitmq-server.service

RabbitMQのクライアントのユーザー名とパスワードを追加します。

[root@linux-host4 ~]# rabbitmqctl add_user openstack 123

OpenStackのは、ユーザーが読み取りと書き込みのアクセス許可を与えます

[root@linux-host4 ~]# rabbitmqctl set_permissions openstack ".*" ".*" ".*"

ウェブプラグインのRabbitMQを開きます。

[root@linux-host4 ~]# rabbitmq-plugins enable rabbitmq_management

表示プラグイン

[root@linux-host4 ~]# rabbitmq-plugins list

アクセスブラウザ

http:192.168.8.230:15672

OpenStackのOコンフィギュレーションバージョンと使用(ii)の
OpenStackのOコンフィギュレーションバージョンと使用(ii)の

おすすめ

転載: blog.51cto.com/14163901/2413524