Linux没有这样的文件或目录

时间:2017-11-09 14:14:16

标签: linux amazon-web-services jprofiler

我正在尝试在远程AWS Linux上设置JProfiler代理。 我按照 #### Method 2: Add agentpath to JAVA_OPTS 中的步骤进行操作。

但是我收到以下错误: enter image description here 该文件在驱动器上。我可以导航到它。

我做了什么?

  1. 我下载了JProfiler10.0.4作为Linux的targz。
  2. 解压缩档案
  3. 执行命令nano ~/.bashrc
  4. 我以这种方式修改了内容。 enter image description here
  5. 执行命令source ~/.bashrc
  6. 我收到错误。
  7. 你知道我做错了什么吗?

    谢谢

2 个答案:

答案 0 :(得分:1)

看起来您实际上是在尝试设置JAVA_OPTS

Todo您已将其分配给JAVA_OPTS,然后将其导出。在.bashrc中,将-agentpath:"$jpPath"替换为:

export JAVA_OPTS="-agentpath:$jpPath"

答案 1 :(得分:0)

@ crea1是对的,但我真的不会使用修改JAVA_OPTS的方法。最好通过修改启动脚本将-agentpath VM参数传递给您尝试配置的VM。