I have been able to install ASE-15_7 on leap up to 15.5.
However, installation fails on 15.6.
It claims to run smoothly just until the following error message:
Building Adaptive Server ‘sms_srv’:
Writing entry into directory services…
Directory services entry complete.
Building master device…
Task failed
ASE_PCI: failed to bridge Pluggable Component Interfaces with code -77
Server ‘sms_srv’ was not created.
Any help will be highly appreciated.
Thx in advance guys, I am counting on you!
The issue seems to be known by SUSE but unfortunately SUSE links to an SAP Knowledge Database Article (KBA) 3425215. An SAP account (SAP S-User ID) and SLA seems to be required to read the article.
Given that the stime function is deprecated, you should use settimeofday or clock_settime as they provide more flexibility and are the recommended alternatives for setting the system time.
Solution
As you can see in the output of ltrace that the missing symbol (function) stime is the real reason of dataserver start fails. The output of strace give no (or only I can see no) hint to that. Also the output of “ASE_PCI: failed to bridge Plugga…” indicates not the real problem.
And indeed the stime function is deprecated and not included anymore in the /lib64/libc.so.6 under openSUSE 15.6 (resp. glibc version 2.38).
The solution is to use the LD_PRELOAD mechanism to preload a library which supports the symbol (function) stime. Of course the new function of stime should internally use e.g. settimeofday.