Windows环境IDEA下Ranger1.2.0源码编译详细流程

Apache Ranger是什么,它是一个为Hadoop平台提供了全面的数据安全访问控制及监控的集中式管理框架,Apache顶级项目。不废话了,其实本篇没那么高大上,就是一步步教你Windows环境IDEA下Ranger1.2.0源码编译详细流程。

一、本地环境准备

  •  git(2.16.2)
  • maven(3.6.1)
  • idea(2020.1)
  • python(2.7.18)
  • Tomcat(7.0.105)

以上安装步骤均可以百度

二、源码编译

用git clone 代码,Ranger官方版本1.2.0 仓库地址 https://github.com/apache/ranger.git,

在cmd或者git bash 进入项目工程对应目录

Windows环境IDEA下Ranger1.2.0源码编译详细流程_第1张图片

使用如下命令编译源代码,注意编译超级费时间

mvn -DskipTests=true clean compile package install assembly:assembly

Windows环境IDEA下Ranger1.2.0源码编译详细流程_第2张图片

三、使用idea打开项目

 1. 安装数据库Mysql版

找到 security-admin-web模块,在安装脚本里security-admin/scripts/install.properties找出mysql所需要的sql脚本db/mysql/optimized/current/ranger_core_db_mysql.sqldb/mysql/xa_audit_db.sql,安装数据库。数据库安装详细过程(略)。

2. 配置Tomcat,发布 security-admin-web项目。

Windows环境IDEA下Ranger1.2.0源码编译详细流程_第3张图片

3. 修改security-admin中以下文件

src\main\resources\conf.dist\ranger-admin-site.xml中的ranger.jpa.jdbc.url,ranger.jpa.jdbc.user,ranger.jpa.jdbc.password


   		ranger.jpa.jdbc.url
   		jdbc:log4jdbc:mysql://127.0.0.1/ranger
   		
   	
   	
   		ranger.jpa.jdbc.user
   		root
   		
   	
   	
   		ranger.jpa.jdbc.password
   		123456
   		
   	

src\main\webapp\META-INF\applicationContext.xml中的叫propertyConfigurer的bean


		
			
				
				
				
				
				classpath:conf.dist/core-site.xml
				classpath:conf.dist/ranger-admin-default-site.xml
				classpath:conf.dist/ranger-admin-site.xml
			
		
		
	

4. 编译启动Tomcat即可。

四、遇到问题

1.python版本问题

Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (generate-version-annotation) on project ranger-util: An Ant BuildException has occured: Execute failed: java.io.IOException: Cannot run program "python" (in directory "E:\code\openSource\ranger\ranger-util"): CreateProcess error=2, 系统找不到指定的文件。
[ERROR] around Ant part ...... @ 4:48 in E:\code\openSource\ranger\ranger-util\target\antrun\build-main.xml
[ERROR] -> [Help 1]

Windows环境IDEA下Ranger1.2.0源码编译详细流程_第4张图片

解决方案: 安装Python 且要是2版本的。

Tomcat版本问题

org.apache.catalina.loader.VirtualWebappLoader

解决方案: 之前使用9版本的Tomcat ,改为7.0.105就可以了。

以上就是Windows环境IDEA下Ranger1.2.0源码编译详细流程的详细内容,更多关于Ranger1.2.0源码编译的资料请关注脚本之家其它相关文章!

你可能感兴趣的:(Windows环境IDEA下Ranger1.2.0源码编译详细流程)