![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Can a child process return a specific value to a parent process ? | Ametis1970 | High Level Programming | 8 | 04-09-2008 08:22 PM |
| about child process | compbug | UNIX for Dummies Questions & Answers | 12 | 03-22-2006 03:55 PM |
| gdb to child process | shriashishpatil | UNIX for Advanced & Expert Users | 4 | 12-12-2005 03:57 AM |
| KDM child process | larryase | UNIX for Dummies Questions & Answers | 6 | 01-24-2005 01:41 PM |
| Child Process PID | skannan | High Level Programming | 2 | 06-10-2002 04:54 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Oracle library issue in child process
Hi,
I am using a daemon from which I am forking 3 processes P1,P2,P3 out of which P3 is compiled with oracle lib32/libclntsh.so and P1,P2 are non database process. The Logic of daemon is that if any one goes down simply clean the other and refork all the 3 again. P3 is getting forked first time without any problem.But when second time by daemon it is showing ... "ld.so.1: cp_proc: fatal: libwtc9.so: open failed: No such file or directory" error and not coming up. I guess there is some guffup with the environment variable(like LD_LIBRARY_PATH) which is not available to P3 second time when it tries to come up. I tried hard l but to no avail !! Please suggest any expert opinion !!! compiler:gcc(32 bit) library(32 bit) sparc SUNW,Sun-Fire-V240 |
| Forum Sponsor | ||
|
|
|
|||
|
My first question would be - are you calling EXEC SQL rollback release; in P3 or are you passing a connection (session) object from the master process?
Try: Code:
ldd <P3filename> | grep libwtc9 |
|||
| Google UNIX.COM |