Problem Installing DCS 6.9.0 on Solaris 11 X86 Arch Host when libgcc_s.so.1 is linked to a /user/local/lib directory
search cancel

Problem Installing DCS 6.9.0 on Solaris 11 X86 Arch Host when libgcc_s.so.1 is linked to a /user/local/lib directory

book

Article ID: 251007

calendar_today

Updated On:

Products

Data Center Security Server Advanced

Issue/Introduction

Having an issue getting DCS to run on a Solaris 11 server with x86 architecture. The package installs fine, but IPS and UTIL daemons won't start

Environment

Symantec Datacenter Security Agent
Release : 6.9.x

 

Cause

libgcc_s.so.1 is liked to a /usr/local/lib/libgcc_s.so.1 and not to /usr/lib/libgcc_s.so.1

Resolution

Change the libgcc_s.so.1 link to link to the /usr/lib/libgcc_s.so.1 file

cd to where the current link is stored (aka directory)

//check that the file libgcc_s.so.1 is the link (and not the binary)
ls -lart (make sure libgcc_s.so.1 has the "l" as the first character (for link))

//remove the link
rm libgcc_s.so.1

//add the new link
ln -sf /usr/lib/libgcc_s.so.1 libgcc_s.so.1