Re: MySQL FC3

From: Rick Stevens (rstevens_at_vitalstream.com)
Date: 07/06/05

  • Next message: Colin Paul Adams: "GNOME desktop problem"
    Date: Tue, 05 Jul 2005 22:58:03 -0700
    To: For users of Fedora Core releases <fedora-list@redhat.com>
    
    

    Arthur Pemberton wrote:
    > Dave Foran wrote:
    >
    >> I have a major issue of sorts ;-)
    >>
    >> I have no idea what the password for root is
    >> I have tried a a number of recommended edits to try and either delete or
    >> replace the password but all have failed.
    >>
    >> The rpm on FC3 CD will not permit removal as yum has updated the file
    >> routine. I d/l the currant rpm and it will not allow removal. It says,
    >> this in not installed..
    >>
    >> Any good thoughts short of re-installing everything and that is not a
    >> viable idea..
    >>
    >> I need I think a way to un-install mysql and do a clean install..
    >>
    >> Any thoughts ??
    >> Thanks
    >> Dave
    >>
    >>
    >>
    > Yah I've had that happen to me before. I think there's a better solution
    > to what I'm about to suggest, I'll google for it later.
    >
    > # service mysql stop
    > # mv /var/lib/mysql /var/lib/mysql_working
    > # rpm -e MySQL-server # you may need to erase some other packages
    > to get this to work
    >
    > then
    >
    > # yum insall MySQL # if that's what you really want
    > or
    > browse to http://dev.mysql.com/downloads/mysql/4.1.html and download the
    > necessary RPMS and
    > # rpm -ivh MySQL*.rpm
    >
    > After you get your mysql back up and running, copy back in your database
    > from /var/lib/mysql_working , ensuring not to copy the mysql database.
    > Then just resetup your perms for the dbases and tables.
    >
    > You might want to check these links first though#
    > http://lists.mysql.com/mysql/171366
    > http://www.alt-php-faq.org/local/70/

    If you check the mysql website and do a search, you'll find this:

      In a Unix environment, the procedure for resetting the root password
    is as follows:

        1.

           Log on to your system as either the Unix root user or as the same
    user that the mysqld server runs as.
        2.

           Locate the .pid file that contains the server's process ID. The
    exact location and name of this file depend on your distribution,
    hostname, and configuration. Common locations are /var/lib/mysql/,
    /var/run/mysqld/, and /usr/local/mysql/data/. Generally, the filename
    has the extension of .pid and begins with either mysqld or your system's
    hostname.

           You can stop the MySQL server by sending a normal kill (not kill
    -9) to the mysqld process, using the pathname of the .pid file in the
    following command:

    shell> kill `cat /mysql-data-directory/host_name.pid`

           Note the use of backticks rather than forward quotes with the cat
    command; these cause the output of cat to be substituted into the kill
    command.
        3.

           Create a text file and place the following command within it on a
    single line:

    SET PASSWORD FOR 'root'@'localhost' = PASSWORD('MyNewPassword');

           Save the file with any name. For this example the file will be
    ~/mysql-init.
        4.

           Restart the MySQL server with the special
    --init-file=~/mysql-init option:

    shell> mysqld_safe --init-file=~/mysql-init &

           The contents of the init-file are executed at server startup,
    changing the root password. After the server has started successfully
    you should delete ~/mysql-init.
        5.

           You should be able to connect using the new password.

    ----------------------------------------------------------------------
    - Rick Stevens, Senior Systems Engineer rstevens@vitalstream.com -
    - VitalStream, Inc. http://www.vitalstream.com -
    - -
    - When all else fails, try reading the instructions. -
    ----------------------------------------------------------------------

    -- 
    fedora-list mailing list
    fedora-list@redhat.com
    To unsubscribe: http://www.redhat.com/mailman/listinfo/fedora-list
    

  • Next message: Colin Paul Adams: "GNOME desktop problem"

    Relevant Pages

    • Re: Apple recommending anti-virus software for Macs?
      ... > To be ultra-safe with the 'rm' command, ... Not a bad idea for root, It would drive me nuts in my user account. ... downloads directory and executing it. ... That I type an EOF is a trivial difference versus 'sudo' exiting ...
      (comp.sys.mac.system)
    • Re: [opensuse] su - -c $command user ???
      ... I'd like to calculate a command-string as root and pass it with su ... into the context of a unprivileged user to run the command not as ... Basically I need to know $d after the daemonuser created and filled ... Note the echo isn't really going to be a fully valuable ...
      (SuSE)
    • Re: System-users and-groups?
      ... bin shouldn't do so much. ... was root and bin... ... Although the daemon user/group are ... as that user runs that command. ...
      (alt.linux)
    • RE: remote ssh for root
      ... forced-commands-only option set, you have to have the command option set. ... execution as root. ... > This message contains confidential information and is ...
      (SSH)
    • Re: grub menu oddity
      ... >>> command (until the manual root command was executed). ... >>> When I first encountered this behavior, it took several reboots for me to ... FWIW - a new CMOS battery is only $3-5 at your local Shaque du Radio ...
      (comp.os.linux.setup)

    Loading