在 Ubuntu 上手动安装 Glassfish

发布于 2024-07-22 07:57:29 字数 561 浏览 9 评论 0原文

我刚刚使用 这个教程。 一切顺利。 但现在当我尝试使用 ASADMIN 工具时,它告诉我:

程序“asadmin”当前不存在 安装。 您可以通过以下方式安装它 键入: apt-get install glassfishv2 -bash:asadmin:找不到命令

因此,为了运行 asadmin 工具始终需要键入:

/opt/glassfish/bin/asadmin 起始域domain1

或转到该文件夹​​并从那里运行它。

所以,问题是,我需要编辑什么文件才能将此路径设置到环境中。

I just installed Glassfish on my Ubuntu server (No GUI) using THIS tutorial. Everything went well. But now when I'm trying to play with ASADMIN tool it's telling me this:

The program 'asadmin' is currently not
installed. You can install it by
typing: apt-get install glassfishv2
-bash: asadmin: command not found

So, in order to run asadmin tool always need to type:

/opt/glassfish/bin/asadmin start-domain domain1

or go to that folder and run it from there.

So, the question is, what file do i need to edit in order to set this path in to the environment.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

执妄 2024-07-29 07:57:29

您可以将以下内容添加到 ~/.bashrc 文件中,以将 /opt/glassfish/bin 中的所有二进制文件添加到 $PATH

export PATH=$PATH:/opt/glassfish/bin

~ 扩展为 /home/your-user - 只是为了清楚起见。

You can add the following to your ~/.bashrc file to add all the binaries in /opt/glassfish/bin to your $PATH

export PATH=$PATH:/opt/glassfish/bin

~ expands to /home/your-user - just to be clear.

怎会甘心 2024-07-29 07:57:29

只需在 CLI 中输入:

导出 PATH=/opt/glassfish/bin/:$PATH

Just type to CLI:

export PATH=/opt/glassfish/bin/:$PATH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文