Sponsored Content
Full Discussion: Error in running on AIX 5.2
Operating Systems AIX Error in running on AIX 5.2 Post 52730 by SMISS on Thursday 24th of June 2004 11:06:19 AM
Old 06-24-2004
Error in running on AIX 5.2

A exe works fine on AIX 4.3 but when I run it on AIX 5.2, I can read the following message :

Symbol resolution failed for pl2x because:
Symbol connect (number 33) is not exported from dependent
module /unix.
Symbol select (number 36) is not exported from dependent
module /unix.
Symbol poll (number 44) is not exported from dependent
module /unix.
Symbol unload (number 67) is not exported from dependent
module /unix.
Examine .loader section symbols with the 'dump -Tv' command.

I ‘ ve searched information concerning this problem and I found :
1 - It is not a kernel problem : 64 bit on both (AIX 4.3 and AIX 5.2)
2 - I guess that this exe includes links to AIX Asynchronous IO (AIO) functions. By default, AIO is disable "STATE to be configured at system restart” = “defined” (check the state by typing the command : lsdev -C | grep aio => aio0 Defined Asynchronous I/O). To enable AIO, from smitty aio/Change-Show Characteristics of Asynchro,ous I/O, I chose “available” instead of “defined", and reboot the machine. Now when I type lsdev -C | grep aio, the result is : aio0 Available Asynchronous I/O... seems to be OK, but I always have the same error message...
3 - I wonder if it could be a compilation problem. Must I re-compile the code on AIX 5.2 ?
I saw that for someone who recompiled the code on AIX 5.2 the error was exactly the same.

Can anyone help to fix the problem ?
Many Thanks for your help.

Regards

Nathalie BARDIAUX
Smilie
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

daemon running in AIX checking

how do u check if a daemon is running in AIX.. Is it ps -ef|grep daemon lssrc -s demon ??? Thanks! (0 Replies)
Discussion started by: karthikosu
0 Replies

2. AIX

AIX 6.1 app running on 5.x?

Hi, A quick question. If I build an application on AIX 6.1 TL3 using XL C/C++ 8.0 and Oracle 10g, can I then take those binaries and run them on AIX 5.3 and previous? Regards Kevin (3 Replies)
Discussion started by: KevB
3 Replies

3. UNIX for Advanced & Expert Users

Running C#.NET program in AIX?

Hi Guys Am new in UNIX environment I was asked by my boss to write a program that transfer files from the AIX server to the Wintel Server. I have written the program in C# windows which does almost the same thing. So how to run the C# program in UNIX? (1 Reply)
Discussion started by: michmsk
1 Replies

4. Shell Programming and Scripting

`(' unexpected error when running a shell script in AIX

Hi, We are moving from linux to AIX servers, and as a result testing our scripts on the new platform. When I run one of our scripts, I get the following error message: ./branchDataUpdate.sh: syntax error at line 21 : `(' unexpected Following is an extract from the script: ...... ........ (1 Reply)
Discussion started by: dawgfather80
1 Replies

5. AIX

PCs Capable of Running AIX

Does anyone know of any personal computers or very small servers capable of running AIX? I would like to buy one and set it up at home so I can play and learn at the same time. (3 Replies)
Discussion started by: svalenciatech
3 Replies

6. AIX

How much memory for each process running on AIX?

I'm trying to figure how much memory per process is using? I think it's the TRS column x 4k (127800 x 4). Am I right? Any advice is greatly appreciated. PID TTY STAT TIME PGIN SIZE RSS LIM TSIZ TRS %CPU %MEM COMMAND 753726 - A 13:01 0 154100 281900 xx... (7 Replies)
Discussion started by: Beginer0705
7 Replies

7. Programming

Pro*C not running in oracle11g R2 on AIX 6.1....

Hi All, When I am running a pro*c executable on an AIX 6.1.0.0 and Oracle 11gR2 environment which is complied in AIX 6.1.0.0 and Oracle 11gR2 environment only , I am getting segment fault error . When the same code is getting compiled in AIX5.3 Oracle 10gR2 env and run in AIX5.3 Oracle 10gR2 ,... (0 Replies)
Discussion started by: amaniitd
0 Replies

8. AIX

AIX server running very slow

Hello, All the commands on AIX are running very slow. Below is few stats but I didn't find any issue in cpu or memory reosurces vmstat System configuration: lcpu=4 mem=6144MB ent=1.00 kthr memory page faults cpu ----- -----------... (2 Replies)
Discussion started by: Vishal_dba
2 Replies

9. AIX

Error when running .sh file in AIX platform

Hi, I am trying to open Oracle Warehouse Builder (10g) Design Center in AIX platform using the command ./OWBClient.sh. When I execute, I am getting the below error. The JVM option is invalid: -XX: MaxPermSize=256M. Could not create the Java Virtual Machine. Any resolution guidance for the... (4 Replies)
Discussion started by: becky123
4 Replies

10. AIX

Trying to get Samba 4.x running on AIX 7.1?

Hello, I have an AIX 7.1 Power8 machine on which I have a working copy of Samba 3.6 installed using perzl.org repo. The issue I am running into is, Samba 3.6 supports the more secure SMB2 protocol but its tools (smbclient) do not, only in 4.1 did Samba add support for SMB2 to their utilities.... (1 Reply)
Discussion started by: c3rb3rus
1 Replies
VFS_AIO_LINUX(8)					    System Administration tools 					  VFS_AIO_LINUX(8)

NAME
vfs_aio_linux - implement async I/O in Samba vfs using Linux kernel aio calls SYNOPSIS
vfs objects = aio_linux DESCRIPTION
This VFS module is part of the samba(7) suite. The aio_linux VFS module enables asynchronous I/O for Samba on Linux kernels that have the kernel AIO calls available without using the Posix AIO interface. Posix AIO can suffer from severe limitations. For example, on some Linux versions the real-time signals that it uses are broken under heavy load. Other systems only allow AIO when special kernel modules are loaded or only allow a certain system-wide amount of async requests being scheduled. Systems based on glibc (most Linux systems) only allow a single outstanding request per file descriptor which essentially makes Posix AIO useless on systems using the glibc implementation. To work around all these limitations, the aio_linux module was written. It uses the Linux kernel AIO interface instead of the internal Posix AIO interface to allow read and write calls to be processed asynchronously. A queue size of 128 events is used by default. To change this limit set the "aio num events" parameter below. Note that the smb.conf parameters aio read size and aio write size must also be set appropriately for this module to be active. This module MUST be listed last in any module stack as the Samba VFS pread/pwrite interface is not thread-safe. This module makes direct pread and pwrite system calls and does NOT call the Samba VFS pread and pwrite interfaces. EXAMPLES
Straight forward use: [cooldata] path = /data/ice aio read size = 1024 aio write size = 1024 vfs objects = aio_linux OPTIONS
aio_linux:aio num events = INTEGER Set the maximum size of the event queue that is used to limit outstanding IO requests. By default this is set to 128. VERSION
This man page is correct for version 4.0 of the Samba suite. AUTHOR
The original Samba software and related utilities were created by Andrew Tridgell. Samba is now developed by the Samba Team as an Open Source project similar to the way the Linux kernel is developed. Samba 4.0 06/17/2014 VFS_AIO_LINUX(8)
All times are GMT -4. The time now is 02:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy