Results 1 to 7 of 7

Thread: MySQL Server

  1. #1

    Thread Starter
    Hyperactive Member alacritous's Avatar
    Join Date
    Aug 2003
    Posts
    464

    MySQL Server

    MySQL said:

    #2003 - The server is not responding
    I've tried running every program in the mysql\bin folder. What the hell is going on? I installed Apache 2.0.52 and PHP 4.3.10. The MySQL version is 4.1.8. If I could run the server, then it will work, but I can't... I havn't configured anything and now that I look around google and other pages it looks like I need to. Last time I installed this I didn't need to do crap. All I did was install and start.

    I know I posted a topic about this, but it's pretty obvious after formatting that it's a MySQL problem and not an Apache/PHP/MySQL problem.

    Thanks
    Last edited by alacritous; Jan 10th, 2005 at 05:56 PM.

  2. #2
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: MySQL Server

    Haver you started the server? You can either have it as a Windows service or run it in the command prompt. If you run it in the command pormpt you must keep it open for the duration you make connections to it.

    The server program is called mysqld.exe. When yourun this program it should stay open and eagerly await connections. To make a connection you need to run the mysql.exe program.
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  3. #3

    Thread Starter
    Hyperactive Member alacritous's Avatar
    Join Date
    Aug 2003
    Posts
    464

    Re: MySQL Server

    #1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client



    At least it started. This is using mysql 4.1.8. I've tried changing it to http (the auth type) and it still won't allow me to login.

  4. #4
    VBA Nutter visualAd's Avatar
    Join Date
    Apr 2002
    Location
    Ickenham, UK
    Posts
    4,906

    Re: MySQL Server

    Quote Originally Posted by alacritous


    At least it started. This is using mysql 4.1.8. I've tried changing it to http (the auth type) and it still won't allow me to login.
    Are you connecting through PHP?

    Here is the reason for that error:

    http://dev.mysql.com/doc/mysql/en/Old_client.html
    PHP || MySql || Apache || Get Firefox || OpenOffice.org || Click || Slap ILMV || 1337 c0d || GotoMyPc For FREE! Part 1, Part 2

    | PHP Session --> Database Handler * Custom Error Handler * Installing PHP * HTML Form Handler * PHP 5 OOP * Using XML * Ajax * Xslt | VB6 Winsock - HTTP POST / GET * Winsock - HTTP File Upload

    Latest quote: crptcblade - VB6 executables can't be decompiled, only disassembled. And the disassembled code is even less useful than I am.

    Random VisualAd: Blog - Latest Post: When the Internet becomes Electricity!!


    Spread happiness and joy. Rate good posts.

  5. #5
    New Member  Stefan Raab's Avatar
    Join Date
    Jan 2002
    Location
    Oronokko! Raabinator: Yes, of course Posts: i
    Posts
    1

    Re: MySQL Server

    I have been adjusted by aliens
    in watermelon sugar the deeds were done and done again as my life is done in watermelon sugar.

  6. #6

    Thread Starter
    Hyperactive Member alacritous's Avatar
    Join Date
    Aug 2003
    Posts
    464

    Re: MySQL Server

    Yes, PHP. (phpMyAdmin)

    I'm sorry I'll read that later I am really busy. I think that is the solution now that I think about it.

  7. #7

    Thread Starter
    Hyperactive Member alacritous's Avatar
    Join Date
    Aug 2003
    Posts
    464

    Re: MySQL Server

    Wow, I hate this.

    Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the SET PASSWORD statement and the OLD_PASSWORD() function: mysql> SET PASSWORD FOR
    -> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
    Alternatively, use UPDATE and FLUSH PRIVILEGES: mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
    -> WHERE Host = 'some_host' AND User = 'some_user';
    mysql> FLUSH PRIVILEGES;
    Substitute the password you want to use for ``newpwd'' in the preceding examples. MySQL cannot tell you what the original password was, so you'll need to pick a new one.
    I goto \mysql\bin\ and type "mysql SET PASSWORD FOR root@localhost = OLD_PASSWORD(mynewpassword);". It doesn't say anything like "invalid parameter" but it acts like it by showing all the parameters, like -s blabla. Well I continue to finish it by typing UPDATE bla and FLUSH bla, but it still says that the client does not support bla. I also tryed the other methods.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width