gpt4 book ai didi

macos - 在 OSX 上自动启动 MarkLogic

转载 作者:行者123 更新时间:2023-12-01 11:35:05 25 4
gpt4 key购买 nike

MarkLogic 的 OSX 版本在“系统偏好设置”中安装了一个偏好面板,但它不提供在您登录时自动启动 MarkLogic 的选项。

Another MarkLogic developer created a launchd config启动它,但我无法让它工作(在 OSX 10.10 中)。还有另一种方法可以自动执行此操作吗?

最佳答案

使用 AppleScript:

tell application "System Preferences"
activate
set current pane to pane "MarkLogic"
end tell

tell application "System Events"
tell application process "System Preferences"
set toggle to button 1 of group 1 of window 1
if title of toggle is "Start MarkLogic Server" then
click toggle
end if
end tell
end tell

tell application "System Preferences"
quit
end tell
  1. 将此脚本另存为应用程序(不是 .scpt 脚本文件)。
  2. 打开“系统偏好设置”>“用户和群组”,然后选择您要为其设置的用户想要 MarkLogic 自动启动,然后选择 Login Items右边的选项卡。
  3. 点击加号按钮并导航到该位置保存的应用程序,然后单击添加。

OSX 10.11 El Capitan 更新

在 10.11 中,MarkLogic 的首选项 Pane 中的项目索引之一并不始终可靠。此脚本将实现相同的目标,并且应该向后兼容以前的 OSX 版本。使用此脚本执行上面的步骤 1-3:

do shell script "~/Library/StartupItems/MarkLogic/MarkLogic start"

关于macos - 在 OSX 上自动启动 MarkLogic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27828195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com