歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux技術 >> Oracle VM + centos7.1+openstack kilo 多結點安裝教程

Oracle VM + centos7.1+openstack kilo 多結點安裝教程

日期:2017/3/3 12:53:43   编辑:Linux技術
聲明:最近在進行openstack的kilo版本的安裝,發現現有的網絡教程非常少,而且多數教程並不能安裝成功,故寫此教程。openstack的安裝較為復雜,本教程並不能保證在不同環境下也能將其安裝成功。個人安裝教程,也難免出錯。同時,安裝是在虛擬機環境下,真實安裝環境需要進行更改。
轉載請聲明出處:
作者:張某人ER
原文鏈接:http://blog.csdn.net/xinxing__8185/article/details/51353646


第五部分
neutron的安裝 (3)

在計算節點上的安裝

進行配置
vim /etc/sysctl.conf

net.ipv4.conf.all.rp_filter=0
net.ipv4.conf.default.rp_filter=0
net.bridge.bridge-nf-call-iptables=1
net.bridge.bridge-nf-call-ip6tables=1

執行
sysctl -p

安裝包

yum install openstack-neutron openstack-neutron-ml2 openstack-neutron-openvswitch

進行相關配置文件的修改
vim /etc/neutron/neutron.conf

rpc_backend=rabbit 去掉#號
rabbit_host = controller
rabbit_userid=openstack
rabbit_password =openstack
 
auth_strategy = keystone 去掉#號
在標簽[keystone_authtoken]
修改以下內容:
auth_uri =http://controller:5000 auth_url =http://controller:35357 auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = service
username = neutron
password = neutron #替換NEUTRON_PASS
core_plugin = ml2
service_plugins = router
allow_overlapping_ips = True
[default]
verbose  = True

vim /etc/neutron/plugins/ml2/ml2_conf.ini

type_drivers = flat,vlan,gre,vxlan
tenant_network_types = gre
mechanism_drivers = openvswitch
tunnel_id_ranges=1:1000
 
 
enable_security_group = True
enable_ipset = True
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
添加以下內容(如果沒有)
 
[ovs]
local_ip = INSTANCE_TUNNELS_INTERFACE_IP_ADDRESS
 
[agent]
tunnel_types = gre

啟動

systemctl enable openvswitch.service
systemctl start openvswitch.service

進行相關配置
vim //etc/nova/nova.conf

network_api_class = nova.network.neutronv2.api.API
security_group_api = neutron
linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
firewall_driver = nova.virt.firewall.NoopFirewallDriver
 
在[neutorn]標簽下
url =http://controller:9696 auth_strategy = keystone
admin_auth_url =http://controller:35357/v2.0 admin_tenant_name = service
admin_username = neutron
admin_password = neutron #替換NEUTRON_PASS
 
auth_strategy=keystone

ln -s /etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugin.ini
cp /usr/lib/systemd/system/neutron-openvswitch-agent.service /usr/lib/systemd/system/neutron-openvswitch-agent.service.orig
sed -i 's,plugins/openvswitch/ovs_neutron_plugin.ini,plugin.ini,g' /usr/lib/systemd/system/neutron-openvswitch-agent.service

重新啟動

systemctl restart openstack-nova-compute.service
systemctl enable neutron-openvswitch-agent.service
systemctl start neutron-openvswitch-agent.service

----------------------------------------------------------------------------------------------------------------------
在控制節點上(測試)
source admin-openrc.sh
neutorn agent-list

如果正常,就可以創建初始網絡了。
此教程完。
注:以後的博客中會對安裝過程中遇到的問題進行相關總結。
Copyright © Linux教程網 All Rights Reserved