Skip to content

zhaobest/JrebelLicenseServerforJava

 
 

Repository files navigation

typora-copy-images-to
img

JrebelLicenseServerforJava

搭建jrebel激活服务; 欢迎star。

源项目fork自这里,仅用作记录,谢谢。

源地址: https://gitee.com/gsls200808/JrebelLicenseServerforJava

使用教程

  1. 准备工作,你需要一个后台一直运行的服务,可以在阿里云购买一台轻量级应用服务器,并且安装好java环境;

    点击这里可以迅速获得优惠券

https://www.aliyun.com/minisite/goods?userCode=eogi8dax

1577170416862

  1. 克隆本项目,打成jar包,会生成jar包,或者到这里直接下载也行(已经打好包了)

    mvn clean package
    
  2. 把jar包传送到云服务器上,然后进入到jar包所在目录,执行以下命令:

    # nohup  命令   &     :表示后台运行,这样保证ssh连接断开服务也是一直开着的
    nohup java -jar JrebelBrainsLicenseServerforJava-1.0-SNAPSHOT-jar-with-dependencies.jar -p 8081 &
  3. 最后,可以检查下是否OK了,可以通过浏览器访问ip:8081或者使用命令查看: ps -ef | grep java

温馨提示:跳过第二步直接在这里下载打好的jar包也行:

链接:https://pan.baidu.com/s/1utLWewXesFq18UMawLhF2Q 
提取码:eps0

Jrebel & Jet Brains License Server for Java

A license server for Jrebel & JetBrains products, it also support JRebel for Android and XRebel.


Thank ilanyu

NOTE: This is provided for educational purposes only. Please support genuine.


Setup

Run:

cd /path/to/project
mvn compile 
mvn exec:java -Dexec.mainClass="com.vvvtimes.server.MainServer" -Dexec.args="-p 8081"

Packing a runnable jar:

mvn package

then

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

default port is 8081.

Or use gradle

gradle shadowJar

java -jar JrebelBrainsLicenseServerforJava-1.0-SNAPSHOT-all.jar -p 8081

Docker

Build image

mvn package 
docker build -t jrebel-ls .

start container

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

default port is 8081,you can modify it

Support

Jrebel

JRebel for Android

XRebel

JetBrains Products

Feedback

About

搭建IDEA热部署插件Jrebel的激活服务

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.3%
  • Dockerfile 0.7%