| Article: |
Apache Web-Serving With Mac OS X, Part 5 | |
| Subject: | Is it possible to uninstall source version? | |
| Date: | 2002-06-06 15:40:33 | |
| From: | rdez378 | |
|
Response to: uninstall mysql?
|
||
|
This series was great. I did every step without any major problems. I was even successfully running Phpmyadmin until I deleted the root user by mistake. Now it says no users within phpmyadmn (already contacted them) and when I access mysql using the root password I am still able to login with no problem. However, when I try to administer to the databases or add new users i get the 1044/1045 errors. I've tried some of the fixes listed on mysql.com but with all of them I eventually get an access denied. What should I do?
|
||
Showing messages 1 through 3 of 3.
-
Is it possible to uninstall source version?
2002-11-24 03:24:10 anonymous2 [View]
I am running into the same problem that I deleted the root user by mistake. Can you share the procedure to fix this problem? -
Is it possible to uninstall source version?
2004-01-07 21:33:02 rocketmac [View]
you can unistall mysql installed from a source distrobution by going to that extracted installion directory (the directory you used to build/install mysql) and type in the following.
shell> make -n uninstall
then type
shell> make distclean
Following this, go delete the directory that it was installed to (i.e. /usr/local/mysql )
Now you can reinstall MySQL by the following
shell> ./configure --prefix=/usr/local/mysql
shell> make
shell> make install
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> cd /usr/local/mysql
shell> bin/mysql_install_db
shell> chown -R root .
shell> chown -R mysql var
shell> chgrp -R mysql .
shell> bin/mysqld_safe --user=mysql &
I hope this helps. -
Is it possible to uninstall source version?
2004-01-07 21:31:35 anonymous2 [View]
you can unistall mysql installed from a source distrobution by going to that extracted installion directory (the directory you used to build/install mysql) and type in the following.
shell> make -n uninstall
then type
shell> make distclean
Following this, go delete the directory that it was installed to (i.e. /usr/local/mysql )
Now you can reinstall MySQL by the following
shell> ./configure --prefix=/usr/local/mysql
shell> make
shell> make install
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> cd /usr/local/mysql
shell> bin/mysql_install_db
shell> chown -R root .
shell> chown -R mysql var
shell> chgrp -R mysql .
shell> bin/mysqld_safe --user=mysql &
I hope this helps.


