Multiple choice technology packaged enterprise solutions

What is the command to run the NUI feed in production environment manually

  1. nohup bin/PVUA1015.sh -h prd -l NUI &

  2. nohup bin/PVUA1010.sh -h prd -l NUI &

  3. nohup bin/PVUA1025.sh -h prd -l NUI &

  4. nohup bin/PVUA1030.sh -h dev -l NUI &

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The correct command to manually run the NUI feed in production is 'nohup bin/PVUA1010.sh -h prd -l NUI &'. This command uses nohup to prevent termination on logout, specifies the production environment (-h prd), identifies the feed as NUI (-l NUI), and runs it in the background (&). The script PVUA1010.sh is the specific feed processor for NUI.

AI explanation

The documented manual command for running the NUI feed against the production environment is nohup bin/PVUA1010.sh -h prd -l NUI & — the script name (PVUA1010) and the -h prd flag together identify the correct production invocation, unlike the other script numbers or the -h dev variant.