Symantec IGA

  • 1.  Bulk loader bat file - endless loop in cmd

    Posted Jan 04, 2019 07:15 PM

    I am running the bat file for bulkloader and the command prompt seems to keep reading the file endlessly. Also the log file is not getting created to record the error. This is for Vapp 14.2

     

    Any insights or help is appreciated.

     

    Thanks in advance

     

    bat file

    user=TYUII
    password=ABCD
    serverUrl=http://kd\:8080/iam/im/TEWS6/idEnv
    feederParserClass= com.ca.identitymanager.feeder.parser.CSVParser
    uniqueIdentifierAttrName=uid
    actionAttrName=action
    primaryObject=USER
    actionToTaskMapping=create.xyz Bulk Create User;modify.Modify User;delete.Delete User
    isProtectedBySiteMinder=false
    isAdminPasswordRequired=false

     

    properties file

    C:
    cd \Program Files (x86)\CA\Identity Manager\Bulk Loader\bin

    rem imbulkloadclient.bat -b 100 -i "C:\Users\XYZ\Documents\user.csv" -f CSV -u ABC -p password -s http://kd\:8080/iam/im/TEWS6/idEnv

    imbulkloadclient.bat -b 100 -i "C:\Users\XUZ\Documents\user.csv" -f CSV -u ABC -p XYZ -s http://kd\:8080/iam/im/TEWS6/idEnv



  • 2.  Re: Bulk loader bat file - endless loop in cmd

    Broadcom Employee
    Posted Jan 07, 2019 06:34 AM

    The following:

     

    C:

    cd \Program Files (x86)\CA\Identity Manager\Bulk Loader\bin

    rem imbulkloadclient.bat -b 100 -i "C:\Users\XYZ\Documents\user.csv" -f CSV -u ABC -p password -s http://kd\:8080/iam/im/TEWS6/idEnv

    imbulkloadclient.bat -b 100 -i "C:\Users\XUZ\Documents\user.csv" -f CSV -u ABC -p XYZ -s http://kd\:8080/iam/im/TEWS6/idEnv

     

    The content of imbulkloadclient.bat? If you, you have the script looking back to itself.



  • 3.  Re: Bulk loader bat file - endless loop in cmd

    Broadcom Employee
    Posted Jan 08, 2019 04:19 AM

    I think you've labeled your bat file and properties file the wrong way around in your original post.

    Anyway, if you have your username, password and URL in the properties file, then you don't need to include them in the command. Just reference the properties file with the -c option

     

    E.g following should work directly from the command line

     

    imbulkloadclient.bat -c ..\conf\imbulkloadclient.properties -f CSV -i \Users\XUZ\Documents\user.csv -v

     

    -v is for verbose logging. Should be output to the screen and the log file.

    Note: You may need to start the command prompt as administrator to ensure that you have write access to log file.

     

    Pearse