openstack Queens版本在centos7.1,最小化安装(安装neutron(控制节点))

本文主要是介绍openstack Queens版本在centos7.1,最小化安装(安装neutron(控制节点)),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Hosts

10.0.2.111        con01controller

10.0.2.112        com01compute1

确保这网络OK

ping -c 4 openstack.org

ping -c 4 compute1

ping -c 4 controller

 

 

在数据库中创建neutron库和用户并授权

[root@con01~]# mysql -u root -ptest.2018

Welcometo the MariaDB monitor.  Commands endwith ; or \g.

YourMariaDB connection id is 84

Serverversion: 10.1.20-MariaDB MariaDB Server

 

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 neutron;

QueryOK, 1 row affected (0.00 sec)

 

MariaDB[(none)]> GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'localhost' \

    ->  IDENTIFIED BY 'test.2018';

QueryOK, 0 rows affected (0.00 sec)

 

MariaDB[(none)]> GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'%' \

    ->  IDENTIFIED BY 'test.2018';

QueryOK, 0 rows affected (0.00 sec)

 

**********************************************************************

创建neutron用户:

openstackuser create --domain default --password-prompt neutron

openstackrole add --project service --user neutron admin

 

 

 

创建服务与api

[root@con01~]# openstack service create --name neutron \

>   --description "OpenStackNetworking" network

+-------------+----------------------------------+

|Field       | Value                            |

+-------------+----------------------------------+

|description | OpenStack Networking            |

|enabled     | True                             |

|id          |f5bb4e56bc0a4deaa50b3cf8bb4165f3 |

|name        | neutron                          |

|type        | network                          |

+-------------+----------------------------------+

[root@con01~]# openstack endpoint create --region RegionOne \

>   network public http://controller:9696

+--------------+----------------------------------+

|Field        | Value                            |

+--------------+----------------------------------+

|enabled      | True                             |

|id           |26ff4ce01e83480496f6b6752e32bcb3 |

|interface    | public                           |

|region       | RegionOne                        |

|region_id    | RegionOne                        |

|service_id   |f5bb4e56bc0a4deaa50b3cf8bb4165f3 |

|service_name | neutron                         |

|service_type | network                         |

|url          | http://controller:9696           |

+--------------+----------------------------------+

You havenew mail in /var/spool/mail/root

[root@con01~]# openstack endpoint create --region RegionOne \

>   network internal http://controller:9696

+--------------+----------------------------------+

|Field        | Value                            |

+--------------+----------------------------------+

|enabled      | True                             |

|id           |2aa85f5cf819487b88ef588b30f743ed |

|interface    | internal                         |

|region       | RegionOne                        |

|region_id    | RegionOne                        |

|service_id   |f5bb4e56bc0a4deaa50b3cf8bb4165f3 |

|service_name | neutron                         |

|service_type | network                         |

|url          | http://controller:9696           |

+--------------+----------------------------------+

[root@con01~]# openstack endpoint create --region RegionOne \

>   network admin http://controller:9696

+--------------+----------------------------------+

|Field        | Value                            |

+--------------+----------------------------------+

|enabled      | True                             |

|id           |aec5b36549514179af0e4262de123a44 |

|interface    | admin                            |

|region       | RegionOne                        |

|region_id    | RegionOne                        |

|service_id   |f5bb4e56bc0a4deaa50b3cf8bb4165f3 |

|service_name | neutron                         |

|service_type | network                         |

|url          | http://controller:9696           |

+--------------+----------------------------------+

**********************************************************************

 

安装

使用vxlan网络模式

 yum installopenstack-neutron openstack-neutron-ml2 \
 
openstack-neutron-linuxbridge ebtables -y

 

修改配置文件

 

[root@con01~]# cat /etc/neutron/neutron.conf

[DEFAULT]

core_plugin= ml2

service_plugins= router

allow_overlapping_ips= true

transport_url= rabbit://openstack:test.2018@controller

auth_strategy= keystone

notify_nova_on_port_status_changes= true

notify_nova_on_port_data_changes= true

 

 

[database]

connection= mysql+pymysql://neutron:test.2018@controller/neutron

 

 

[keystone_authtoken]

# ...

auth_uri= http://controller:5000

auth_url= http://controller:35357

memcached_servers= controller:11211

auth_type= password

project_domain_name= default

user_domain_name= default

project_name= service

username= neutron

password= test.2018

 

[nova]

# ...

auth_url= http://controller:35357

auth_type= password

project_domain_name= default

user_domain_name= default

region_name= RegionOne

project_name= service

username= nova

password= test.2018

 

 

[oslo_concurrency]

# ...

lock_path= /var/lib/neutron/tmp

**********************************************************************

 

Vim/etc/neutron/plugins/ml2/ml2_conf.ini  修改以下的内容

[ml2]

type_drivers= flat,vlan,vxlan

tenant_network_types= vxlan

mechanism_drivers= linuxbridge,l2population

extension_drivers= port_security

 

[ml2_type_flat]

flat_networks= provider

 

[ml2_type_vxlan]

vni_ranges= 1:1000

 

[securitygroup]

enable_ipset= true

 

 

**********************************************************************

 

配置Linux网桥代理

修改配置文件

/etc/neutron/plugins/ml2/linuxbridge_agent.ini

 

[linux_bridge]

physical_interface_mappings= provider:eno16777736

 

[securitygroup]

firewall_driver= neutron.agent.linux.iptables_firewall.IptablesFirewallDriver

enable_security_group= true

 

[vxlan]

enable_vxlan= true

local_ip= 10.0.2.111

l2_population= true

 

 

 

确保值为1

[root@con01~]# sysctl -a |grep net.bridge.bridge-nf-call-iptables

net.bridge.bridge-nf-call-iptables= 1

[root@con01~]# sysctl -a |grep net.bridge.bridge-nf-call-ip6tables

net.bridge.bridge-nf-call-ip6tables= 1

 

**********************************************************************

配置第3层代理

vim/etc/neutron/l3_agent.ini

[DEFAULT]

interface_driver= linuxbridge

 

**********************************************************************

配置DHCP代理

/etc/neutron/dhcp_agent.ini

[DEFAULT]
# ...
interface_driver=linuxbridge
dhcp_driver=neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata=true

 

 

 

**********************************************************************

配置元数据代理

Vim  /etc/neutron/metadata_agent.ini

[DEFAULT]
# ...
nova_metadata_host=controller
metadata_proxy_shared_secret=METADATA_SECRET

 

 

**********************************************************************

配置Compute服务以使用网络服务

 

在控制节点中配置(新加入)

Vim /etc/nova/nova.conf

[neutron]

url = http://controller:9696

auth_url= http://controller:35357

auth_type= password

project_domain_name= default

user_domain_name= default

region_name= RegionOne

project_name= service

username= neutron

password= test.2018

service_metadata_proxy= true

metadata_proxy_shared_secret= METADATA_SECRET

**********************************************************************

 

 

完成安装

1.  # ln -s/etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugin.ini

2.       初始化数据库

su -s /bin/sh -c "neutron-db-manage --config-file/etc/neutron/neutron.conf \
  --config-file/etc/neutron/plugins/ml2/ml2_conf.ini upgrade head" neutron

 

 

重启nova-api

[root@controller~]# systemctl restart openstack-nova-api.service

 

 

启动服务

 

# systemctl enable neutron-server.service \
 
neutron-linuxbridge-agent.serviceneutron-dhcp-agent.service \
 
neutron-metadata-agent.service
# systemctl restart neutron-server.service \
 
neutron-linuxbridge-agent.serviceneutron-dhcp-agent.service \
 
neutron-metadata-agent.service

 


这篇关于openstack Queens版本在centos7.1,最小化安装(安装neutron(控制节点))的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/626104

相关文章

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

IDEA如何切换数据库版本mysql5或mysql8

《IDEA如何切换数据库版本mysql5或mysql8》本文介绍了如何将IntelliJIDEA从MySQL5切换到MySQL8的详细步骤,包括下载MySQL8、安装、配置、停止旧服务、启动新服务以及... 目录问题描述解决方案第一步第二步第三步第四步第五步总结问题描述最近想开发一个新应用,想使用mysq

java脚本使用不同版本jdk的说明介绍

《java脚本使用不同版本jdk的说明介绍》本文介绍了在Java中执行JavaScript脚本的几种方式,包括使用ScriptEngine、Nashorn和GraalVM,ScriptEngine适用... 目录Java脚本使用不同版本jdk的说明1.使用ScriptEngine执行javascript2.

龙蜥操作系统Anolis OS-23.x安装配置图解教程(保姆级)

《龙蜥操作系统AnolisOS-23.x安装配置图解教程(保姆级)》:本文主要介绍了安装和配置AnolisOS23.2系统,包括分区、软件选择、设置root密码、网络配置、主机名设置和禁用SELinux的步骤,详细内容请阅读本文,希望能对你有所帮助... ‌AnolisOS‌是由阿里云推出的开源操作系统,旨

Ubuntu系统怎么安装Warp? 新一代AI 终端神器安装使用方法

《Ubuntu系统怎么安装Warp?新一代AI终端神器安装使用方法》Warp是一款使用Rust开发的现代化AI终端工具,该怎么再Ubuntu系统中安装使用呢?下面我们就来看看详细教程... Warp Terminal 是一款使用 Rust 开发的现代化「AI 终端」工具。最初它只支持 MACOS,但在 20

mysql-8.0.30压缩包版安装和配置MySQL环境过程

《mysql-8.0.30压缩包版安装和配置MySQL环境过程》该文章介绍了如何在Windows系统中下载、安装和配置MySQL数据库,包括下载地址、解压文件、创建和配置my.ini文件、设置环境变量... 目录压缩包安装配置下载配置环境变量下载和初始化总结压缩包安装配置下载下载地址:https://d

Debian如何查看系统版本? 7种轻松查看Debian版本信息的实用方法

《Debian如何查看系统版本?7种轻松查看Debian版本信息的实用方法》Debian是一个广泛使用的Linux发行版,用户有时需要查看其版本信息以进行系统管理、故障排除或兼容性检查,在Debia... 作为最受欢迎的 linux 发行版之一,Debian 的版本信息在日常使用和系统维护中起着至关重要的作

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对

Linux(Centos7)安装Mysql/Redis/MinIO方式

《Linux(Centos7)安装Mysql/Redis/MinIO方式》文章总结:介绍了如何安装MySQL和Redis,以及如何配置它们为开机自启,还详细讲解了如何安装MinIO,包括配置Syste... 目录安装mysql安装Redis安装MinIO总结安装Mysql安装Redis搜索Red

python安装完成后可以进行的后续步骤和注意事项小结

《python安装完成后可以进行的后续步骤和注意事项小结》本文详细介绍了安装Python3后的后续步骤,包括验证安装、配置环境、安装包、创建和运行脚本,以及使用虚拟环境,还强调了注意事项,如系统更新、... 目录验证安装配置环境(可选)安装python包创建和运行Python脚本虚拟环境(可选)注意事项安装