4.6. 调整日志记录和调试输出
完成设置过程后,检查日志输出以确保它满足您的需要。默认情况下,Ceph 守护进程日志到 journald
,您可以使用 journalctl
命令查看日志。或者,您也可以将 Ceph 守护进程日志指向文件,这些文件位于 /var/log/ceph/CEPH_CLUSTER_ID/
目录下。
重要
详细日志记录每小时可生成超过 1 GB 数据。这种类型的日志记录可能会填满操作系统的磁盘,从而导致操作系统停止正常运行。
先决条件
- 一个正在运行的 Red Hat Ceph Storage 集群。
- 安装 Ceph 对象网关软件.
流程
设置以下参数以增加 Ceph 对象网关日志输出:
语法
ceph config set client.rgw debug_rgw VALUE
示例
[ceph: root@host01 /]# ceph config set client.rgw debug_rgw 20
您还可以在运行时修改这些设置:
语法
ceph --admin-daemon /var/run/ceph/ceph-client.rgw.NAME.asok config set debug_rgw VALUE
示例
[ceph: root@host01 /]# ceph --admin-daemon /var/run/ceph/ceph-client.rgw.rgw.asok config set debug_rgw 20
(可选)您可以将 Ceph 守护进程配置为将其输出记录到文件中。将
log_to_file
和mon_cluster_log_to_file
选项设置为true
:示例
[ceph: root@host01 /]# ceph config set global log_to_file true [ceph: root@host01 /]# ceph config set global mon_cluster_log_to_file true
其它资源
- 如需了解更多详细信息,请参阅 Red Hat Ceph Storage 配置指南中的 Ceph 调试和日志记录配置部分。 https://access.redhat.com/documentation/zh-cn/red_hat_ceph_storage/7/html-single/configuration_guide/#ceph-debugging-and-logging-configuration