您的位置:首页 > 运维架构

OpenStack O版配置以及使用(二)

2019-06-25 21:50 1716 查看

部署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 的 web 插件

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

查看插件

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

用浏览器访问

http:192.168.8.230:15672


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: