[{"id":"840f0737-df1d-47ae-bb0a-359b01fe0608","tags":[{"product":null,"links":null,"id":"adf72f47-7f61-4239-8392-b9bcc127fa80","name":"\u65B0\u589E","color":"green","productId":"0995490e-43fc-4d6e-bc8d-8e66f38b0c63"}]},{"id":"d5d9cdef-8854-4505-89be-a2bbc3cb4482","tags":[{"product":null,"links":null,"id":"adf72f47-7f61-4239-8392-b9bcc127fa80","name":"\u65B0\u589E","color":"green","productId":"0995490e-43fc-4d6e-bc8d-8e66f38b0c63"}]},{"id":"3dc3dd55-35b0-4d23-bf62-47bc3650e4ee","tags":[{"product":null,"links":null,"id":"adf72f47-7f61-4239-8392-b9bcc127fa80","name":"\u65B0\u589E","color":"green","productId":"0995490e-43fc-4d6e-bc8d-8e66f38b0c63"}]},{"id":"80d84fbc-d0f8-4e4a-947f-e3e4de9b49b2","tags":[{"product":null,"links":null,"id":"adf72f47-7f61-4239-8392-b9bcc127fa80","name":"\u65B0\u589E","color":"green","productId":"0995490e-43fc-4d6e-bc8d-8e66f38b0c63"}]},{"id":"9152b7ca-0186-4fe3-a26f-5a05f322db07","tags":[{"product":null,"links":null,"id":"adf72f47-7f61-4239-8392-b9bcc127fa80","name":"\u65B0\u589E","color":"green","productId":"0995490e-43fc-4d6e-bc8d-8e66f38b0c63"}]}]
        
(Showing Draft Content)

运行计划执行失败

问题1 提示请安装Chrome

问题描述

明明安装了Chrome,但仪表板运行计划执行失败,提示如下信息:

image2022-5-12_9-39-7.png

问题定位

用户在安装 Wyn 之前未安装Chrome,会导致文档导出失败,从而出现这种情况。

因此建议用户在安装 Wyn 之前,先安装Chrome 浏览器。

解决方法

解决方法是将可执行文件chrome.exe的路径添加到Wyn的配置文件中。

具体步骤:

  1. 找到可执行文件 chrome.exe的路径。如 "C:\Program Files\Google\Chrome\Application\chrome.exe"

  2. 修改配置文件,将可执行文件的路径添加到配置文件的DashboardWorker节点下。

    image2022-5-12_9-44-5.png

  3. 重启WynService 服务。

问题2 提示无法启动浏览器

问题描述

在仪表板的运行计划中,默认使用 chrome 浏览器导出dashboard。

并且默认可执行文件的路径为 "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"或"C:\Program Files\Google\Chrome\Application\chrome.exe"。因此一旦您的Chrome 浏览器未按默认路径安装,则会出现启动失败的情况。

解决方法

具体的解决方法是在 wyn.conf 文件的 DashboardWorker 节点中添加 2 个新设置节点:BrowserForExport 和 BrowserPathForExport。

  • 使用 BrowserForExport 来指定浏览器类型,可用值为 “chrome”。

  • 使用BrowserPathForExport来指定浏览器的可执行文件路径,例如 Linux 下路径如“ /usr/bin/chromium-browser ”; Windows 下路径如“C:\Program Files\Google\Chrome\Application\chrome.exe”

type=info

提示

运行计划中还支持其他浏览器。详见在运行计划中使用Edge或Firefox导出仪表板

代码示例

<Services>
    <CotWorker/>
    <DashboardWorker>
       <BrowserForExport>chrome</BrowserForExport>
       <BrowserPathForExport>C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe</BrowserPathForExport>
    </DashboardWorker>
    <AnalysisDBService/>
  </Services>