Open
Conversation
要求在windows系统上有linux子系统: 可以通过安装git+环境变量来添加linux子系统 ie: 1. 下载git: https://git-scm.com/download/win 2. 增加环境变理GIT_HOME=... 3. 然后PATH环境变量中添加如下值即可 %GIT_HOME%\bin;%GIT_HOME%\usr\bin;%GIT_HOME%\cmd;%GIT_HOME%\mingw64\bin cmd后sh进入linux子系统, 在启用bistoury之前要求设置环境变量如 ``` export JAVA_HOME=/D/JDK/jdk1.8.0X64 export LOCAL_IP=127.0.0.1 export BISTOURY_TMP_DIR=J:/tmp/bistoury export BISTOURY_STORE_DIR=/J/tmp/bistoury ``` 这些变量值请视情况修改 启用bistoury命令如下,注意修改$PID为要监牢java应用对应的PID, $APP_CLASS修改为应用中一个类全名,用来定位classpath ``` ./quick_start.sh -p $PID -c "$APP_CLASS" start ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
要求在windows系统上有linux子系统: 可以通过安装git+环境变量来添加linux子系统
ie:
%GIT_HOME%\bin;%GIT_HOME%\usr\bin;%GIT_HOME%\cmd;%GIT_HOME%\mingw64\bin
cmd后sh进入linux子系统, 在启用bistoury之前要求设置环境变量如
这些变量值请视情况修改
启用bistoury命令如下,注意修改$PID为要监牢java应用对应的PID, $APP_CLASS修改为应用中一个类全名,用来定位classpath