IntelliJ IDEA 激活 及 License Server 安装使用 Window篇

news/2024/7/4 9:01:16

IDEA版本:

IntelliJ IDEA 2017.2
Build #IU-172.3317.76, built on July 15, 2017
Licensed to Administrator

JRE: 1.8.0_152-release-915-b5 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 7 6.1

 

一、激活

IntelliJ IDEA下载地址: https://www.jetbrains.com/idea/download/#section=windows

IntelliJ IDEA 是Java开发利器,用社区版不爽,干催就用旗舰版,这个是收费的,需要licence。 

如果你资金充足,请自行购买收费版的Idea:https://www.jetbrains.com/idea/buy。

在线激活地址: http://idea.lanyus.com/  或者 https://www.iteblog.com/idea/

本地证书服务器版,压缩包地址:https://pan.baidu.com/s/1coj34G1vVgx9pSqtHhSXWQ 


1. 解压后,根据系统的类型、运行位数,选择对应的版本,先不启动IDEA,点击IntelliJIDEALicenseServer_windows_amd64.exe 。

这里写图片描述 

2. 启动服务,获取激活地址:http://127.0.0.1:1017 

CSDN 


3. 输入本地服务器地址 
CSDN 


4. 激活成功 
CSDN 

 

二、注册exe为服务

如上,每次开机后都需要启动IntelliJIDEALicenseServer,为了方便起见,我们可以把window的exe程序注册成随机启动的服务。

可以参考我的博文:使用srvany.exe将程序安装成windows服务的详细教程,把exe注册为服务。这样每次启动idea的时候就不用再点击exe了。 

 

CSDN

 

 

这里根据实际操作写了个博文,可以参考一下!实测有效!

Mac 请参考:IntelliJ IDEA License Server 安装使用 Mac篇

 

示例下载: 测试用例-IntelliJIDEALicenseServer

 

ps:

https://coding.net/u/privatelo/p/lightjbl-release/git   

https://coding.net/u/privatelo/p/lightjbl/git

http://idea.lanyus.com/

https://www.iteblog.com/idea/

 

 


http://www.niftyadmin.cn/n/4799785.html

相关文章

Window 下ChromeDriver配置、安装与验证

chromedriver的下载和配置 为何要安装? 最近做python爬虫,用到了selenium,所以就得安装一下chromedriver,如果安装的话就会报错:chromedriver executable needs to be in PATH等问题。 使用selenium时,需…

C++ 中 使用vtkGDCMImageReader.h遇到的unresolved external symbol错误解决办法

1. 错误信息一 2>gdcmMSFF.lib(gdcmUIDGenerator.obj) : error LNK2019: unresolved external symbol __imp__UuidCreate4 referenced in function "protected: static bool __cdecl gdcm::UIDGenerator::GenerateUUID(unsigned char *)" (?GenerateUUIDUIDGener…

windows xshell6启动时msvcp110.dll、msvcr110.dll、mfc110u.dll丢失解决

经过重重的磨难,终于解决了,真是踩了好多坑。 启动xshell时程序报错如下: 无法启动此程序,因为计算机中丢失MSVCR110.dll。尝试重新安装该程序以解决此问题。 尝试了好多种办法: 1、百度下载修复工具失败。 2、下载…

oracle10g异常日志查看

oracle10g异常日志查看参考文章: (1)oracle10g异常日志查看 (2)https://www.cnblogs.com/wanghonghu/archive/2012/04/18/2455651.html (3)https://www.javazxz.com/thread-4444-1-1.html 备…

Python3 错误:PermissionError: [Errno 13] Permission denied 如何解决?「xsl,csv」成功解决

问题描述: 在做爬虫时,保存数据到excel的xsl文件或者csv文件中会报错: PermissionError: [Errno 13] Permission denied:。。。原因分析: python脚本在往csv或xsl文件写入数据时手动打开了文件导致写入终止。open 打开一个文件…

php header函数

PHP 中 header()函数的作用是给客户端发送头信息。什么是头信息?这里只作简单解释,详细的自己看http协议。在 HTTP协议中,服务器端的回答(response)内容包括两部分:头信息(header) 和 体内容,这里的头信息不是HTML中的…

【Python3爬虫错误】:ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接?解决办法

出现问题描述及分析: 最近做爬虫是,经常出现ConnectionResetError: [WinError 10054] 等错误,主要是因为使用urlopen方法太过频繁,引起远程主机的怀疑,被网站认定为是攻击行为,导致urlopen()后&#xff0c…

【Python3学习】常见字符串去除字符串空格的方法

1、replace()方法,可以去除全部空格 语法 str.replace(old, new[, max])old – 将被替换的子字符串。new – 新字符串,用于替换old子字符串。max – 可选字符串, 替换不超过 max 次 实例 str "this is string example....wow!!! this is reall…