Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > MySQL
|
MySQL General discussion about the MySQL database.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the MySQL section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 15th, 2003, 03:50 PM
Registered User
 
Join Date: Nov 2003
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default `GLIBC_2.3.2' not found ????

 Well I figured out that I cant connect to the mysql.sock file because the
server isnt actually running.
I chmoded the rc.mysqld file in /etc/rc.d to make it executable.
It says to do that if you want mysql to start at bootup.
Well it does'nt and when I try to run it manually this is the error I get.


bash-2.05b# ./rc.mysqld start
bash-2.05b# /usr/bin/my_print_defaults: /lib/libpthread.so.0: version `GLIBC_2.3
.2' not found (required by /usr/bin/my_print_defaults)
Starting mysqld daemon with databases from /var/lib/mysql
031115 14:03:35 mysqld ended


please help...
Thanks,
blizeach

blizeach over and out!
KCHHH!!!!
 
Old November 16th, 2003, 06:43 AM
Authorized User
 
Join Date: Sep 2003
Posts: 41
Thanks: 0
Thanked 0 Times in 0 Posts
Default

To install MySQL 4 see other topic posted by Blizeach http://p2p.wrox.com/topic.asp?TOPIC_ID=5773

firstly ensure rc.mysqld IS exec (I used chmod 755 rc.mysqld) then to ensure I did
ls -la | grep mysql

To get MySQL running automatically on slackware 9 you need to add the mysqld to edit
(Using VIle/EMACS or something similar) /etc/rc.d/rc.M


Add the following lines to your script
#Start MySQL 4 - Correct at date here
if [ -x /etc/rc.d/rc.mysqld ]; then
         echo "Starting MySQL 4"
         . /etc/rc.d/rc.mysqld start
fi
#All done

I placed it at the end, so MySQL will only start in multiuser mode, if u want it to start regardless you need to either add the above to every init level (Except 0) or add it to rc.local.

HTH

---
David Thorne, Student
UK





Similar Threads
Thread Thread Starter Forum Replies Last Post
Another errata found wangxiaohu BOOK: Ivor Horton's Beginning Visual C++ 2005 0 May 15th, 2006 08:38 PM
New errata found wangxiaohu BOOK: Ivor Horton's Beginning Visual C++ 2005 0 May 15th, 2006 07:19 PM
Provider cannot be found Star007 Pro VB 6 0 April 6th, 2006 07:03 AM
"File Not Found" rduncan1 Excel VBA 2 March 7th, 2006 12:17 AM
'The Parameter could not be found' dazzer Crystal Reports 0 July 23rd, 2004 07:43 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.