Phrase preceded by blanks added after ucybsmgr on Unix
search cancel

Phrase preceded by blanks added after ucybsmgr on Unix

book

Article ID: 380987

calendar_today

Updated On:

Products

CA Automic Workload Automation - Automation Engine

Issue/Introduction

After upgrading/installing the Service Manager to version 21.0.10 or 24.1.0 you notice that there are some extra blanks between ./ucybsmgr and the phrase.

See below:

This occurs when starting the service manager with a command that first does a cd to the folder of the service manager, instead of providing the full path to the binary, ie:

cd /opt/automic/ServiceManager/bin
nohup ./ucybsmgr phrase >/dev/null 2>&1 &

Environment

Service Manager 24.1+ or 21.0.10+ on Unix/Linux.

Cause

The issue is caused by a correction introduced to avoid some environment variables corruption while starting the Service Manager if the path was too long.

Resolution

Please start the Service Manager using the full path to the binary instead of ./ucybsmgr.

Replace in your startup script:

nohup ./ucybsmgr phrase >/dev/null 2>&1 &

by

nohup /path_to_service_manager/bin/ucybsmgr phrase >/dev/null 2>&1 &

Additional Information

The changes were done on version 21.0.10+ and 24.1.0+ via AE-36914 (equivalent to AE-35633 for Unix Agent).

Public description: A problem was fixed where the Service Manager would overwrite its own environment during startup.