zoukankan      html  css  js  c++  java
  • ##6.2 Neutron计算节点-- openstack pike

    ##6.2 Neutron计算节点

      openstack pike 安装 目录汇总 http://www.cnblogs.com/elvi/p/7613861.html

    ##6.2 Neutron计算节点
    #6.2.Neutron.compute.sh
    
    #安装
    yum install -y openstack-neutron-linuxbridge ebtables ipset
    
    #配置
    cp /etc/neutron/neutron.conf{,.bak}
    echo '#
    [DEFAULT]
    auth_strategy = keystone
    transport_url = rabbit://openstack:openstack@controller
    
    [keystone_authtoken]
    auth_uri = http://controller:5000
    auth_url = http://controller:35357
    memcached_servers = controller:11211
    auth_type = password
    project_domain_id = default
    user_domain_id = default
    project_name = service
    username = neutron
    password = neutron
    
    [oslo_concurrency]
    lock_path = /var/lib/neutron/tmp
    #'>/etc/neutron/neutron.conf
    #
    echo '
    #
    [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 = neutron
    #'>>/etc/nova/nova.conf
    #
    cp /etc/neutron/plugins/ml2/linuxbridge_agent.ini{,bak}
    # bond0是网卡名
    echo ' [linux_bridge] physical_interface_mappings = provider:bond0 [securitygroup] enable_security_group = true firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver [vxlan] enable_vxlan = false # local_ip = 10.2.1.21 # l2_population = true #'>/etc/neutron/plugins/ml2/linuxbridge_agent.ini #重启相关服务 systemctl restart openstack-nova-compute.service #启动neutron systemctl enable neutron-linuxbridge-agent.service systemctl start neutron-linuxbridge-agent.service
  • 相关阅读:
    事件回顾
    把时间花在经典上
    事件回顾
    硬件毛刺
    事件回顾
    cache支持三种pre-fetch方式:normal/pre-fetch1/pre-fetch2-way1/pre-fetch-way2
    cache支持single/increment/increment4三种方式传输
    计算机必读书籍
    那些让我们如此享受的慢性毒药(转载)
    平淡节制
  • 原文地址:https://www.cnblogs.com/elvi/p/7614494.html
Copyright © 2011-2022 走看看