Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

添加关于自定义工作目录的提示 (#474) #484

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/getting-started/install/jar-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ title: 使用 JAR 文件部署
cd ~/app && java -Dfile.encoding=UTF-8 -jar halo.jar --spring.config.additional-location=optional:file:$HOME/.halo2/
```

:::tip
如果指定了其他工作目录,请将 `$HOME/.halo2/` 替换为相应的绝对路径,并确保路径末尾带有 `/`。
:::

7. 如果没有观察到异常日志,即可尝试访问 Halo

打开 `http://ip:端口号` 即可跳转到初始化页面。
Expand Down Expand Up @@ -212,7 +216,7 @@ title: 使用 JAR 文件部署
- **USER**:运行 Halo 的系统用户,如果有按照上方教程创建新的用户来运行 Halo,修改为你创建的用户名称即可。反之请删除 `User=USER`。

:::tip
请确保 `/usr/bin/java` 是正确无误的。建议将 `ExecStart` 中的命令复制出来运行一下,保证命令有效。
请确保 `/usr/bin/java` 是正确无误的。建议将 `ExecStart` 中的命令复制出来运行一下,保证命令有效。如果指定了其他工作目录,请像上面一样改动。
:::

配置完成之后,保存即可。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ title: 使用 JAR 文件部署
cd ~/app && java -Dfile.encoding=UTF-8 -jar halo.jar --spring.config.additional-location=optional:file:$HOME/.halo2/
```

:::tip
如果指定了其他工作目录,请将 `$HOME/.halo2/` 替换为相应的绝对路径,并确保路径末尾带有 `/`。
:::

7. 如果没有观察到异常日志,即可尝试访问 Halo

打开 `http://ip:端口号` 即可跳转到初始化页面。
Expand Down Expand Up @@ -212,7 +216,7 @@ title: 使用 JAR 文件部署
- **USER**:运行 Halo 的系统用户,如果有按照上方教程创建新的用户来运行 Halo,修改为你创建的用户名称即可。反之请删除 `User=USER`。

:::tip
请确保 `/usr/bin/java` 是正确无误的。建议将 `ExecStart` 中的命令复制出来运行一下,保证命令有效。
请确保 `/usr/bin/java` 是正确无误的。建议将 `ExecStart` 中的命令复制出来运行一下,保证命令有效。如果指定了其他工作目录,请像上面一样改动。
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里不太确定合不合适 😣

:::

配置完成之后,保存即可。
Expand Down