search
HomeDatabaseMysql TutorialEndecaintegratorETL安装部署

海数信息,专注于数据服务的创业团队 Endeca产品体系包含了很多内容,之前介绍了IAS这个最被忽略但又非常重要的内容,本文主要介绍EndecaETL工具的安装过程:一、Endeca ETL客户端安装 EndecaETL客户端是基于eclipase包装的产品,本质上就是开源ETL工具clover

海数信息,专注于数据服务的创业团队
Endeca产品体系包含了很多内容,之前介绍了IAS这个最被忽略但又非常重要的内容,本文主要介绍EndecaETL工具的安装过程:一、Endeca ETL客户端安装 EndecaETL客户端是基于eclipase包装的产品,本质上就是开源ETL工具clover,经尝试发现对Eclipse是有明确的版本要求,安装前需要下载以下内容 1)eclipse indigo下载地址: http://www.eclipse.org/downloads/packages/release/indigo/sr2 2)下载Remote System Explorer (RSE)插件 3.2版本,下载地址如下: http://download.eclipse.org/tm/downloads/ 3)下载Oracle Endeca information descoveror中的integratorETL工具组件包 \其他安装过程一切正常,运行install.bat根据提示选择路径安装。注意事项: 1、有事会报错:拒绝访问,fileNotFoundException,一开始比较莫名其妙,后来发现在提示输入Eclipse package路径时,需要输入eclipse.zip的全路径包含文件名,而且要包含.zip后缀。 2、本身EndecaIntegrator是Oracle包装了开源的ETL工具clover,所以不如直接下载clover的安装文件即可,用一下Oracle提供的license就行了。后来安装成功并运行正常。

二、ETL server安装例:weblogic安装 1、通过weblogic的config.cmd创建一个新的domain,,如clover,,端口号8301;创建过程省略;端口8301、SSL8302端口;domain:clover;控制台账户:weblogic 2、domain创建完成后启动weblogic控制台,部署clover.war包,部署过程没有需要配置或注意的地方,一般配置完成后服务可以直接启动的。 有时可能会出现部署war包后weblogic无法启动,报内存溢出的错误。此时需要修改setDomainEnv.cmd,修改最小和最大内存,及MaxPerSize参数 \

\

正常启动访问 http://localhost:8301/clover 会出现lisence已经过期的提示。需要安装clover server的lisence文件,具体过程如下: A)创建一个properties文件,如:cloverServer.properties \ B)文件中需要设定clover的license.dat文件位置,如上图所示,license.dat文件是下载endecaETLserver的时候压缩包中自带的。 C)设置cloverServer.properties文件中的内容: license.file=F:/tools/endeca/EID_3.1.1_IntegratorETL_server_weblogic/license.dat D)修改weblogic启动脚本startWeblogic.bat: \ E)重新启动weblogic服务,系统界面正常出现了登录窗口输入用户名、密码(均为clover)登录即可:\
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software