Trouble with installed / not installed rpm unixODBC/libodbc.so.1

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Trouble with installed / not installed rpm unixODBC/libodbc.so.1
# 1  
Old 08-03-2011
Trouble with installed / not installed rpm unixODBC/libodbc.so.1

Hey there,

i run 1: on my server (RHEL 6) and getting response that the libodbc is not installed. If i use yum for installation, it tells me, there is no package like this ( 2: ). Since in the description of Definiens is mentioned that the Run-time dependency is unixODBC (libodbc.so.1), I assume these libs are somehow equal. Is there any possibility to tell the Definiens-GRID rpm use the installed unixODBC ( 4: )? I really appreciate any answer. I searching since couple of days and found nothing...

Best,
Rob

1:
Code:
[barny@icarus tmp]$ rpm -i Definiens-GRID_Life-1.5-1765-i586.rpm 
error: Failed dependencies:
	libodbc.so.1 is needed by DefiniensGRID_Life-1.5-1765.i586

2:
Code:
[barny@icarus tmp]$ sudo yum install libodbc.so.1
Loaded plugins: refresh-packagekit, rhnplugin
Setting up Install Process
No package libodbc.so.1 available.
Error: Nothing to do

3:
Code:
[barny@icarus tmp]$ rpm -q libodbc.so.1
package libodbc.so.1 is not installed

4:

Code:
[barny@icarus tmp]$ rpm -q unixODBC
unixODBC-2.2.14-11.el6.x86_64

# 2  
Old 08-03-2011
You are installing the i586 version of your package, which then needs a 32bit library for ODBC. The package you have installed is 64bit, which is why the library is listed as incompatible

try

Code:
yum provides libodbc.so.1

then add the 32bit version of that package
This User Gave Thanks to mark54g For This Post:
# 3  
Old 08-03-2011
thanks a lot Mark! its working...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bash find version of an installed application but if none is found set variable to App Not Installed

Hello Forum, I'm issuing a one line bash command to look for the version of an installed application and saving the result to a variable like so: APP=application --version But if the application is not installed I want to return to my variable that the Application is not installed. So I'm... (2 Replies)
Discussion started by: greavette
2 Replies

2. Red Hat

How to create an rpm from installed files?

i would like to package up an rpm from pre-installed files, say i have a program called "widget" installed under "/opt/widget" /opt/widget/bin/* /opt/widget/lib/* /opt/widget/etc/* /opt/widget/log/* and i want to create an rpm from those already installed files, what would the spec file... (2 Replies)
Discussion started by: melixir
2 Replies

3. Linux

rpm packaging issue for unixodbc driver manager

Hi All, I am trying to make rpm package for unixODBC driver manager 2.3.0 using below spec file. During rpmbuild i am getting the error. Can you pls advice how we can overcome this issue %define name unixODBC %define ver 2.3.0 %define prefix /usr %define sysconfdir /etc %define libdir... (2 Replies)
Discussion started by: kamauv234
2 Replies

4. Emergency UNIX and Linux Support

Problem when trying to remove a package using rpm command - error: package is not installed

Hello, i have installed a package by using the command sudo rpm -i filepackage.rpm package filepackage is already installed when i try to remove it, i get an error saying "is not installed": sudo rpm -e filepackage.rpm error: package filepackage is not installed How can... (4 Replies)
Discussion started by: g_p
4 Replies

5. AIX

aioo seems to be not installed

Hi everyone: I've a server running AIX 6.1 which had initialy technology level =0, after an upgrade oslevel -s reports that it was increased to 6100-04-02, however after doing this the aioo command seems to be not present, what did I do wrong? edit: lslpp shows bos.rte.aio was installed: ... (1 Reply)
Discussion started by: edgarvm
1 Replies

6. AIX

OS Patches installed but they seem as not installed

Hello everyone: I've installed an OS patch into AIX 6.1 by running the following command: instfix -d /tmp/6100-02-03 -k "IZ41855" however it seem not installed instfix -i -k "IZ41855" There was no data for IZ41855 in the fix database. what am I doing wrong? (8 Replies)
Discussion started by: edgarvm
8 Replies

7. Linux

RPM used to installed to get a partcular command

Hi, I have a query in linux and please find the details of it I have a command in linux and i want to know which rpm has provided that command. ie: if we take ifconfig command ,i want to know what is the rpm package used to get that command. Regards Arun.Kakarla (3 Replies)
Discussion started by: Arun.Kakarla
3 Replies

8. Shell Programming and Scripting

Check if rpm is installed

Hi all im hoping someone can help, i want to check if a rpm package is installed, if it is then display one text if not then another text, below is what i have got so far, im am very much a noob at this, as you can probably can see so if possible make it simple, and a big thankyou if you can help... (3 Replies)
Discussion started by: dave123
3 Replies

9. Shell Programming and Scripting

Two Oracle's installed

In my directory /u01/app/oracle/product I have two Oracle products installed. $ ls 8.1.7 817_http The application installed on the server is using PL/SQL procs to display webpages(not sure how) Now I have to create a similar server for development. Our sysadmin has built up a host... (1 Reply)
Discussion started by: rahulrathod
1 Replies
Login or Register to Ask a Question