目錄表

Installation Guide on Ubuntu16.04

0x00 前言


0x01 概觀

Service Project Name Description
Dashboard Horizon 提供網頁介面與底下的openstack service互動,像是啟動實體、分配IP、處理存取控制
Compute Nova 管理OpenStack環境中compute instances的生命週期,按需求啟動、調度、關閉虛擬機
Networking Neutron enable Network-Connectivity-as-a-Service,提供API讓user可以定義網路並且附加上去,並有可擴充的架構支援許多廠商與技術
storage
Object Storage Swift
Block Storage Cinder
Shared services
Identity serviceKeystone 為OpenStack Service提供身分驗證和授權服務和endpoint的目錄
Image service Glance
Telemetry Ceilometer Monitors and meters the OpenStack cloud for billing, benchmarking, scalability, and statistical purposes.
Higher-level services
Orchestration Heat

0x02 系統基本設定

處理網卡名稱

GRUB_DEFAULT=0

GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=2
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 biosdevname=0"
GRUB_CMDLINE_LINUX=""

/etc/network/interfaces 中的網卡名稱也要改成 eth 的格式

# update-grub
# reboot

NTP 設置

0x 參考資料