"20141216" 修訂間的差異
行 1: | 行 1: | ||
− | [[檔案:20141216.pptx]] | + | [[檔案:20141216.pptx]]<br><br> |
行 31: | 行 31: | ||
2. 編輯.openrc檔案 ,設定環境變數<br> | 2. 編輯.openrc檔案 ,設定環境變數<br> | ||
− | $ vim .openrc | + | $ vim .openrc<br> |
− | export OS_USERNAME=center65 | + | export OS_USERNAME=center65<br> |
− | export OS_PASSWORD=center65 | + | export OS_PASSWORD=center65<br> |
− | export OS_TENANT_NAME=center65-project | + | export OS_TENANT_NAME=center65-project<br> |
− | export OS_AUTH_URL=http://140.115.17.183:5000/v2.0 | + | export OS_AUTH_URL=http://140.115.17.183:5000/v2.0<br><br> |
− | $ source .openrc | + | $ source .openrc<br><br> |
三、網路資訊及設定<br> | 三、網路資訊及設定<br> | ||
− | 1. 查看網路、子網路、路由器 | + | 1. 查看網路、子網路、路由器<br> |
− | $ neutron net-list | + | $ neutron net-list<br> |
− | $ neutron subnet-list | + | $ neutron subnet-list<br> |
− | $ neutron router-list | + | $ neutron router-list<br><br> |
− | 2. 產生網路、子網路、路由器 | + | 2. 產生網路、子網路、路由器<br> |
− | $ neutron net-create my-net | + | $ neutron net-create my-net<br> |
− | $ neutron subnet-create --name my-subnet --dns-nameserver 8.8.8.8 my-net 10.5.5.0/24 | + | $ neutron subnet-create --name my-subnet --dns-nameserver 8.8.8.8 my-net 10.5.5.0/24<br> |
− | $ neutron router-create my-router | + | $ neutron router-create my-router<br><br> |
− | 3. my-router加入內部網路卡介面 | + | 3. my-router加入內部網路卡介面<br> |
− | $ neutron router-interface-add my-router my-subnet | + | $ neutron router-interface-add my-router my-subnet<br><br> |
− | 4. 查看外網 | + | 4. 查看外網<br> |
− | $ neutron net-external-list | + | $ neutron net-external-list<br><br> |
− | 5. my-router設定外網閘道 | + | 5. my-router設定外網閘道<br> |
− | $ neutron router-gateway-set my-router cloud-net | + | $ neutron router-gateway-set my-router cloud-net<br><br> |
− | 6. 查看my-router路由器網路卡介面 | + | 6. 查看my-router路由器網路卡介面<br> |
− | $ neutron router-port-list my-router | + | $ neutron router-port-list my-router<br><br> |
四、建立虛擬機前的準備動作<br> | 四、建立虛擬機前的準備動作<br> | ||
− | 1. 查看有哪些樣版 | + | 1. 查看有哪些樣版<br> |
− | $ nova flavor-list | + | $ nova flavor-list<br><br> |
− | 2. 查看有哪些映像檔 | + | 2. 查看有哪些映像檔<br> |
− | $ glance image-list | + | $ glance image-list<br><br> |
− | 3. 查看有哪些密鑰對 | + | 3. 查看有哪些密鑰對<br> |
− | $ nova keypair-list | + | $ nova keypair-list<br><br> |
− | 4. 產生公鑰(前面有講解過) | + | 4. 產生公鑰(前面有講解過)<br> |
− | $ ssh-keygen | + | $ ssh-keygen<br><br> |
− | 5. 新增密鑰對 | + | 5. 新增密鑰對<br> |
− | $ nova keypair-add --pub-key ~/.ssh/id_rsa.pub my-key | + | $ nova keypair-add --pub-key ~/.ssh/id_rsa.pub my-key<br><br> |
− | 6. 查看安全性群組 | + | 6. 查看安全性群組<br> |
− | $ nova secgroup-list | + | $ nova secgroup-list<br><br> |
− | 7. 新增allow-remote安全群組 | + | 7. 新增allow-remote安全群組<br> |
− | $ nova secgroup-create allow-remote "Allow SSH/RDP" | + | $ nova secgroup-create allow-remote "Allow SSH/RDP"<br><br> |
− | 8. 允許22與3389port通過防火牆 | + | 8. 允許22與3389port通過防火牆<br> |
− | $ nova secgroup-add-rule allow-remote tcp 22 22 0.0.0.0/0 | + | $ nova secgroup-add-rule allow-remote tcp 22 22 0.0.0.0/0<br> |
− | $ nova secgroup-add-rule allow-remote tcp 3389 3389 0.0.0.0/0 | + | $ nova secgroup-add-rule allow-remote tcp 3389 3389 0.0.0.0/0<br><br> |
五、建立虛擬機<br> | 五、建立虛擬機<br> | ||
− | 1. 指令 | + | 1. 指令<br> |
− | $ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 \ | + | $ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 \<br> |
− | --security-groups allow-remote \ | + | --security-groups allow-remote \<br> |
− | --key-name my-key \ | + | --key-name my-key \<br> |
− | --nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') \ | + | --nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') \<br> |
− | my-instance | + | my-instance<br><br> |
− | 2. 寫成一行 | + | 2. 寫成一行<br> |
− | $ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 --security-groups allow-remote --key-name my-key --nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') my-instance | + | $ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 --security-groups allow-remote --key-name my-key --nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') my-instance<br><br> |
六、取得IP<br> | 六、取得IP<br> | ||
− | 1. 查看有哪些浮動IP | + | 1. 查看有哪些浮動IP<br> |
− | $ neutron floatingip-list | + | $ neutron floatingip-list<br><br> |
− | 2. 取得IP | + | 2. 取得IP<br> |
− | $ neutron floatingip-create cloud-net | + | $ neutron floatingip-create cloud-net<br><br> |
− | 3. 將剛才要的浮動IP,與instance聯結 | + | 3. 將剛才要的浮動IP,與instance聯結<br> |
− | $ nova floating-ip-associate my-instance 140.115.0.30 | + | $ nova floating-ip-associate my-instance 140.115.0.30<br><br> |
七、新增儲存空間<br> | 七、新增儲存空間<br> | ||
− | 1. 查看有哪些儲存空間 | + | 1. 查看有哪些儲存空間<br> |
− | $ cinder list | + | $ cinder list<br> |
− | $ cinder quota-show $(keystone token-get | awk '/ tenant_id / { print $4 }') | + | $ cinder quota-show $(keystone token-get | awk '/ tenant_id / { print $4 }')<br><br> |
− | 2. 新增儲存空間 | + | 2. 新增儲存空間<br> |
− | $ cinder create --display-name='vdisk' 1 | + | $ cinder create --display-name='vdisk' 1<br><br> |
− | 3. 掛載儲存空間 | + | 3. 掛載儲存空間<br> |
− | $ nova volume-attach my-instance xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx(識別號) | + | $ nova volume-attach my-instance xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx(識別號)<br><br> |
八、查詢開啟虛擬機console的url<br> | 八、查詢開啟虛擬機console的url<br> | ||
− | $ nova get-vnc-console my-instance novnc | + | $ nova get-vnc-console my-instance novnc<br><br> |
九、透過sprac主機遠端連線<br> | 九、透過sprac主機遠端連線<br> | ||
− | ssh ubuntu@140.115.0.30 | + | ssh ubuntu@140.115.0.30<br><br> |
十、其他補充<br> | 十、其他補充<br> | ||
− | 1. 可以查看更多指令 | + | 1. 可以查看更多指令<br> |
− | $ nova help|more | + | $ nova help|more<br><br> |
− | 2. 查看有哪些instance | + | 2. 查看有哪些instance<br> |
− | $ nova list | + | $ nova list <br><br> |
− | 3. instance 停止 | + | 3. instance 停止<br> |
− | $ nova pause my-instance | + | $ nova pause my-instance<br><br> |
於 2014年12月10日 (三) 06:04 的修訂
一、Ubuntu設定、更新並下載套件
1. 增加本機名稱
$ sudo vim /etc/hosts
127.0.0.1 localhost
127.0.1.1 ubuntu14
2. 增加DNS server(此步可省略)
$ sudo vim /etc/resolv.conf
nameserver 140.115.1.31
3. 更新系統
$ sudo apt-get update
$ sudo apt-get upgrade
4. 使用root身分
$ sudo -s
5. 安裝openstack api client端套件
# apt-get install -y python-keystoneclient
# apt-get install -y python-glanceclient
# apt-get install -y python-neutronclient
# apt-get install -y python-novaclient
# apt-get install -y python-cinderclient
二、設定環境變數
1. 改回一般user身分
# exit或按ctrl-D
2. 編輯.openrc檔案 ,設定環境變數
$ vim .openrc
export OS_USERNAME=center65
export OS_PASSWORD=center65
export OS_TENANT_NAME=center65-project
export OS_AUTH_URL=http://140.115.17.183:5000/v2.0
$ source .openrc
三、網路資訊及設定
1. 查看網路、子網路、路由器
$ neutron net-list
$ neutron subnet-list
$ neutron router-list
2. 產生網路、子網路、路由器
$ neutron net-create my-net
$ neutron subnet-create --name my-subnet --dns-nameserver 8.8.8.8 my-net 10.5.5.0/24
$ neutron router-create my-router
3. my-router加入內部網路卡介面
$ neutron router-interface-add my-router my-subnet
4. 查看外網
$ neutron net-external-list
5. my-router設定外網閘道
$ neutron router-gateway-set my-router cloud-net
6. 查看my-router路由器網路卡介面
$ neutron router-port-list my-router
四、建立虛擬機前的準備動作
1. 查看有哪些樣版
$ nova flavor-list
2. 查看有哪些映像檔
$ glance image-list
3. 查看有哪些密鑰對
$ nova keypair-list
4. 產生公鑰(前面有講解過)
$ ssh-keygen
5. 新增密鑰對
$ nova keypair-add --pub-key ~/.ssh/id_rsa.pub my-key
6. 查看安全性群組
$ nova secgroup-list
7. 新增allow-remote安全群組
$ nova secgroup-create allow-remote "Allow SSH/RDP"
8. 允許22與3389port通過防火牆
$ nova secgroup-add-rule allow-remote tcp 22 22 0.0.0.0/0
$ nova secgroup-add-rule allow-remote tcp 3389 3389 0.0.0.0/0
五、建立虛擬機
1. 指令
$ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 \
--security-groups allow-remote \
--key-name my-key \
--nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') \
my-instance
2. 寫成一行
$ nova boot --flavor m1.small --image ubuntu-14.04-x86_64 --security-groups allow-remote --key-name my-key --nic net-id=$(nova net-list | awk '/ my-net / { print $2 }') my-instance
六、取得IP
1. 查看有哪些浮動IP
$ neutron floatingip-list
2. 取得IP
$ neutron floatingip-create cloud-net
3. 將剛才要的浮動IP,與instance聯結
$ nova floating-ip-associate my-instance 140.115.0.30
七、新增儲存空間
1. 查看有哪些儲存空間
$ cinder list
$ cinder quota-show $(keystone token-get | awk '/ tenant_id / { print $4 }')
2. 新增儲存空間
$ cinder create --display-name='vdisk' 1
3. 掛載儲存空間
$ nova volume-attach my-instance xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx(識別號)
八、查詢開啟虛擬機console的url
$ nova get-vnc-console my-instance novnc
九、透過sprac主機遠端連線
ssh ubuntu@140.115.0.30
十、其他補充
1. 可以查看更多指令
$ nova help|more
2. 查看有哪些instance
$ nova list
3. instance 停止
$ nova pause my-instance