zoukankan      html  css  js  c++  java
  • openStack openSource CloudComputing

    <一,> ,OpenStack a few Core Compontents integration with openStack-keystone Identity service
    1.1,user-create
    keystone user-create --name --pass --email
    1.2,tenant-create
    keystone tenant-create --name (remainers tips, public use service tenant)
    1.3,role-create
    keystone
    1.4,[link user,tenant,role]
    keystone user-role-add --user --tenant --role
    1.5,create core components service
    keystone service-create --name --type --description ""
    1.6,create openStack core components service endpoints
    eg,neutron network service
    keystone endpoint-create --service-id $(keystone service-list | awk '/ network / {print $2}') --publicurl http://ostack.org:9696 --adminurl http://ostack.org:9696 --internalurl http://ostack.org:9696


    <二,> openStack core compents,components Names and ports
    服务名            项目名称    端口
    identity service    keystone    35357,5000
    image service        glance        9292
    compute service        nova        8774
    network service        neutron        9696

    <三,>openStack core compontents,subcompontents repo packages Names,(for the moment no relation rely on repo packages list,misc systemizing)

    3.14,networking components-->neutron
    yum -y install openstack-neutron openstack-neutron-ml2 python-neutronclient

    3.2.1

    core components conf
    eg,networking server component conf inc database,authentication mechanism,message broker,topology change notifier,and plug-in

    conf networking to use the identity service for authentication

    3.2.2

  • 相关阅读:
    Scala 基础语法(二)
    Scala 基础语法(一)
    Scala 概述+scala安装教程+IDEA创建scala工程
    树链剖分【p2590】[ZJOI2008]树的统计
    树链剖分【p1505】[国家集训队]旅游
    状压DP【p1896】[SCOI2005]互不侵犯
    树链剖分【P3833】 [SHOI2012]魔法树
    KMP【UVA1328】 Period
    Trie树【UVA11362】Phone List
    线段树【p2801】教主的魔法
  • 原文地址:https://www.cnblogs.com/ruiy/p/4176376.html
Copyright © 2011-2022 走看看