oracle client 32bit is not working

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I am facing the following error when i try to run sqlplus or tnsping executables from the /bin dir
Error:
/opt/oraClient/11.2.0.4_32/bin $ sqlplus
sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Expected: ( sample from a different working host )
/oracle/software/oraClient/11.2.0.2_32/bin $ sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Tue Jan 23 16:49:16 2018
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name:
I have also searched for this libaio.so.1 file from the non-working host and i ended up in the following.
/opt/oraClient/11.2.0.4_32/bin $ find / -name "libaio.so.1" -type f 2> /dev/null
/opt/oraClient/11.2.0.4_32/lib/stubs/libaio.so.1
/opt/oraClient/11.2.0.4/lib/stubs/libaio.so.1
I had the 64 bit previously installed but never really used it with my reporting application. As i wanted 32bit client, i have got it installed but still did not solve my purpose,
on troubleshooting, that's when i have realized the problem with the client itself.
how can i get my client working in this non-working host. ?
any ideas ?
dependencies
add a comment |Â
up vote
0
down vote
favorite
I am facing the following error when i try to run sqlplus or tnsping executables from the /bin dir
Error:
/opt/oraClient/11.2.0.4_32/bin $ sqlplus
sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Expected: ( sample from a different working host )
/oracle/software/oraClient/11.2.0.2_32/bin $ sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Tue Jan 23 16:49:16 2018
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name:
I have also searched for this libaio.so.1 file from the non-working host and i ended up in the following.
/opt/oraClient/11.2.0.4_32/bin $ find / -name "libaio.so.1" -type f 2> /dev/null
/opt/oraClient/11.2.0.4_32/lib/stubs/libaio.so.1
/opt/oraClient/11.2.0.4/lib/stubs/libaio.so.1
I had the 64 bit previously installed but never really used it with my reporting application. As i wanted 32bit client, i have got it installed but still did not solve my purpose,
on troubleshooting, that's when i have realized the problem with the client itself.
how can i get my client working in this non-working host. ?
any ideas ?
dependencies
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am facing the following error when i try to run sqlplus or tnsping executables from the /bin dir
Error:
/opt/oraClient/11.2.0.4_32/bin $ sqlplus
sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Expected: ( sample from a different working host )
/oracle/software/oraClient/11.2.0.2_32/bin $ sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Tue Jan 23 16:49:16 2018
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name:
I have also searched for this libaio.so.1 file from the non-working host and i ended up in the following.
/opt/oraClient/11.2.0.4_32/bin $ find / -name "libaio.so.1" -type f 2> /dev/null
/opt/oraClient/11.2.0.4_32/lib/stubs/libaio.so.1
/opt/oraClient/11.2.0.4/lib/stubs/libaio.so.1
I had the 64 bit previously installed but never really used it with my reporting application. As i wanted 32bit client, i have got it installed but still did not solve my purpose,
on troubleshooting, that's when i have realized the problem with the client itself.
how can i get my client working in this non-working host. ?
any ideas ?
dependencies
I am facing the following error when i try to run sqlplus or tnsping executables from the /bin dir
Error:
/opt/oraClient/11.2.0.4_32/bin $ sqlplus
sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Expected: ( sample from a different working host )
/oracle/software/oraClient/11.2.0.2_32/bin $ sqlplus
SQL*Plus: Release 11.2.0.2.0 Production on Tue Jan 23 16:49:16 2018
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Enter user-name:
I have also searched for this libaio.so.1 file from the non-working host and i ended up in the following.
/opt/oraClient/11.2.0.4_32/bin $ find / -name "libaio.so.1" -type f 2> /dev/null
/opt/oraClient/11.2.0.4_32/lib/stubs/libaio.so.1
/opt/oraClient/11.2.0.4/lib/stubs/libaio.so.1
I had the 64 bit previously installed but never really used it with my reporting application. As i wanted 32bit client, i have got it installed but still did not solve my purpose,
on troubleshooting, that's when i have realized the problem with the client itself.
how can i get my client working in this non-working host. ?
any ideas ?
dependencies
edited Jan 24 at 13:06
Wouter Verhelst
7,156831
7,156831
asked Jan 24 at 12:57
shravee
1
1
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06
add a comment |Â
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
Install the libaio1 dependency. Using apt
sudo apt install libaio1
That should get you rolling.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Install the libaio1 dependency. Using apt
sudo apt install libaio1
That should get you rolling.
add a comment |Â
up vote
1
down vote
Install the libaio1 dependency. Using apt
sudo apt install libaio1
That should get you rolling.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Install the libaio1 dependency. Using apt
sudo apt install libaio1
That should get you rolling.
Install the libaio1 dependency. Using apt
sudo apt install libaio1
That should get you rolling.
answered Jan 24 at 13:35
datUser
2,2811032
2,2811032
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f419336%2foracle-client-32bit-is-not-working%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Seems like the install is incorrect. Has this been built from source or installed with a package manager?
â Raman Sailopal
Jan 24 at 13:06