IntelliJ IDEA License Server v1.6
使用说明详见:http://blog.lanyus.com/archives/174.html
v1.1版在这里:http://blog.lanyus.com/archives/189.html
v1.2版在这里:http://blog.lanyus.com/archives/228.html
v1.3版在这里:http://blog.lanyus.com/archives/231.html
v1.4版在这里:http://blog.lanyus.com/archives/305.html
v1.5版在这里:http://blog.lanyus.com/archives/314.html
更新说明:
修改默认端口为1027
下载地址:
https://mega.nz/#!f4A2WQRB!fMNbcuSt0YxrjXclW81_GZol-g6dURrO1htqXPMYa8Q
链接: https://pan.baidu.com/s/1dFS9DaL 密码: xxc2
not working - CLion 2017.3.3 :(
CLion shows server address incorrect. for http://127.0.0.1:1017/ however phpstorm and webstorm works. Please allow to dynamically set new ports or something like that.
@JPT -p -l
Hey, dear author! This tool was working for weeks - but its down now! "The licence server address is incorrect"
@deeped
edit your host;
use nginx;
example:
server {
listen 80;
server_name www.jetbrain.local;
location / {
proxy_pass http://127.0.0.1:1017;
}
}
@Kiyoma but …… it doesn't work.
when i enter the address in the Internet , it was the nginx welcome page
@juneYou haven't done it correctly.
If you have made nginx config correctly, you won't see the nginx welcome page but the IntelliJ IDEA License Server's own "wlecome/success" page which just looks like what you can see on "http://127.0.0.1:1027" .
@june emmmm……mybe you just forgot to reload your nginx?
@Kiyoma you mean the config is
server {
listen 80;
server_name contract.chetuan.com;
location / {
proxy_pass http://127.0.0.1:11017;
}
}
that's right? but when I enter the http://contract.chetuan.com/ it was the nginx welcome page
otherwise I enter the http://127.0.0.1:11017/ it was the IntelliJ IDEA License Server's own "wlecome/success" page
2017.3.4已无法使用
@koseiu
i confirm... "the licence server address is incorrect"
@fabadoo
You need to use nginx to reverse proxy the IntelliJIDEALicenseServer with -p; If you only use in intranet, you do not need to specify -s
@koseiu
2017.3.2及以下版本还是可用
https://download.jetbrains.com/cpp/CLion-2017.3.2.dmg
用nginx反向代理的http://idea.lanyus.com/可以激活JRebel, 但是自己部署的ntelliJ IDEA License Server v1.6确激活不了JRebel , IDEA倒是可以激活
首先感谢作者开发了这个工具,我有个小问题咨询。我想在我的树莓派上搭建激活服务,树莓派系统信息如下:
Linux raspberrypi 4.4.50-v7+ #970 SMP Mon Feb 20 19:18:29 GMT 2017 armv7l GNU/Linux
但是我在运行IntelliJIDEALicenseServer_linux_arm时报错
IntelliJIDEALicenseServer_linux_arm: Syntax error: word unexpected (expecting ")")
请问要怎么解决,谢谢
This 1.6 server has just stopped working today.
Yup stop working, no matter if change host name or port.
:S
Until this is fixed you can use information from here
https://gist.github.com/denis111/c3e08bd7c60febc1de8219930a97c2f6
create a proxy to http://127.0.0.1:1017 and use the proxy url as server
1027 最新的被封了么
不能用了
CLion worked on port 1017!
Even if there were written You can use http://127.0.0.1:1027 as license server
Try 1017
Hi everybody, no more working with http://127.0.0.1:1027 on linux x64 and PhpStorm 2013.3.4.
Reading some stuff about trying proxy or reverse proxy but don't know how to do with Apache 2.4.
It works if licence server is running on another server on network, but non on local machine?
@Krazitchek
Add to your /etc/hosts:
127.0.0.1 any.domain
And use http://any.domain:1017
Bash script for unlimited trial.
#!/bin/bash
echo "Change time for files"
#201802031730 = YYYYMMddHHmm
find ~/.IntelliJIdea* -type d -exec touch -t $(date +"%Y%m%d%H%M") {} \;
echo "removeing evaluation key"
rm ~/.IntelliJIdea*/config/eval/idea*.evaluation.key
echo "resetting evalsprt in options.xml"
sed -i '/evlsprt/d' ~/.IntelliJIdea*/config/options/options.xml
echo "resetting evalsprt in prefs.xml"
sed -i '/evlsprt/d' ~/.java/.userPrefs/prefs.xml
win10 更新之后,变成了监听0.0.0.0:1027这是什么原因
博主,我在软件同目录下放了IntelliJIDEALicenseServer.html文件,但是反向代理后提示文件不存在这怎么解决啊
哦,目前更新后,注册方法不行了,1.6版本,1027这些都不行了,omygad!
现在不能通过直接运行IntelliJIDEALicenseServer来激活了。如果你机器上有nginx,做个反向代理就行了。IntelliJIDEALicenseServer的端口在服务器上任意,对外暴露的端口(nginx里面的listen端口)还是以前的就行,比如下面这个
server {
listen 10000;
server_name jetbrains.keygen.local;
location / {
proxy_pass http://127.0.0.1:19860;
}
}
对外仍然可以用"服务区ip地址:10000端口",但是IntelliJIDEALicenseServer运行的时候用参数-p 19860
@xiao
已试 无法激活成功 IDEA 3.4
@xiao
已试 无法激活成功 IDEA 3.4
@man
目前想要使用 3.4
可以先激活一下低版本 然后再打开3.4版本 可以正常使用
不过每次都需要这样,比较麻烦
Install 2017.3.3 for the time being
Windows installer: https://download-cf.jetbrains.com/webide/PhpStorm-2017.3.3.exe
1.5或1.6的版本,可以在Linux系统下部署吗?我有现成的阿里服务器,可以部署到服务器上,不用每次都本地启动了。