1. 程式人生 > >IntelliJ IDEA License Server 使用教程與服務器搭建

IntelliJ IDEA License Server 使用教程與服務器搭建

服務 nginx 配置 cat jet license dea code tel all

1. 下載

1.1版:http://blog.lanyus.com/archives/189.html
1.2版:http://blog.lanyus.com/archives/228.html
1.3版:http://blog.lanyus.com/archives/231.html
1.4版:http://blog.lanyus.com/archives/305.html
1.5版:http://blog.lanyus.com/archives/314.html

2. 使用示例

./IntelliJIDEALicenseServer_linux_amd64 -p 4000 -u StarUDream -prolongationPeriod 31536000

3. 參數

-p:自定義端口
-u:認證用戶名
-prolongationPeriod:過期時間

4. 服務器搭建

nginx 配置

location / {
    proxy_pass http://127.0.0.1:4000;
}

screen 後臺運行

yum install -y screen
screen -S jetbrains
./IntelliJIDEALicenseServer_linux_amd64

然後使用 ctrl + A + D,隱藏 screen 會話。

IntelliJ IDEA License Server 使用教程與服務器搭建