1. 程式人生 > >分享自建的 Jrebel License Server 激活 Jrebel

分享自建的 Jrebel License Server 激活 Jrebel

uuid comm 默認端口 jdk6 idg contex dex -s 使用

使用在線驗證服務器激活 Jrebel 與 Idea

說明


代碼來自於開源項目: gsls200808 / JrebelLicenseServerforJava


自建的服務地址


http://jrebel.yanjiayu.cn:9001/

使用我提供的服務地址而非自行安裝的,可直接跳過第二部直接看使用教程


自行安裝


本地環境安裝

  1. 安裝 JDK,並設置環境變量,需要至少 JDK6.0+

    • JDK 最新版下載地址:https://www.oracle.com/technetwork/java/javase/downloads/index.html
    • JDK 歷史版本下載地址:https://www.oracle.com/technetwork/java/javase/archive-139210.html
  2. 安裝 MAVEN

    • MAVEN 最新版下載地址:https://maven.apache.org/download.cgi
    • MAVEN 歷史版本:https://archive.apache.org/dist/maven/maven-3/
  3. 將 Jrebel License Server 項目克隆到本地,或下載 zip

    項目地址:https://gitee.com/gsls200808/JrebelLicenseServerforJava

    1
    git clone https://gitee.com/gsls200808/JrebelLicenseServerforJava.git
  4. 編譯並打包項目

    1
    2
    3
    4
    5
    cd /path/project
    mvn clean
    mvn commpile
    mvn exec:java -Dexec.mainClass="com.vvvtimes.server.MainServer" -Dexec.args="-p 8081"
    mvn package
  5. 運行項目

    1
    java -jar JrebelBrainsLicenseServerforJava-1.0-SNAPSHOT-jar-with-dependencies.jar -p 8081

    默認端口為 8081,你也可以自己修改指定的端口

  6. 運行,成功則顯示如下

    技術分享圖片


使用 Docker 運行

  1. 安裝 docker 環境

    詳情參考官網:https://www.docker.com/get-started

  2. 克隆項目到本地

  3. 創建鏡像

    1
    2
    3
    cd /path/to/project
    mvn package
    docker build -t jrebel-ls
  4. 運行鏡像

    1
    docker run -d --name jrebel-ls --restart always -e PORT=9001 -p 9001:9001 jrebel-ls

    默認端口為 9001,你也可以自己修改指定的端口

  5. 運行,成功則顯示如下

    技術分享圖片


使用教程


Idea 激活

  • idea2018.2 及後續版本修改了激活報文,故無法激活。
  • idea2017 及後續版本不可使用本地地址激活
  1. 點擊激活 Idea
  2. 激活方式選擇 License server
  3. 輸入激活路徑:http://jrebel.yanjiayu.cn:9001/64245b6b-ef68-4bdc-aabf-7f8e85a540e4
    • 前半部分為你的激活服務器地址
    • 後半部分為 UUID,你可以前往以下網站自行生成:https://www.uuidgenerator.net/
  4. 點擊 ACTIVATE 完成激活

技術分享圖片


Jrebel 激活

  1. 下載並安裝 Jrebel
  2. 打開激活界面,選擇激活方式為:Connect to online licensing service
  3. 在 Team URL (required) 一欄輸入你的激活服務器地址,如:http://jrebel.yanjiayu.cn:9001/64245b6b-ef68-4bdc-aabf-7f8e85a540e4
    • 前半部分為你的激活服務器地址
    • 後半部分為 UUID,你可以前往以下網站自行生成:https://www.uuidgenerator.net/
  4. 在 Email address (required) 一欄輸入你的郵箱地址,可以隨意填寫
  5. 點擊 Activate 完成激活,激活前記得勾選 “I agree with the terms & conditions of the License Agreement” 選項,否則無法激活

技術分享圖片

技術分享圖片


------------- 本文結束感謝您的閱讀 -------------

分享自建的 Jrebel License Server 激活 Jrebel