Using Scripts to Call MetaServlet Actions - 8.0

Talend Administration Center User Guide

Version
8.0
Language
English
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 Administration Center
Content
Administration and Monitoring
Last publication date
2024-04-15

About this task

To launch the metaServlet and read help information about scripts for calling MetaServlet actions in the Windows command line/Linux terminal:

Procedure

  1. Open the Windows command line or Linux terminal, and go to the following directory: ./org.talend.administrator/WEB-INF/classes.
  2. Run:
    • MetaServletCaller.bat to call the metaServlet on Windows.
    • MetaServletCaller.sh to call the metaServlet on Linux.
  3. To perform a MetaServlet action, type in the corresponding scripts in the command line (or terminal for Linux users).
    For example, to delete an existing user named test@test.com from Talend Administration Center, you will need to use following script to perform the action:
    MetaServletCaller.bat 
    --tac-url=http://localhost:8080/org.talend.administrator 
    --json-params=
    "{
    'actionName':'deleteUser',
    'authPass':'TAC_Admin_password',
    'authUser':'TAC_Admin_username',
    'userLogin':'test@test.com'
    }"
    Replace the parameters with what they are in real contexts and respect the format used in the script above for these parameters.
    Once the command has been executed, user test@test.com is deleted.