What is the command to run the NUI feed in production environment manually
-
nohup bin/PVUA1015.sh -h prd -l NUI &
-
nohup bin/PVUA1010.sh -h prd -l NUI &
-
nohup bin/PVUA1025.sh -h prd -l NUI &
-
nohup bin/PVUA1030.sh -h dev -l NUI &
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.
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.