openstack部署中的錯誤總結

2021-09-20 19:54:23 字數 4505 閱讀 6785

在安裝到glance上傳鏡象時出錯,折騰不出來,先記在這兒

1、 glance index

failed to show index. got error:

you are not authenticated.

解決方法:

keystone配置出錯,解決keystone問題

1、刪除以前mysql生成的keystone的表

drop table ec2_credential;

drop table endpoint;

drop table metadata;

drop table migrate_version;

drop table role;

drop table service;

drop table tenant;

drop table token;

drop table user;

drop table user_tenant_membership;

drop table user;

drop table token;

show tables;

drop table tenant;

2、重啟keystone服務及初始化資料庫

service keystone restart

keystone-manage db_sync

3、/etc/keystone/keystone.conf配置檔案中(選擇資料庫或模板檔案方式中的一種)

[catalog]

driver = keystone.catalog.backends.sql.catalog

#driver = keystone.catalog.backends.templated.templatedcatalog

#template_file = /etc/keystone/default_catalog.templates

4、為了生成api,建立endpoint

5、檢查服務

keystone --token password --endpoint  user-list

keystone --token password --endpoint  role-list

keystone --token password --endpoint  tenant-list

keystone --token password --endpoint  service-list

keystone --token password --endpoint  endpoint-list

6、校驗

Openstack部署工具

openstack發展很猛,很多朋友都很認同,2013年,會很好的解決openstack部署的問題,讓安裝,配置變得更加簡單易用。其實部署工具,最麻煩的地方,不是軟體的配置和安裝,而且網路。使用者的網路情況太多,還有openstack本身的網路也很複雜。關於如何step by step的部署,目前o...

openstack安裝部署

本文主要分享的是雲計算 openstack的使用 私有雲平台建設 雲伺服器雲硬碟的構建和使用。從基本概念入手到私有雲建設,資訊量非常大。對於openstack的安裝部署都是從官方文件中一步步的介紹,內容非常詳細。一 雲計算 基本概念 雲計算 cloud computing 是基於網際網路的相關服務的...

指令碼部署openstack

本文把openstack部署的所有命令整理成乙個完整的指令碼,乙個指令碼解決所有問題。一般部署分三步 1,安裝openstack包 2,修改配置檔案 3,執行這個指令碼。來,試一下 在python下 import mydeploy mydeploy.deploy all 如果想重置資料庫,例如nov...