openstack的日志#私藏项目实操分享#

不飞则已,一飞冲天;不鸣则已,一鸣惊人。这篇文章主要讲述openstack的日志#私藏项目实操分享#相关的知识,希望能为你提供帮助。
(一)openstack的日志:
(1)9大组件的日志全部存在/var/log








(2)日志的排错:{添加一个大容量的云硬盘,但是具体的实际容量不够产生的错误}



①vim /etc/nova/nova.conf//需要先打开debug的日志
1527 debug=True




②tail -f * |egrep -i (warn|err)//筛选下日志的大概范围




③tail -f * |egrep -i -A10 -B10(warn|err)//通过这种方式可以定位到,错误的日志是出现在日志上{==> scheduler.log < ==},出现在这个日志上了




④tail -f scheduler.log|egrep -i(warn|err)//在通过日志的文件详细定位到错误的问题
重现错误,产生的错误日志
=============================================================================================================================================================
11-01 14:57:30.230 1392 WARNING cinder.scheduler.filters.capacity_filter [req-e71c804c-7c14-4f62-aa7b-82488e8cd769 40b4d7d3b62e435c87dd61dd5cc77921 62d28a292fec40c48b1757acea4b6450 - - -] Insufficient free space for volume creation on host controller@lvm#lvm (requested / avail): 20/19.0
2021-11-01 14:57:30.231 1392 WARNING cinder.scheduler.filter_scheduler [req-e71c804c-7c14-4f62-aa7b-82488e8cd769 40b4d7d3b62e435c87dd61dd5cc77921 62d28a292fec40c48b1757acea4b6450 - - -] No weighed hosts found for volume with properties: {}
2021-11-01 14:57:30.241 1392 ERROR cinder.scheduler.flows.create_volume [req-e71c804c-7c14-4f62-aa7b-82488e8cd769 40b4d7d3b62e435c87dd61dd5cc77921 62d28a292fec40c48b1757acea4b6450 - - -] Failed to run task cinder.scheduler.flows.create_volume.ScheduleCreateVolumeTask; volume:create: No valid host was found. No weighed hosts available




⑤为什么会在scheduler的这个日志了? 因为产生用scheduler来调度硬盘,但是发现没有任何一个存储够

【openstack的日志#私藏项目实操分享#】


    推荐阅读