WildCard#! Posted December 27, 2003 Share Posted December 27, 2003 Hi new to MySQL. Everything is a bit of a blur at the moment. Through time though hopefully I understand it. I installed the killer trio (Apache, PHP, MySQL) and seem to have done it with success. The problem I am facing at the moment is that it is about security on MySQL. I have set a root password and also set a password for my username. However I can still get in thorugh by using any made up usernames. Eg shell> mysql -h localhost -u BlahBlahwhateveretc and it accesses the MySQL Monitor. I have looked at the manual but does not explain clearly how to resolve this. I just want my 1 username with a password to access it and anything else to be denied, (apart from root of course). Any help would be much appreciated, thanks. Link to comment https://forums.phpfreaks.com/topic/1559-newbie-on-simple-security-setting/ Share on other sites More sharing options...
gizmola Posted December 27, 2003 Share Posted December 27, 2003 Get into the database and use mysql; Select * from users; Look for a * in the user name column and remove that row in the table. After doing so you may have to flush priveleges; Link to comment https://forums.phpfreaks.com/topic/1559-newbie-on-simple-security-setting/#findComment-5118 Share on other sites More sharing options...
WildCard#! Posted December 28, 2003 Author Share Posted December 28, 2003 Diamond, cheers I done it, much appreciated. I also found this in the manual somewhere. DELETE FROM mysql.user WHERE user=\'username\' and host=\'hostname\'; FLUSH PRIVILEGES; However I had to do this instead DELETE FROM mysql.user WHERE user=\'\'; FLUSH PRIVILEGES; I deleted two records in the mysql table. Hopefully the one record wasn\'t that important. It had a NULL username and \"localhost\" as the host. Maybe I\'ll find out down the line. :? Link to comment https://forums.phpfreaks.com/topic/1559-newbie-on-simple-security-setting/#findComment-5133 Share on other sites More sharing options...
gizmola Posted December 29, 2003 Share Posted December 29, 2003 That sounds good. I don\'t think you want one with a NULL username. Link to comment https://forums.phpfreaks.com/topic/1559-newbie-on-simple-security-setting/#findComment-5149 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.