idea之idea激活服务搭建

idea之idea激活服务搭建idea 之 idea 激活服务搭建 idea 激活网上都有激活链接 这个搭建纯属娱乐 而且再强调一次 有条件的请支持正版 谢谢 再说这服务搭建 只是去做了个端口转发 真正的实现也只有 lanyu 大仙晓得了 在此无以言表 感激涕零大仙能让我等*丝用上最好用的 ide 不多说了上菜 win bat echo off Rem

大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说idea之idea激活服务搭建,希望您对编程的造诣更进一步.

idea之idea激活服务搭建

idea激活网上都有激活链接.这个搭建纯属娱乐,而且再强调一次,有条件的请支持正版.谢谢.

再说这服务搭建,只是去做了个端口转发,真正的实现也只有lanyu大仙晓得了,,,在此无以言表,感激涕零大仙能让我等*丝用上最好用的ide. 不多说了上菜,

--------------------------win bat

@echo off

@Rem localhost

set l=0.0.0.0:8888

@Rem remote

set r=http://idea.lanyus.com:80

@Rem download

set d=https://github.com/ilanyu/ReverseProxy/releases/download/v1.4/ReverseProxy_windows_amd64.exe

@Rem filename

set f=ReverseProxy_windows_amd64.exe

@Rem file path

set p=%cd%

set pf=%p%%f%

echo %pf%

if exist %pf% goto start

if not exist %pf% goto downloadfile

:downloadfile

echo "ReverseProxy is downloading..."

certutil.exe -urlcache -split -f %d%

goto start

goto end

:start

echo "start..."

cd %p%

%f% -l %l% -r %r%

goto end

pause

-------------------------centos7 sh

#!/bin/bash

# localhost

l="0.0.0.0:8888"

# remote

r="http://idea.lanyus.com:80"

# download

d="https://github.com/ilanyu/ReverseProxy/releases/download/v1.4/ReverseProxy_linux_amd64"

# filename

f="ReverseProxy_linux_amd64"

# file path

p="/usr/bin/"

pf=""$p""$f""

if [ -f $pf ];then

echo "start..."

else

echo "ReverseProxy is downloading..."

yum install wget

wget -c -O $pf $d

fi

chmod 555 $pf

cd $p

https://blog.csdn.net/_/article/details/$f -l $l -r $r

以上就是搭建过程了,是不是很简单呢.... 哈哈哈,其实就是下载了个文件,这个文件是 go 打包成不同平台的脚本,这个脚本做了端口转发而已.

win 下的搭建,

1 创建个 txt 文件,

2 把bat脚本粘过去

3 把后缀 txt 改为 bat

4 双击执行  。 如果安装了360 会出现弹框,允许运行就好,这个过程会有点长,毕竟是从github上下载 而且 win的命令行下载是相当简直的慢的一匹 ,当然你也可以自行下载, 把文件放在 脚本同级目录.再执行. 然后还有个问题哦, idea对本地ip 和 局域网 ip 做了判断 ,也就是说你激活的时候会激活失败,地址无效..

当然你可以装个centos 7.x 的虚拟机,

1 创建个.sh 的脚本(vi active.sh)

2 然后把代码适用于centos脚本考进去, 然后保存退出( esc → shift + : → wq → 回车)

3 赋权限 (chmod 777 active.sh)

4 执行 sh active.sh

再然后打开你的idea 选择license server  输入 http://激活服务器的ip:8888

端口默认是 8888  具体参考脚本文件.

最后有需要购买服务器玩的,请戳→

https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=tqpvz8yl

领取优惠券.

直接复制可能有问题 放个链接

https://github.com/a/ideactive

编程小号
上一篇 2026-03-30 20:29
下一篇 2026-03-30 18:29

相关推荐

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://daima100.com/post/2408.html