Advertisement

OpenStack双节点部署—Neutron网络服务

阅读量:

Neutron安装

    • 一、数据库设置
      • 二、生成服务访问密钥及API接口
      • 三、Controller节点—部署并调节Neutron模块
      • 四、Compute节点—部署并调节Neutron模块
      • 五、测试Neutron功能

一、数据库配置与优化

复制代码
    # mysql -uroot -p123456
    MariaDB [(none)]> create database neutron;
    MariaDB [(none)]> grant all privileges on neutron.* to 'neutron'@'localhost' identified by '123456';
    MariaDB [(none)]> grant all privileges on neutron.* to 'neutron'@'%' identified by '123456';
    MariaDB [(none)]> exit
    
    
      
      
      
      
      
    

二、创建服务凭证和API端点

1.起效的环境参数

复制代码
    # . /root/admin-openrc
    
    

全部评论 (0)

还没有任何评论哟~