Asterisk

如何在 Yeastar MyPBX 的嵌入式 Asterisk 上啟用 queue_log?

  • May 13, 2022

我有一台來自 Yeastar 的舊 PBX,其中包含一個 Asterisk 1.6.2.6 實例。

如何啟用該queue_log設置並讓它在重新啟動後持續存在?

首先,您必須從 Web 界面啟用 SSH 訪問(系統/區域網路設置/啟用 SSH)。

然後登錄 MyPBX 並創建/persistent/custom-cfg/logger_custom.conf包含以下內容的文件:

[general]
queue_log = yes
; enable log rotation and removal of the archived file to avoid filling up the partition
rotatestrategy = sequential
exec_after_rotate = rm ${filename}

最後,重啟 PBX:

asterisk -rx 'core restart gracefully'

引用自:https://serverfault.com/questions/1100868