Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Install MySQL 3.23 on AIX 4.3.3

Status
Not open for further replies.

muschka

Technical User
May 30, 2001
13
0
0
ZA
Please help

When running the mysql_install_db I get output:

exec(): 0509-036 Cannot load program ./bin/my_print_defaults because of the following errors:
0509-130 Symbol resolution failed for my_print_defaults because:
0509-136 Symbol strcat (number 60) is not exported from
dependent module /usr/local/lib/libz.a(shr.o).
0509-136 Symbol memmove (number 61) is not exported from
dependent module /usr/local/lib/libz.a(shr.o).
0509-136 Symbol bcopy (number 62) is not exported from
dependent module /usr/local/lib/libz.a(shr.o).

How can I look up the 0509-136 errors ?
/usr/local/lib/libz.a does exist

Thanx :)

 
What is your source for the MySQL package?
I hope it works...
Unix was made by and for smart people.
 
Try setting your [tt]LIBPATH[/tt] to include your [tt]/usr/local/lib[/tt] directory even before you start your engines!
I hope it works...
Unix was made by and for smart people.
 
I have the same problem. i don't have a libpath env var and

"find / -name "lib.*" -print" finds nothing

What am I missing?

TIA

M
 
ElgisRamon is correct, echo $LIBPATH and see if /usr/local/lib is in the path. If not do a LIBPATH=$LIBPATH:/usr/local/lib
and then it can find the archive file it needs to load the application.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top