Problem installing MySQL 5.0.24a from RHEL RPM on Centos Linux VPS box

2006-09-20 Thread Vasudev Ram

Hi list,

I'm trying to install MySQL 5.0.24a RHEL RPM on a Centos Linux VPS box.

uname -a output on this box:

Linux my.host.com 2.6.9-022stab078.14-enterprise #1 SMP Wed Jul 19 14:35:02
MSD 2006 i686 athlon i386 GNU/Linux

It already has MySQL 4.1 RHEL installed on it - I checked this with rpm -q
mysql, which shows:

 mysql-4.1.20-1.RHEL4.1

The 4.1 install came by with the box, probably (not sure but maybe able to
find out from the previous administrator or the hosting provider).

I don't want to uninstall the 4.1 if I can help it. Reason: though I'm
fairly comfortable
with Linux software installations in general, I haven't installed MySQL
before, and so not sure of all the files that get installed, and their
locations, particularly into other directories than the base installation
directory (e.g. there is a file called my.cnf in /etc). So not sure if all
the files installed with 4.1 will be properly removed if I uninstall 4.1,
and if they don't, it may create conflicts; e.g. some config file of
4.1might get used when I try to run
5.0 after installing it, and this might lead to strange errors.

So I want to install MySQL 5.0 into a different location.
That is why I used the --prefix option in the install command that I used:

rpm --install --test --hash --verbose --prefix /root/mysql5.0rhel4
MySQL-server-standard-5.0.24a-0.rhel4.i386.rpm

When I run the above command (as root), I get this error message:

warning: MySQL-server-standard-5.0.24a-0.rhel4.i386.rpm: V3 DSA signature:
NOKEY, key ID 5072e1f5
error: package MySQL-server-standard is not relocatable

Does this mean that this RPM can only be installed in the standard/default
location?
Is there any way or any other kind of package (e.g. not an RPM but a tar.gz)
that will work - for the binary package, I mean - such that it will allow me
to install MySQL into some base location (directory) specified by me?
Otherwise I can install MySQL from the source tarball which I've already
downloaded, but thought to avoid that route if possible, as I suspect it
might take some time (not sure). This is because I just previously installed
the GNU C++ compiler (g++) on the box, which I had to do because I had tried
to install MySQL from the source tarball earlier and got a message C++
compiler fails sanity check, and Googling for that message, indicated that
the C++ compiler was not installed on the system - my guess is that the C++
compiler is not there by default on the box because it is a VPS, so they
want to minimize the disk space used by default. So I downloaded and
installed the g++ compiler. It worked ok - I wrote a short C++ test program,
could compile and run it.

So the reason I want to avoid installing MySQL from source, is because the
C++ compiler build+install, took a good amount of time, over 3.5 hours,
probably because it compiles hundreds of small source files, and so does a
lot of file I/O, and my client doesn't want to spend a lot of time on the
install (the project is on a tight schedule).

Thanks for any help or pointers.

Vasudev Ram
http://www.dancingbison.com
10.times say Truly rural


Problem installing mysql on Debian linux

2006-02-25 Thread Tselemegkos Grigorios
Hi,

I'm trying to install mysql 4.0.25 from source on Debian linux without root 
privileges.
The problem comes when i execute the configure command.
I typed:
configure --prefix /home/grtsel/mysql

and the output error was:

checking for FIONREAD in sys/ioctl.h... yes
checking for TIOCSTAT in sys/ioctl.h... no
checking if struct dirent has a d_ino member... yes
checking whether signal handlers are of type void... yes
checking for tgetent in -lncurses... no
checking for tgetent in -lcurses... no
checking for tgetent in -ltermcap... no
checking for termcap functions library... configure: error: No curses/termcap 
library found

I installed ncurses package from source in order to bypass this problem but 
nothing happend...

Does anyone know what's going wrong..?
Please help me...

Gregory








Re: Problem installing mysql on Debian linux

2006-02-25 Thread Sam Tran
On 2/25/06, Tselemegkos Grigorios [EMAIL PROTECTED] wrote:
 Hi,

 I'm trying to install mysql 4.0.25 from source on Debian linux without root 
 privileges.
 The problem comes when i execute the configure command.
 I typed:
 configure --prefix /home/grtsel/mysql

 and the output error was:

 checking for FIONREAD in sys/ioctl.h... yes
 checking for TIOCSTAT in sys/ioctl.h... no
 checking if struct dirent has a d_ino member... yes
 checking whether signal handlers are of type void... yes
 checking for tgetent in -lncurses... no
 checking for tgetent in -lcurses... no
 checking for tgetent in -ltermcap... no
 checking for termcap functions library... configure: error: No curses/termcap 
 library found

 I installed ncurses package from source in order to bypass this problem but 
 nothing happend...

 Does anyone know what's going wrong..?
 Please help me...


Gregory,

You need to install the termcap libraries.
What version of Debian are you using? Why don't you install MySQL 5.0.18?

Sam

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Problem installing mysql on Debian linux

2006-02-25 Thread Tselemegkos Grigorios

Thanks for the reply Sam,  :-)

I'm using Debian 3.1
I thought that termcap libraries where into ndevel package, which i
installed.
Where can i find the termcap libraries.
Do i have to do something special in the configure of termcap or mysql?
I need a version of mysql  4.1.0 because i need to install CDSware (it has
problems with earlier versions)
Does mysql 5.0.18 compile without termcap libraries installed?

Gregory




- Original Message - 
From: Sam Tran [EMAIL PROTECTED]

To: Tselemegkos Grigorios [EMAIL PROTECTED]
Cc: mysql@lists.mysql.com
Sent: Saturday, February 25, 2006 9:34 PM
Subject: Re: Problem installing mysql on Debian linux


On 2/25/06, Tselemegkos Grigorios [EMAIL PROTECTED] wrote:

Hi,

I'm trying to install mysql 4.0.25 from source on Debian linux without
root privileges.
The problem comes when i execute the configure command.
I typed:
configure --prefix /home/grtsel/mysql

and the output error was:

checking for FIONREAD in sys/ioctl.h... yes
checking for TIOCSTAT in sys/ioctl.h... no
checking if struct dirent has a d_ino member... yes
checking whether signal handlers are of type void... yes
checking for tgetent in -lncurses... no
checking for tgetent in -lcurses... no
checking for tgetent in -ltermcap... no
checking for termcap functions library... configure: error: No
curses/termcap library found

I installed ncurses package from source in order to bypass this problem
but nothing happend...

Does anyone know what's going wrong..?
Please help me...



Gregory,

You need to install the termcap libraries.
What version of Debian are you using? Why don't you install MySQL 5.0.18?

Sam

__
Χρησιμοποιείτε Yahoo!;
Βαρεθήκατε τα ενοχλητικά μηνύματα (spam);   Το Yahoo! Mail διαθέτει την καλύτερη δυνατή προστασία κατά των ενοχλητικών μηνυμάτων  
http://mail.yahoo.gr 



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Problem installing MySQL 5.0

2006-01-03 Thread Francesco Vincenti
Hello everybody,
This is the first time I try to install MySQL 5.0, I think I followed the
steps showed by the documentation in the right way, but when I run the
command:

rpm -i MySQL-server-Version-.i386.rpm

I get back the error:

error: Failed dependencies:
perl(DBI) is needed by MySQL-server-standard-5.0.18-0.rhel3

I am trying to install MySQL on this platform:
- CPU:AMD Athlon 800 Mhz
- Operating System: Linux Fedora core 2, release 2.6.5-1.358

The packages I have downloaded are:
- MySQL-server-standard-5.0.18-0.rhel3.i386.rpm
- MySQL-client-standard-5.0.18-0.rhel3.i386.rpm

After the error, I found a few information on internet about perl(DBI), so I
downloaded it  and  installed it on my system.
The test step (make test) ended with error 355 (??), but I run anyway make
install which ended without problems, I think.
At this point I do not know what to do, so I need your help to solve this
problem.
Greetings
Francesco Vincenti

*
*


Re: Problem installing MySQL 5.0

2006-01-03 Thread Chander Ganesan

You can force the installation (--nodeps) when installing the RPM package.

Even if you build DBI (and not install it from RPM) it won't be in the 
RPM database, and you'll get the same error.


You should be able to get a FC2 RPM for the DBI module - download that 
RPM and install it, then install MySQL - that would be the easiest 
course of action...


--
Chander Ganesan
Open Technology Group, Inc.
One Copley Parkway, Suite 210
Morrisville, NC  27560
Phone: 877-258-8987/919-463-0999
http://www.otg-nc.com




Francesco Vincenti wrote:


Hello everybody,
This is the first time I try to install MySQL 5.0, I think I followed the
steps showed by the documentation in the right way, but when I run the
command:

rpm -i MySQL-server-Version-.i386.rpm

I get back the error:

error: Failed dependencies:
   perl(DBI) is needed by MySQL-server-standard-5.0.18-0.rhel3

I am trying to install MySQL on this platform:
- CPU:AMD Athlon 800 Mhz
- Operating System: Linux Fedora core 2, release 2.6.5-1.358

The packages I have downloaded are:
- MySQL-server-standard-5.0.18-0.rhel3.i386.rpm
- MySQL-client-standard-5.0.18-0.rhel3.i386.rpm

After the error, I found a few information on internet about perl(DBI), so I
downloaded it  and  installed it on my system.
The test step (make test) ended with error 355 (??), but I run anyway make
install which ended without problems, I think.
At this point I do not know what to do, so I need your help to solve this
problem.
Greetings
Francesco Vincenti

*
*

 




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Problem installing MySQL 5.0

2006-01-03 Thread Francesco Vincenti
Hello Chander,
thank you very much.
I tried to do in your way ad the installation works!
I downloaded the perl(DBI) .rpm and I installed it the first time using the
command:

rpm -Uvh perl-DBI-1.50-1.i386.rpm

but I got back an error about one glibc library not founded, so I use this
format:

rpm -Uvh --nodeps perl-DBI-1.50-1.i386.rpm

and the installation finished without problems.
Then, I installed both MySQL-server-standard-5.0.18-0 .rhel3.i386.rpm, with
which I have had the problem, and
MySQL-client-standard-5.0.18-0.rhel3.i386.rpm and all went in the right way.
Greetings
Francesco Vincenti


Re: Problem installing MySQL on Mac OSX 10.4.3

2005-12-05 Thread Brent Baisley
Those message are kind of odd, even on a messed up system. I would  
first run the repair privileges in the disk utility for good measure,  
then delete all traces of MySQL and just start over. MySQL should be  
in /usr/local/mysql. To remove it just type:

sudo rm -R /usr/local/mysql

Then try installing again. If you are running OSX Server, things may  
be a little different. Apple puts MySQL files in different places on  
there server install as I recall. You may need to poke around a bit  
to find them. Check /usr/local and also /etc


On Dec 2, 2005, at 5:26 PM, Ton Kuypers wrote:


Hi,

I've downloaded the mysql-max-4.1.15-apple-darwin8.2.0- 
powerpc.dmg and tried to install it, but I keep on getting the  
error You cannot continue. There is nothing to install.
I've also tried the mysql-max-5.0.16-osx10.4-powerpc.dmg and the  
mysql-standard-4.1.15-apple-darwin8.2.0-powerpc.dmg, all give the  
same result...


Can anyone help me? I think the previous person using this Mac  
screwed up some things, I've found traces of mySQL on the system,  
but I cannot find anything usable anymore.


Any help is welcome!


warm regards,


Ton Kuypers
Digital Media Partners bvba
Tel. +32 (0)477 / 739 530
Fax +32 (0)14 / 71 03 04
http://www.dmp-int.com





--
Brent Baisley
Systems Architect
Landover Associates, Inc.
Search  Advisory Services for Advanced Technology Environments
p: 212.759.6400/800.759.0577



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Problem installing MySQL on Mac OSX 10.4.3

2005-12-02 Thread Ton Kuypers

Hi,

I've downloaded the mysql-max-4.1.15-apple-darwin8.2.0-powerpc.dmg  
and tried to install it, but I keep on getting the error You cannot  
continue. There is nothing to install.
I've also tried the mysql-max-5.0.16-osx10.4-powerpc.dmg and the  
mysql-standard-4.1.15-apple-darwin8.2.0-powerpc.dmg, all give the  
same result...


Can anyone help me? I think the previous person using this Mac  
screwed up some things, I've found traces of mySQL on the system, but  
I cannot find anything usable anymore.


Any help is welcome!


warm regards,


Ton Kuypers
Digital Media Partners bvba
Tel. +32 (0)477 / 739 530
Fax +32 (0)14 / 71 03 04
http://www.dmp-int.com





Problem installing Mysql 4.1 on Fedora 2

2004-11-16 Thread ofz
Hi:

When i tried to install Mysql using the rpm on a Fedora 2 .. i received this 
error:

shellrpm -i MySQL-server-4.1.7-0.i386.rpm
warning: MySQL-server-4.1.7-0.i386.rpm: V3 DSA signature: NOKEY, key ID
5072e1f5error: Failed dependencies:
MySQL conflicts with mysql-3.23.58-9
MySQL-server conflicts with mysql-server-3.23.58-9


Any suggestions?

Thanks,

Oscar Fernando






Telesat, más fácil...más Internet.
http://www.telesat.com.co/

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Problem installing Mysql 4.1 on Fedora 2

2004-11-16 Thread Spenser
I had the same problem.  It just won't seem to upgrade.  You need to
uninstall mysql-3.23.58-9 and mysql-server-3.23.58-9 first.  Enter
something like this:

rpm -ev mysql-3.23.58-9 mysql-server-3.23.58-9


When it's done, then install version 4.x


On Tue, 2004-11-16 at 15:43, [EMAIL PROTECTED] wrote:
 Hi:
 
 When i tried to install Mysql using the rpm on a Fedora 2 .. i received this 
 error:
 
 shellrpm -i MySQL-server-4.1.7-0.i386.rpm
 warning: MySQL-server-4.1.7-0.i386.rpm: V3 DSA signature: NOKEY, key ID
 5072e1f5error: Failed dependencies:
 MySQL conflicts with mysql-3.23.58-9
 MySQL-server conflicts with mysql-server-3.23.58-9
 
 
 Any suggestions?
 
 Thanks,
 
 Oscar Fernando
 
 
 
 
 
 
 Telesat, más fácil...más Internet.
 http://www.telesat.com.co/


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Problem Installing MySQL Max

2004-05-24 Thread Lou Olsten
Trying to install MySQL 4.1.1 Max binary using MySQL-Max-4.1.1-0.i386.rpm onto Linux 
Fedora version.  When I do, I get the following failed dependencies:

libcrypto.so.0.9.6 is needed by MySQL-Max-4.1.1-0
libssl.so.0.9.6 is needed by MySQL-Max-4.1.1-0
libstdc++-libc6.2-2.so.3 is needed by MySQL-Max-4.1.1-0

But on my system I DOhave:

/lib/libcrypto.so.0.9.7a
/libssl.so.0.9.7a

I haven't figured out where to get the libstdc++ one yet, but shouldn't the other two 
be fine seeing how they are later versions?

Lou

Re: Problem Installing MySQL Max

2004-05-24 Thread Jack Woehr
Lou Olsten wrote:

 I haven't figured out where to get the libstdc++

That's part of gcc usually found in /usr/local/lib or in the lib dir under the gcc 
installation dir.

--
Jack J. Woehr# [F]ar in the empty sky a solitary esophagus slept
http://www.well.com/~jax #  upon motionless wing; everywhere brooded stillness,
http://www.softwoehr.com #  serenity, and the peace of God. - Mark Twain




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Problem installing MYSql 4.0.12 on MAC OSX 10.1.3

2003-08-21 Thread Devang Panchalia
Hi,
 I have downloaded MySql-standard-4.0.12 FOR MAC from the MySql website.
I have installed it on Mac OS X 10.1.3.
When i am starting the MySql, it starts and ends with the message
   030821 time MySqld ended.
Does anyone know what the problem is ...??
Devang.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Problem installing MYSql 4.0.12 on MAC OSX 10.1.3

2003-08-21 Thread Egor Egorov
Devang Panchalia [EMAIL PROTECTED] wrote:
 Hi,
 I have downloaded MySql-standard-4.0.12 FOR MAC from the MySql website.
 I have installed it on Mac OS X 10.1.3.
 When i am starting the MySql, it starts and ends with the message
   030821 time MySqld ended.
 Does anyone know what the problem is ...??

Check error log. (You can find it in the MySQL data dir).



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
   ___/   www.mysql.com




-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Problem installing MYSql 4.0.12 on MAC OSX 10.1.3

2003-08-21 Thread Kieran Kelleher
It may be that you did not give the mysql user ownership of the Data 
folder?
Check your permissions first by typing:
[KieranMac:~] kieran% ls -al /usr/local/mysql/

 this shold show data folder as something like this:

drwxr-x---  13 mysql  wheel  442 Aug 19 19:52 data

Type this on the command line to make mysql the owner if it is not the 
owner:

sudo chown -R mysql /usr/local/mysql/data

For detailed support, this is a great site:
http://www.entropy.ch/software/macosx/mysql/
On Thursday, August 21, 2003, at 07:00 AM, Devang Panchalia wrote:

Hi,
 I have downloaded MySql-standard-4.0.12 FOR MAC from the MySql 
website.
I have installed it on Mac OS X 10.1.3.
When i am starting the MySql, it starts and ends with the message
   030821 time MySqld ended.
Does anyone know what the problem is ...??
Devang.

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]


___
Kieran Kelleher
Palm Harbor, Florida USA
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Problem installing MySQL v4.0.14b

2003-08-17 Thread Debbie
Hi,

I have just downloaded MySQLv4.0.14b for windows and 21% through the
installation, it displays the following error:

An error occurred during the move dataq process: -132
Component:
File Group:
File:

The MD5 hash matches the one on your website and I have spent another 5
hours or so downloading it again from your main site instead of a mirror
site, but it stills does the same thing.  I'm installing it into the the
same folder as the previous version (3.23.49).

Could you tell me what I could possibly be doing wrong or of a way I could
get around this, please?

With Regards,

Debbie Figg


Re: Problem installing MySQL v4.0.14b

2003-08-17 Thread miguel solorzano
At 17:35 17/8/2003 +0100, Debbie wrote:
Hi,
Hi,

I have just downloaded MySQLv4.0.14b for windows and 21% through the
installation, it displays the following error:
An error occurred during the move dataq process: -132
Component:
File Group:
File:
The above frequently happens because the installer tries to write
a file that is being using by another process (the re-write action
is denied and then the installer aborts).
Take a look if any other application is using, for example, the
libmysql.dll, if the mysql.exe is running, etc.
Stop the applications before the setup.
The MD5 hash matches the one on your website and I have spent another 5
hours or so downloading it again from your main site instead of a mirror
site, but it stills does the same thing.  I'm installing it into the the
same folder as the previous version (3.23.49).
Could you tell me what I could possibly be doing wrong or of a way I could
get around this, please?
With Regards,

Debbie Figg
--
Regards,
For technical support contracts, visit https://order.mysql.com/
Are you MySQL certified?, http://www.mysql.com/certification/
Miguel Angel Solórzano [EMAIL PROTECTED]
São Paulo - Brazil
-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

problem installing mysql

2003-07-29 Thread qqasim
I have tried to install mysql 4.0.14 and previous version on my machine.

After installation when I try to run mysql, i get error:

Cannot connect to localhost port...

my machine is not connected to internet. I also have firewall installed on my 
machine, but this should not matter.

Any suggestions why I may be getting this error.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: problem installing mysql

2003-07-29 Thread tevans
Make sure your firewall isn't blocking port 3306 (the default tcp port)
on localhost (127.0.0.1).  Firewalls DO matter.


 I have tried to install mysql 4.0.14 and previous version on my machine.

 After installation when I try to run mysql, i get error:

 Cannot connect to localhost port...

 my machine is not connected to internet. I also have firewall installed
 on my
 machine, but this should not matter.

 Any suggestions why I may be getting this error.



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



problem installing mysql 3.32.51

2002-10-19 Thread usha
Can anyone shower light over this problem:

I  tried to install mysql 3.32.51. But it throws the following error while
trying to start safe_mysqld:

021019 17:40:10  mysqld started
021019 17:40:10  /usr/local/libexec/mysqld: Can't create/write to file
'/usr/local/var/ibm.pid' (Errcode: 13)
021019 17:40:10  /usr/local/libexec/mysqld: Can't find file:
'./mysql/host.frm' (errno: 13)
021019 17:40:10  /usr/local/libexec/mysqld: Error on delete of
'/usr/local/var/ibm.pid' (Errcode: 13)
021019 17:40:10  mysqld ended





-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem Installing mysql-3.23.52

2002-09-01 Thread Doug Hall

Can anyone help.
I'm installing (at the mo) 4.0.3 Beta, but the error message is the same
which ever version..



libmysql.c: In function `mysql_real_connect':
libmysql.c:1675: warning: passing arg 5 of `gethostbyname_r' from
incompatible pointer type
libmysql.c:1675: too few arguments to function `gethostbyname_r'
libmysql.c:1675: warning: assignment makes pointer from integer without
a cast



Thanks

Doug Hall
[EMAIL PROTECTED]


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem Installing mysql-3.23.52

2002-09-01 Thread David Lloyd


( mysql, query )

 Can anyone help.
 I'm installing (at the mo) 4.0.3 Beta, but the error message is the same
 which ever version..
 
 libmysql.c: In function `mysql_real_connect':
 libmysql.c:1675: warning: passing arg 5 of `gethostbyname_r' from
 incompatible pointer type
 libmysql.c:1675: too few arguments to function `gethostbyname_r'
 libmysql.c:1675: warning: assignment makes pointer from integer without
 a cast

There's an argument mismatch; I don't have the source to this version so
I can't help you.

However, what architecture/compiler are you using? This might help the
others help you :-)

DSL
-- 
Say you'll share with me one love, one lifetime
 Lead me, save me from my solitude.
Say you'll want me with you, here beside you
 Anywhere you go let me go too... (Webber/Hart/Black)

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem Installing mysql-3.23.52

2002-08-29 Thread Lenz Grimmer

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 28 August 2002 22:53, Carlos Oyarzún wrote:

 I´m trying to install mysql-3.23.52 on a machine running RedHat 7.0. I´m
 using the following procedure:

 ./configure --prefix=/usr/local/mysql
 make
 make install

 The first two commands run fine, but run install gives me the following
 error,

 make[2]: *** [install-benchSCRIPTS] Error 1
 make[2]: Leaving directory `/usr/local/mysql/sql-bench'
 make[1]: *** [install-am] Error 2
 make[1]: Leaving directory `/usr/local/mysql/sql-bench'
 make: *** [install-recursive] Error 1

 Does anyone know what the problem is?

Actually, the interesting error messages are a bit above the snippet you 
posted. These ones alone do not give any clues...

Bye,
LenZ
- -- 
For technical support contracts, visit https://order.mysql.com/?ref=mlgr
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Lenz Grimmer [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Production Engineer
/_/  /_/\_, /___/\___\_\___/   Hamburg, Germany
   ___/   www.mysql.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE9bd8sSVDhKrJykfIRApMJAJ9QsyJUD0CFp92kDzWcHhPPy0ydpACfeLuc
XRb9jMRCZReHM5TUYR2GWUI=
=KI/R
-END PGP SIGNATURE-


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem Installing mysql-3.23.52

2002-08-28 Thread Carlos Oyarzún

Hi,

I´m trying to install mysql-3.23.52 on a machine running RedHat 7.0. I´m
using the following procedure:

./configure --prefix=/usr/local/mysql
make
make install

The first two commands run fine, but run install gives me the following
error,

make[2]: *** [install-benchSCRIPTS] Error 1
make[2]: Leaving directory `/usr/local/mysql/sql-bench'
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/usr/local/mysql/sql-bench'
make: *** [install-recursive] Error 1

Does anyone know what the problem is?



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing MySQL-3.23.45-1.i386.rpm

2001-11-30 Thread Jean-Luc Fontaine

Brian French wrote:

hey, i'm having trouble installing MySQL-3.23.45-1.i386.rpm

already installed
MySQL-client-3.23.45-1.i386.rpm
MySQL-devel-3.23.45-1.i386.rpm

when i try to install MySQL-3.23.45-1.i386.rpm i get the following:

[root@localhost rpms]#rpm -U --force --replacefiles MySQL-3.23.45-1.i386.rpm
error: failed dependencies:
libmysqlclient.so.10   is needed by php-mysql-4.0.4pl1-9

could you tell me how to get around this problem?

Have you tried installing MySQL-shared?

Jean-Luc


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing MySQL-3.23.45-1.i386.rpm

2001-11-30 Thread EdwardSPL

Brian French wrote:
 
 hey, i'm having trouble installing MySQL-3.23.45-1.i386.rpm
 
 already installed
 MySQL-client-3.23.45-1.i386.rpm
 MySQL-devel-3.23.45-1.i386.rpm
 
 when i try to install MySQL-3.23.45-1.i386.rpm i get the following:
 
 [root@localhost rpms]#rpm -U --force --replacefiles MySQL-3.23.45-1.i386.rpm
 error: failed dependencies:
 libmysqlclient.so.10   is needed by php-mysql-4.0.4pl1-9
 
 could you tell me how to get around this problem?

Hello,

What is your system ?

Edward.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing MySQL-3.23.45-1.i386.rpm

2001-11-30 Thread EdwardSPL

Brian French wrote:
 
 running
 pentium 80
 64mb ram
 30 gig HD
 Redhat Linux 7.1
 perl 5.06
 Mysql
  |_ previously 3.23.39 after this went to 3.23.45
 
 php 4.0.4
 |_ w/ ZendOptimizer
 
 how i got to this problem:
 was running php/mysql (versions above)
 php was installed via the standard .tar
 
 the MySQL server skrewed up and (i think) corrupted a bunch of my DB files
 (thank god i keep backups).
 Me still being a novice, i decided to just reinstall the MySQL server, i
 went to www.mysql.com
 and noticed the had a newer version, so i Dl'd that version, and installed:
 
 packages in order:
 MySQL-client-3.23.45-1.i386.rpm
 MySQL-devel-3.23.45-1.i386.rpm
 
 tried to install:
 MySQL-3.23.45-1.i386.rpm
 but kept on receiving this error (as stated in previous reply):
 
  error: failed dependencies:
  libmysqlclient.so.10   is needed by php-mysql-4.0.4pl1-9
 
 was beat myself up for hours about this error, then went back to mysql.com
 and noiced the rpm:
 MySQL-shared-3.23.45-1.i386.rpm
 
 installed this and it worked fine.
 
 this seemed to fix the problem, the i had to do these:
 
 1. restore my databases and set proper ownership/permissions (mysql.mysql)
 2. restart the mysql server
 3. restore the mysql users
 4. reset the DB user: root's password
 5. restore settings from the old php.ini to the new one, this step should be
 up further, though
 
 also tried to install:
 php-curl-4.0.6-10.arvin.rh7.1.i686.rpm
 (tried to install this then realized it for another version of php.
 if anyone knows where i can pick up the 4.0.4 of this i'd appreciate 
it.)
 
 i hope posting this back to the board will help someone

Hello,

You can try to remove the rpm packages of php and MySQL...
Then, install php and MySQL at :
ftp://updates.redhat.com/6.2/en/os/i386/
If any problem, please mail to me !

Edward.



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MySQL-3.23.45-1.i386.rpm

2001-11-29 Thread Brian French

hey, i'm having trouble installing MySQL-3.23.45-1.i386.rpm

already installed
MySQL-client-3.23.45-1.i386.rpm
MySQL-devel-3.23.45-1.i386.rpm

when i try to install MySQL-3.23.45-1.i386.rpm i get the following:

[root@localhost rpms]#rpm -U --force --replacefiles MySQL-3.23.45-1.i386.rpm
error: failed dependencies:
libmysqlclient.so.10   is needed by php-mysql-4.0.4pl1-9

could you tell me how to get around this problem?


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MySQL

2001-10-04 Thread David Aldridge

I downloaded the latest version of MySQL and installed it on my Sparc
Ultra5. I used the pkgadd -d to install it. It said the install was
successful. When I run mysql_install_db, I get the following error message:

# ./mysql_install_db
Creating db table
Creating host table
Creating user table
Creating func table
Creating tables_priv table
Creating columns_priv table
ld.so.1: /usr/local/mysql/libexec/mysqld: fatal: libstdc++.so.2.10.0: open
failed: No such file or directory
Killed
Installation of grant tables failed!

Examine the logs in /usr/local/mysql/var for more information.


There are no logs in the indicated directory.
Any help that could be offered would be greatly appreciated.

David Aldridge



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MySQL

2001-10-04 Thread Jani Tolonen

David Aldridge writes:
  I downloaded the latest version of MySQL and installed it on my Sparc
  Ultra5. I used the pkgadd -d to install it. It said the install was
  successful. When I run mysql_install_db, I get the following error message:
  
  # ./mysql_install_db
  Creating db table
  Creating host table
  Creating user table
  Creating func table
  Creating tables_priv table
  Creating columns_priv table
  ld.so.1: /usr/local/mysql/libexec/mysqld: fatal: libstdc++.so.2.10.0: open
  failed: No such file or directory
  Killed
  Installation of grant tables failed!
  
  Examine the logs in /usr/local/mysql/var for more information.
  
  
  There are no logs in the indicated directory.
  Any help that could be offered would be greatly appreciated.
  
  David Aldridge

Hi David,

Please install package 'libstdc++-2.10.x' for your platform and try
again.

Regards,

- Jani

For technical support contracts, visit https://order.mysql.com/
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Jani Tolonen [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Full-Time Developer
/_/  /_/\_, /___/\___\_\___/   Helsinki, Finland
   ___/   www.mysql.com

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MySQL

2001-09-23 Thread Huai Liu

Hi, 

I am trying to install MySQL in my own account on Sun Sparc 
solaris2.7. I am an EE student trying to finish a project. Here 
is my problem:

I downloaded source MySQL file to my home directory. As I am not 
root user, I failed to run groupadd mysql and useradd -g 
mysql mysql. After I gtar-ed the MySQL .gz file, but failed to 
run ./configure --prefix=/usr/local/mysql. The error message I 
got was checking return type of sprintf... configure: error: 
can not run test program while cross compiling. 

I succeeded loading binary version of MySQL to my account. 
However, when I tried to install sipconf, I got error message 
Could not find MySQL Client library. I thought the C API 
library might not be in the binary version, so I tried to 
download the source and worked on it. Could you please give me 
some help? 

Your earliest reply would be greatly appreciated. 

Thank you very much in advance!

Best regards, 

Huai Liu


/home/hliu/mysql
hliu@bronto ./configure --prefix=/home/hliu/mysql
creating cache ./config.cache
checking host system type... sparc-sun-solaris2.7
checking target system type... sparc-sun-solaris2.7
checking build system type... sparc-sun-solaris2.7
checking for a BSD compatible install... ./install-sh -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for gawk... gawk
checking for gcc... gcc
checking whether the C compiler (gcc   ) works... yes
checking whether the C compiler (gcc   ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for c++... c++
checking whether the C++ compiler (c++   ) works... yes
checking whether the C++ compiler (c++   ) is a cross-compiler... yes
checking whether we are using GNU C++... yes
checking whether c++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for ranlib... ranlib
checking for ld used by GCC... /usr/ccs/bin/ld
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking for BSD-compatible nm... /usr/ccs/bin/nm -p
checking whether ln -s works... yes
updating cache ./config.cache
loading cache ./config.cache within ltconfig
checking for object suffix... o
checking for executable suffix... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... yes
checking if gcc static flag -static works... -static
checking if the linker (/usr/ccs/bin/ld) is GNU ld... no
checking whether the linker (/usr/ccs/bin/ld) supports shared libraries... yes
checking command to parse /usr/ccs/bin/nm -p output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/ccs/bin/ld option to reload object files... -r
checking dynamic linker characteristics... solaris2.7 ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
updating cache ./config.cache
loading cache ./config.cache
checking for a BSD compatible install... ./install-sh -c
checking for bison... bison -y
checking for pdftex... manual.pdf
checking return type of sprintf... configure: error: can not run test program while 
cross compiling


hliu@bronto scripts/mysql_install_db
Preparing db table
Preparing host table
Preparing user table
Preparing func table
Preparing tables_priv table
Preparing columns_priv table
Installing all prepared tables
010923 17:29:17  ./bin/mysqld: Shutdown Complete


To start mysqld at boot time you have to copy support-files/mysql.server
to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
This is done with:
./bin/mysqladmin -u root -p password 'new-password'
./bin/mysqladmin -u root -h bronto.sce.carleton.ca -p password 'new-password'
See the manual for more instructions.

You can start the MySQL daemon with:
cd . ; ./bin/safe_mysqld 

You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:
cd sql-bench ; run-all-tests

Please report any problems with the ./bin/mysqlbug script!

The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at https://order.mysql.com



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To 

Problem installing MySQL

2001-09-23 Thread Huai Liu

Hi, 

I attached a wrong file in my last email. I should have sent you 
config.log file. Here it is.

Sorry for the mistake. 

Thanks again.

Huai Liu 


This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

configure:813: checking host system type
configure:834: checking target system type
configure:852: checking build system type
configure:887: checking for a BSD compatible install
configure:940: checking whether build environment is sane
configure:975: checking whether make sets ${MAKE}
configure:1021: checking for working aclocal
configure:1034: checking for working autoconf
configure:1047: checking for working automake
configure:1060: checking for working autoheader
configure:1073: checking for working makeinfo
configure:1175: checking whether to enable maintainer-specific portions of Makefiles
configure:1217: checking whether build environment is sane
configure:1234: checking whether make sets ${MAKE}
configure:1302: checking for gawk
configure:1334: checking for gcc
configure:1447: checking whether the C compiler (gcc   ) works
configure:1463: gcc -o conftest conftest.c  15
configure:1489: checking whether the C compiler (gcc   ) is a cross-compiler
configure:1494: checking whether we are using GNU C
configure:1503: gcc -E conftest.c
configure:1522: checking whether gcc accepts -g
configure:1558: checking for c++
configure:1590: checking whether the C++ compiler (c++   ) works
configure:1606: c++ -o conftest conftest.C  15
configure:1632: checking whether the C++ compiler (c++   ) is a cross-compiler
configure:1637: checking whether we are using GNU C++
configure:1646: c++ -E conftest.C
configure:1665: checking whether c++ accepts -g
configure:1697: checking how to run the C preprocessor
configure:1718: gcc -E  conftest.c /dev/null 2conftest.out
configure:1833: checking for ranlib
configure:1943: checking for ld used by GCC
configure:2005: checking if the linker (/usr/ccs/bin/ld) is GNU ld
configure:2021: checking for BSD-compatible nm
configure:2057: checking whether ln -s works
ltconfig:603: checking for object suffix
ltconfig:604: gcc -cconftest.c 15
ltconfig:629: checking for executable suffix
ltconfig:630: gcc -o conftest conftest.c  15
ltconfig:776: checking if gcc PIC flag -fPIC works
ltconfig:777: gcc -c   -fPIC -DPIC  conftest.c 15
ltconfig:829: checking if gcc supports -c -o file.o
ltconfig:830: gcc -c   -o out/conftest2.o  conftest.c 15
ltconfig:862: checking if gcc supports -c -o file.lo
ltconfig:863: gcc -c   -c -o conftest.lo  conftest.c 15
ltconfig:914: checking if gcc supports -fno-rtti -fno-exceptions
ltconfig:915: gcc -c   -fno-rtti -fno-exceptions -c conftest.c  conftest.c 15
ltconfig:958: checking if gcc static flag -static works
ltconfig:959: gcc -o conftest -static conftest.c  15
ltconfig:1653: checking if global_symbol_pipe works
ltconfig:1654: gcc -cconftest.c 15
ltconfig:1657: eval /usr/ccs/bin/nm -p conftest.o | sed -n -e 's/^.*[  ]\([BDT]\)[
 ][  ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'  conftest.nm
ltconfig:1709: gcc -o conftest   -fno-builtin -fno-rtti -fno-exceptions   conftest.c 
conftstm.o 15
configure:2257: checking for a BSD compatible install
configure:2315: checking for bison
configure:2348: checking for pdftex
configure:2376: checking return type of sprintf



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


Problem installing mySql on Mac OS X

2001-09-13 Thread illuminator

I am having a few problems with the install.
 First off Mac OS X does not support the groupadd or useradd 
commands.
 Next the scripts/mysql_install_db fails and tells me to look for 
more i\
nformation in ./data logs, however in the data directory there are no 
log files\
.

 How-To-Repeat:
 Follow the instructions in the INSTALL-BINARY file.
 Fix:
 ???

 Submitter-Id:  submitter ID
 Originator:System Administrator
 Organization:
  organization of PR author (multiple lines)
 MySQL support: none
 Synopsis:  Installing on Mac OS X
 Severity:  critical
 Priority:  medium
 Category:  mysql
 Class: support
 Release:   mysql-3.23.42-apple-rhapso  (Official MySQL binary)

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing mySql on Mac OS X

2001-09-13 Thread Troy Lewis

This site has precompiled MySQL binaries for Mac OS X:  
http://www.entropy.ch/software/macosx/mysql/
It also has easy to follow installation instructions. You need to use 
your Users utility to add the MySQL user instead of the useradd and 
groupadd commands. Complete instructions are at the site.






On Thursday, September 13, 2001, at 05:39 PM, [EMAIL PROTECTED] wrote:

 I am having a few problems with the install.
 First off Mac OS X does not support the groupadd or useradd 
 commands.
 Next the scripts/mysql_install_db fails and tells me to look 
 for more i\
 nformation in ./data logs, however in the data directory there are no 
 log files\
 .

 How-To-Repeat:
 Follow the instructions in the INSTALL-BINARY file.
 Fix:
 ???

 Submitter-Id:  submitter ID
 Originator:System Administrator
 Organization:
  organization of PR author (multiple lines)
 MySQL support: none
 Synopsis:  Installing on Mac OS X
 Severity:  critical
 Priority:  medium
 Category:  mysql
 Class: support
 Release:   mysql-3.23.42-apple-rhapso  (Official MySQL binary)

 -
 Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail mysql-unsubscribe-
 [EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing mysql++1.7.9

2001-07-23 Thread Sinisa Milivojevic

Eldon Ziegler writes:
 Running ./configure fails check for MySQL include directory. The library 
 directory is found and the include directory is there when I list it. What 
 is it looking for?
 
 Eldon Ziegler
 ProAtion Systems
 [EMAIL PROTECTED]
 http://www.proation.com
 


There are options for configure which will enable you to point a
directory with MySQL C API include  files and a directory for MySQL C
API libraries.

-- 
Regards,
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, FullTime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
   ___/   www.mysql.com

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing mysql++1.7.9

2001-07-22 Thread Eldon Ziegler

Running ./configure fails check for MySQL include directory. The library 
directory is found and the include directory is there when I list it. What 
is it looking for?

Eldon Ziegler
ProAtion Systems
[EMAIL PROTECTED]
http://www.proation.com


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MYSQL

2001-07-20 Thread Invernizzi Fabrizio

Hi.

I need to install mysql on Solrais (5.5.1 Generic sun4m sparc
SUNW,SPARCstation-20), but config procedure stop with this message:
checking for restartable system calls... configure: error: can not
run test program while cross compiling

Looking in config.log i see some fatal errors:
...
ld: fatal: library -ldir: not found
... 
ld: fatal: library -lnsl_r: not found
...
ld: fatal: library -lbind: not found
...
ld: fatal: library -lcompat: not found
...

Can anybody help me?

Fabrizio

-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing mysql on FreeBSD

2001-03-02 Thread Araceli Sosa Espinosa

Hi!!

I have a system FreeBSD 3.5 - STABLE and I am trying to install the mysql
3.23.33

It is the first time that I install  a mysql and let us meet with a problem
that I didn't know
as solving. During the compilation I send myself the following message:

hostname.o: In function `ip_to_hostname(in_addr *, unsigned int *)':
hostname.o(.text+0x52b): undefined reference to `my_gethostbyname_r'
*** Error code 1
Stop

The truth is that I don't have idea for where to begin to try to solve him
problem and I
would thank them any idea that you can give me

Thank you.





-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


Re: Problem installing MySQL php

2001-02-25 Thread Ken Nordquist

I had pretty much the same problem.

I was unhappy with the RH v7.0 distro of MySQL and downloaded the MySQL
rpm's (v3.23.33).  It installed and ran with _no_ problems!  My problem was
the RH distro of php did not recognize that MySQL was there.  I decided to
upgrade to php 4.0.4.  I downloaded the rpms from RH, but when it came time
to install php-mysql, it said MySQL was not there.  I was very reluctant to
uninstall php and try to install and compile the tarball.

What I did instead is...   rpm -ivh php-my*.rpm --nodeps

This installed mysql-php without checking for dependencies.  After a reboot,
I can connect to MySQL databases with php.

Ken Nordquist
"Did I Do That?"

- Original Message -
From: "Pope, Alan" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, February 22, 2001 2:25 PM
Subject: Problem installing MySQL  php


 Hi all,

 Newbie alert, please be gentle.

 My system is Redhat 7.0 with glibc-2.2-12, kernel 2.2.16-22.

 I have started a project which involves learning php  mysql, so I bought
 myself a couple of big books to sit down and do some learning!

 Problem is, I cannot get MySQL  php installed together nicely... let me
 explain.

 I currently have php-4.0.1pl2-9, mod-php-4.0.1pl2-9, and would like to
 install mysql and php-mysql-4.0.1pl2-9 to go with it. However, I have two
 versions of  mysql neither of which will install properly.

 Problem 1 with mysql-3.23.32 (obtained from updates.redhat.com)

 rpm -i mysql-3.23.32.1.7.i386.rpm

 I get a whole load of error messages from ldconfig complaining that
 "/sbin/ldconfig: /usr/local/lib/xxx.so is not a symbolic link" - I get
 about 40 of these. It's right - they aren't, they are files. The mysql
 install stops at that point.. sorta half installed. I can deinstall with
rpm
 -e (also getting the same ldconfig error, but I actually want to install
it!
 What do I do?

 Problem 2 with MySQL-3.23.33 (note the case of MySQL) (obtained from
 mysql.com)

 rpm -i MySQL-3.23.33-1.i386.rpm

 All seems to go okay - no problems. However, when I try to install the
 php-mysql package it complains that "mysql is not installed" (it's a
 pre-req). The stupid thing is, it IS installed although when I look with
rpm
 -q, I find the package called "MySQL", not "mysql".. What do I do here? I
 thought renaming the rpm might do it, but sorta knew it wouldn't - and it
 didn't work...

 Please, I need help.

 Cheers,
 Al.
 http://www.popey.com/



 -
 Before posting, please check:
http://www.mysql.com/manual.php   (the manual)
http://lists.mysql.com/   (the list archive)

 To request this thread, e-mail [EMAIL PROTECTED]
 To unsubscribe, e-mail
[EMAIL PROTECTED]
 Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problem installing MySQL php

2001-02-22 Thread Pope, Alan

Hi all,

Newbie alert, please be gentle.

My system is Redhat 7.0 with glibc-2.2-12, kernel 2.2.16-22.

I have started a project which involves learning php  mysql, so I bought
myself a couple of big books to sit down and do some learning!

Problem is, I cannot get MySQL  php installed together nicely... let me
explain.

I currently have php-4.0.1pl2-9, mod-php-4.0.1pl2-9, and would like to
install mysql and php-mysql-4.0.1pl2-9 to go with it. However, I have two
versions of  mysql neither of which will install properly.

Problem 1 with mysql-3.23.32 (obtained from updates.redhat.com)

rpm -i mysql-3.23.32.1.7.i386.rpm

I get a whole load of error messages from ldconfig complaining that
"/sbin/ldconfig: /usr/local/lib/xxx.so is not a symbolic link" - I get
about 40 of these. It's right - they aren't, they are files. The mysql
install stops at that point.. sorta half installed. I can deinstall with rpm
-e (also getting the same ldconfig error, but I actually want to install it!
What do I do?

Problem 2 with MySQL-3.23.33 (note the case of MySQL) (obtained from
mysql.com)

rpm -i MySQL-3.23.33-1.i386.rpm

All seems to go okay - no problems. However, when I try to install the
php-mysql package it complains that "mysql is not installed" (it's a
pre-req). The stupid thing is, it IS installed although when I look with rpm
-q, I find the package called "MySQL", not "mysql".. What do I do here? I
thought renaming the rpm might do it, but sorta knew it wouldn't - and it
didn't work...

Please, I need help.

Cheers,
Al. 
http://www.popey.com/



-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Problem installing MySQL php

2001-02-22 Thread B. van Ouwerkerk

At 19:25 22-2-01 +, Pope, Alan wrote:
Hi all,

Newbie alert, please be gentle.

Great resource: www.devshed.com including how to install MySQL and PHP with 
Apache.

You might want to apply all the patches from Redhat. RH 7.0 is not 
considered to be a good distro. NOT my opinion, others say so. /Me is using 
Slackware. I know quite a few people who 'upgraded' RH 7 to 6.x and could 
install without much of a problem.

I think a few other solutions can be found in the archive.

Bye,

B.


-
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/   (the list archive)

To request this thread, e-mail [EMAIL PROTECTED]
To unsubscribe, e-mail [EMAIL PROTECTED]
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php