Installing Talend Data Preparation manually - 8.0

Talend Installation Guide

Version
8.0
Language
English
Operating system
Windows
Subscription type
Subscription
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Activity Monitoring Console
Talend Administration Center
Talend Artifact Repository
Talend CommandLine
Talend Data Preparation
Talend Data Stewardship
Talend ESB
Talend Identity and Access Management
Talend Installer
Talend JobServer
Talend LogServer
Talend MDM Server
Talend MDM Web UI
Talend Runtime
Talend SAP RFC Server
Talend Studio
Content
Installation and Upgrade
Last publication date
2022-10-30
This procedure contains the steps to manually install Talend Data Preparation on your machine.

Before you begin

  • Talend Administration Center is installed and running.
  • Talend Identity and Access Management is installed and running.
  • A Talend Data Preparation user exists in Talend Administration Center. For more information, see Adding a Data Preparation user.
  • There are no other instances of MongoDB installed on your machine.
  • Available in:

    Big Data

    Big Data Platform

    Data Fabric

    Real-Time Big Data Platform

  • To use Talend Data Preparation with Big Data, use one of the supported Hadoop distribution. For more information, see Supported Hadoop distribution versions.
  • Available in:

    Big Data Platform

    Data Fabric

    Data Management Platform

    Data Services Platform

    MDM Platform

    Real-Time Big Data Platform

  • If you want to benefit from Talend Dictionary Service to display, create, or update semantic types in Talend Data Preparation, download the latest MinIO version from this page and follow the MinIO documentation for installation, or install an S3 repository.
  • Before installing Talend Data Preparation, make sure that you fulfill the hardware and software requirements. For more information, see On-premises installation prerequisites.

Procedure

  1. Download a MongoDB instance from https://www.mongodb.com/download-center and install it.
    For more information on the supported MongoDB databases, see Compatible databases.
    For more information on how to install it, see MongoDB documentation.
    If you want to secure connections with MongoDB using SSL, MongoDB Enterprise Server has to be manually installed on your machine. For more information, see https://docs.mongodb.com/v4.0/security/.
  2. Unzip the Talend-DataPreparation-Server-VA.B.C.zip file where you want Talend Data Preparation to be installed.
  3. Unzip the <Data_Preparation_Path>\services\components-api-service-rest-all-components-VA.B.C.zip file where you want Components Catalog to be installed.
  4. Add mongo to the PATH environment variable.
  5. Create the dataprep database in MongoDB using the following command: use dataprep.
  6. Create the following user for the dataprep database in MongoDB:
    • Username: dataprep-user
    • Password: duser
    To do this, you can use the following command:
    db.createUser( { user: "dataprep-user", pwd: "duser", roles: [{ role: "readWrite", db: "dataprep"}]})