BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SKR
Fluorite | Level 6 SKR
Fluorite | Level 6

Hi Experts, 

 

we are using SAS NLIN procedure in a stored process and it executes fine in Solaris 10 / Oracle 11g client.

However in Solaris 11, we receive the following error

 

ERROR: Could not load /sas/SAS94/SASFoundation/9.4/sasexe/sasnlin (98 images loaded)
ERROR: ld.so.1: sas: fatal: libmtsk.so.1: open failed: No such file or directory
ERROR: Procedure NLIN not found.

 

we have checked and confirmed that the SASNLIN library exists under the above SAS root folder (sas/SAS94/SASFoundation/9.4/sasexe/) and necc access rights are granted.

 

Can anybody advise? 

1 ACCEPTED SOLUTION

Accepted Solutions
SKR
Fluorite | Level 6 SKR
Fluorite | Level 6

Hi Chris, we managed to find the root cause.

 

One of the package file in solaris 11 was missing. The corresponding package was installed by default in solaris 10 and hence the issues happened only for solaris 11 OS.  

 

thanks a lot for your help

 

View solution in original post

4 REPLIES 4
ChrisHemedinger
Community Manager

Hi,

It looks like you have a tech support track on this already, but for the benefit of the community -- possible causes are:

 

1. SAS/STAT is not licensed on the server

2. SAS/STAT is licensed by not installed on the server

3. LD_LIBRARY_PATH_64 has been set incorrectly (see this SAS Note)

 

To check these, you would run (from the "problem" environment):

 

 

PROC SETINIT;RUN;
PROC PRODUCT_STATUS;RUN;
 
data temp7;
length result $2000;
result=sysget('LD_LIBRARY_PATH_64');
put result;
run;
SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
SKR
Fluorite | Level 6 SKR
Fluorite | Level 6

Hi Chris, thanks for the feedback. Yes. we have raised tech support and i am merely trying my luck to get it resolved asap, while waitinf for TS response

 

we have verified and the license is valid and we dont have LD_LIBRARY_PATH64 and only have LD_LIBRARY_PATH. Could this be a problem?

 

 

ChrisHemedinger
Community Manager

Reading the SAS note, I think that's likely.  You could try a test to define it per the note and see if that helps.

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
SKR
Fluorite | Level 6 SKR
Fluorite | Level 6

Hi Chris, we managed to find the root cause.

 

One of the package file in solaris 11 was missing. The corresponding package was installed by default in solaris 10 and hence the issues happened only for solaris 11 OS.  

 

thanks a lot for your help

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 2066 views
  • 1 like
  • 2 in conversation