当前位置:网站首页>Error Nova missingauthplugin: an auth plugin is required to determine endpoint URL
Error Nova missingauthplugin: an auth plugin is required to determine endpoint URL
2022-06-30 04:07:00 【Xiao Zhu, classmate Wu】
Start up openstack-nova-conductor.service and scheopenstack-nova-scheduler.service In service , Always reporting mistakes .
2022-02-15 09:34:17.975 12633 WARNING oslo_config.cfg [-] Deprecated: Option "use_neutron" from group "DEFAULT" is deprecated for removal (
nova-network is deprecated, as are any related configuration options.
). Its value may be silently ignored in the future.
2022-02-15 09:34:18.080 12633 CRITICAL nova [-] Unhandled error: MissingAuthPlugin: An auth plugin is required to determine endpoint URL
2022-02-15 09:34:18.080 12633 ERROR nova Traceback (most recent call last):
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/bin/nova-conductor", line 10, in <module>
2022-02-15 09:34:18.080 12633 ERROR nova sys.exit(main())
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/cmd/conductor.py", line 44, in main
2022-02-15 09:34:18.080 12633 ERROR nova topic=rpcapi.RPC_TOPIC)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/service.py", line 271, in create
2022-02-15 09:34:18.080 12633 ERROR nova periodic_interval_max=periodic_interval_max)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/service.py", line 129, in __init__
2022-02-15 09:34:18.080 12633 ERROR nova self.manager = manager_class(host=self.host, *args, **kwargs)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/conductor/manager.py", line 117, in __init__
2022-02-15 09:34:18.080 12633 ERROR nova self.compute_task_mgr = ComputeTaskManager()
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/conductor/manager.py", line 243, in __init__
2022-02-15 09:34:18.080 12633 ERROR nova self.report_client = report.SchedulerReportClient()
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/scheduler/client/report.py", line 186, in __init__
2022-02-15 09:34:18.080 12633 ERROR nova self._client = self._create_client()
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/scheduler/client/report.py", line 229, in _create_client
2022-02-15 09:34:18.080 12633 ERROR nova client = self._adapter or utils.get_sdk_adapter('placement')
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/nova/utils.py", line 1039, in get_sdk_adapter
2022-02-15 09:34:18.080 12633 ERROR nova return getattr(conn, service_type)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/openstack/service_description.py", line 92, in __get__
2022-02-15 09:34:18.080 12633 ERROR nova endpoint = proxy_mod.Proxy.get_endpoint(proxy)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/keystoneauth1/adapter.py", line 282, in get_endpoint
2022-02-15 09:34:18.080 12633 ERROR nova return self.session.get_endpoint(auth or self.auth, **kwargs)
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/keystoneauth1/session.py", line 1216, in get_endpoint
2022-02-15 09:34:18.080 12633 ERROR nova auth = self._auth_required(auth, 'determine endpoint URL')
2022-02-15 09:34:18.080 12633 ERROR nova File "/usr/lib/python2.7/site-packages/keystoneauth1/session.py", line 1156, in _auth_required
2022-02-15 09:34:18.080 12633 ERROR nova raise exceptions.MissingAuthPlugin(msg_fmt % msg)
2022-02-15 09:34:18.080 12633 ERROR nova MissingAuthPlugin: An auth plugin is required to determine endpoint URL
2022-02-15 09:34:18.080 12633 ERROR nova
rabbitmq The service is normal , The log is as follows
=INFO REPORT==== 15-Feb-2022::09:11:37 ===
started TCP Listener on [::]:5672=INFO REPORT==== 15-Feb-2022::09:11:37 ===
Management plugin started. Port: 15672=INFO REPORT==== 15-Feb-2022::09:11:37 ===
Statistics database started.=INFO REPORT==== 15-Feb-2022::09:11:38 ===
Server startup complete; 6 plugins started.
* rabbitmq_management
* rabbitmq_management_agent
* rabbitmq_web_dispatch
* amqp_client
* cowboy
* cowlib
nova.conf Also configured the .
[DEFAULT]
enabled_apis = osapi_compute,metadata # Enable only computation and metadata API
transport_url = rabbit://openstack:[email protected] # To configure RabbitMQ
auth_strategy = keystone # Configure identity services
my_ip = 192.168.1.230 # The control node ip
use_neutron = True # Enable network support
firewall_driver = nova.virt.firewall.NoopFirewallDriver # Enable network support
[api_database]
connection = mysql+pymysql://nova:[email protected]/nova_api
[database]
connection = mysql+pymysql://nova:[email protected]/nova
[keystone_authtoken]
auth_uri = http://controller:5000
auth_url = http://controller:35357
memcached_servers = controller:11211
auth_type = password
project_domain_name = Default
user_domain_name = Default
project_name = service
username = nova
password = 123456
[vnc]
vncserver_listen = $my_ip
vncserver_proxyclient_address = $my_ip
[glance]
api_servers = http://controller:9292
[oslo_concurrency]
lock_path = /var/lib/nova/tmp
environment variable admin-openrc.sh It's also running
export OS_PROJECT_DOMAIN_NAME=default
export OS_USER_DOMAIN_NAME=default
export OS_PROJECT_NAME=admin
export OS_USERNAME=admin
export OS_PASSWORD=123456
export OS_AUTH_URL=http://controller:35357/v3
export OS_IDENTITY_API_VERSION=3
export OS_IMAGE_API_VERSION=2
openstack endpoint create Also created
[[email protected] ~]# openstack endpoint list
+----------------------------------+-----------+--------------+--------------+---------+-----------+-----------------------------+
| ID | Region | Service Name | Service Type | Enabled | Interface | URL |
+----------------------------------+-----------+--------------+--------------+---------+-----------+-----------------------------+
| 01b3f535573b44a091e2951c70df16c0 | RegionOne | nova | compute | True | admin | http://controller:8774/v2.1 |
| 5e75806f5f3e4da4b912fcc1e531c7c3 | RegionOne | glance | image | True | admin | http://controller:9292 |
| 78eb538440e749f68d850c3fa88d5880 | RegionOne | nova | compute | True | internal | http://controller:8774/v2.1 |
| 892a2737d09440568c5027fa8cf1503a | RegionOne | keystone | identity | True | internal | http://controller:35357/v3/ |
| 8d9ae711d91b4125b3a2f7d70b4591d0 | RegionOne | nova | compute | True | public | http://controller:8774/v2.1 |
| 8f4903a4da8841a7af9eae7b3a103f6d | RegionOne | keystone | identity | True | admin | http://controller:35357/v3/ |
| 9aea166bfc114a559da72c224da1f34b | RegionOne | keystone | identity | True | public | http://controller:5000/v3/ |
| 9c71468ac58e41c9a1fac67e6881290d | RegionOne | glance | image | True | public | http://controller:9292 |
| d77c2127821a43c1acc3857257b54307 | RegionOne | glance | image | True | internal | http://controller:9292 |
+----------------------------------+-----------+--------------+--------------+---------+-----------+-----------------------------+
I really don't know what to do , The service still doesn't work , Ask for help Thank you .
边栏推荐
- 各位大佬,flink 1.13.6,mysql-cdc2.2.0,抽取上来的datetime(6)类
- Day 12 advanced programming techniques
- Magical Union
- Linear interpolation of spectral response function
- How to analyze and solve the problem of easycvr kernel port error through process startup?
- Idea grey screen problem
- Slam mapping, automatic navigation and obstacle avoidance based on ROS (bingda robot)
- Concatenation of Languages(UVA10887)
- [operation] MySQL query on May 24, 2022
- 关于智能视觉组上的机械臂
猜你喜欢

绿色新动力,算力“零”负担——JASMINER X4系列火爆热销中

【笔记】2022.5.23 MySQL

Node red series (28): communication with Siemens PLC based on OPC UA node

Interface testing -- how to analyze an interface?

Selenium environment installation, 8 elements positioning --01

An error occurs when sqlyog imports the database. Please help solve it!

Do280 private warehouse persistent storage and chapter experiment

Linear interpolation of spectral response function

技术分享| 融合调度中的广播功能设计
![[punch in - Blue Bridge Cup] day 3 --- slice in reverse order list[: -1]](/img/c2/13693dcb51aab565957b6c5e686b7c.jpg)
[punch in - Blue Bridge Cup] day 3 --- slice in reverse order list[: -1]
随机推荐
在大厂外包呆了三年,颠覆了我的认知!
When easycvr deploys a server cluster, what is the reason why one is online and the other is offline?
【作业】2022.5.24 MySQL 查操作
Jour 9 Gestion des scripts et des ressources
.NET 7 的 JWT 配置太方便了!
SQL append field
Idea grey screen problem
[image fusion] multi focus and multi spectral image fusion based on cross bilateral filter and weighted average with matlab code
知识点滴 - 如何用3个简单的技巧在销售中建立融洽的关系
Project safety and quality
Geometric objects in shapely
Errno and PERROR
基于ROS的SLAM建图、自动导航、避障(冰达机器人)
Semantic segmentation resources
Concatenation of Languages(UVA10887)
Cloud native -- websocket of Web real-time communication technology
matplotlib. pyplot. Hist parameter introduction
深入浅出掌握grpc通信框架
Magical Union
Solutions for project paths