控制节点、网络节点、计算节点:

一、配置源

1.配置EPEL源

yum install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm

2.配置RDO源

yum install http://rdo.fedorapeople.org/openstack-kilo/rdo-release-kilo.rpm

3.升级系统源

yum upgrade

#以下为经注释,均在控制节点操作

二、安装配置数据库

1.安装数据库

yum install mariadb mariadb-server MySQL-python

2.配置数据库

vim /etc/my.cnf.d/mariadb_openstack.cnf
[mysqld]
...
bind-address = 10.0.0.11      #设置管理IP
#设置参数
default-storage-engine = innodb
innodb_file_per_table
collation-server = utf8_general_ci
init-connect = 'SET NAMES utf8'
character-set-server = utf8

3.启动服务,设置开机自启动

systemctl enable mariadb.service
systemctl start mariadb.service

4.初始化数据库

mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here. Enter current password for root (enter for none):
OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation. Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success! By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment. Remove anonymous users? [Y/n] Y
... Success! Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] Y
... Success! By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment. Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success! Reloading the privilege tables will ensure that all changes made so far
will take effect immediately. Reload privilege tables now? [Y/n] Y
... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB
installation should now be secure. Thanks for using MariaDB!

三、安装配置rabbitmq

1.安装rabbitmq

yum install rabbitmq-server

2.启动服务,设置开机自启动

systemctl enable rabbitmq-server.service
systemctl start rabbitmq-server.service

3.Add the openstack user

rabbitmqctl add_user openstack RABBIT_PASS

Replace RABBIT_PASS with a suitable password.

4.Permit configuration, write, and read access for the openstack user

rabbitmqctl set_permissions openstack ".*" ".*" ".*"

最新文章

  1. ASC47B borderless
  2. java-cef系列视频第四集:自定义协议
  3. 用scheme语言实现SPFA算法(单源最短路)
  4. Alt.js的入门
  5. 用wget实现cookie欺骗
  6. 2014 ACM-ICPC Asia Anshan Regional Contest(Online Version)
  7. Going Home(最大匹配km算法)
  8. 【译】ASP.NET MVC 5 教程 - 2:添加控制器
  9. C语言库函数大全及应用实例三
  10. burp的dns记录功能
  11. XMLTABLE
  12. vim不支持鼠标中键拷贝粘贴
  13. 李清华201772020113《面向对象程序设计(Java)》第六周学习总结
  14. 不要使用 JWT 进行会话管理
  15. 在 vs2017 中使用 C# 7 新特性。
  16. 二十一、MVC的WEB框架(Spring MVC)
  17. 【CJOJ2616】 【HZOI 2016】偏序 I(cdq分治,树状数组)
  18. linux服务器管理员的12个有用的命令
  19. python 正则表达式的使用
  20. hdu 5248 贪心

热门文章

  1. fedora25安装和docker-ce_清华源
  2. Android SlidingMenu 使用具体解释
  3. grid 布局一 固定宽度+自适应宽度
  4. JAVA-IO操作,字节-字符转换流
  5. 《深入理解Nginx:模块开发与架构解析》(一)
  6. C语言-编译
  7. 【CODEFORCES】 C. Table Decorations
  8. CF 316div2 E.Pig and Palindromes
  9. Javascript - demo 与 捷径
  10. C++语言基础(6)-const 关键字