PDA

View Full Version : Remote MySQL administration


alpert
12-27-2000, 08:24 AM
Is it possible to administer MySQL database remotely using a program on my local PC? (I don't wanna use phpAdmin!)
Does it listen to the well-known tcp port 3306? and what should be the server address, mydomain.com?

When I try, I get an access denied message.

Brendan
12-27-2000, 09:10 AM
At the current time no, but I will look into this later today and see if we can work something out. I'll post what I find here.

petesmc
01-03-2001, 10:09 PM
Telnet works, once connected type: mysql

then you can connect to databse.

I know nothing on telnet so i use phpadmin, but i wanted to do a databse dump and stumbled upon this.

They probably refuse entry or something becaseu you can see everyones databases.

petesmc
01-03-2001, 10:12 PM
I ment type: mysqladmin

widget
01-05-2001, 06:40 PM
I was able to do a dump on my old database then pop it into the new one, using phpAdmin, I'm not too familiar with telnet commands for mysql.

JohnM
01-05-2001, 07:21 PM
You can use mysqldump to dump your DB to a file... I use:

mysqldump --opt --user=db_username --password=db_password database_name > /home/username/database.sql

in crontab to back my database regularly

Lucky
03-04-2001, 02:42 AM
Originally posted by petesmc

They probably refuse entry or something because you can see everyones databases.

That doesn't matter, you still will not have the usernames and the passwords to those databases. With my "other" host I can see the countless db's of all the other users....

I too would like to access my db's remotely, disappointing to find out I can't.

[Edited by Lucky on 03-04-2001 at 01:44 AM]

foe
03-15-2001, 08:30 PM
but you need ot make sure that its just your db thats viewed remotely, because password crackers are available all over that just crack mysql dbs, very quikc.

conan
10-03-2001, 05:46 PM
I too would like to be able to access my HR database using a local program like MySQLGUI or MySQL Navigator or even Mascon.

It would be excellent if HR supported this!

tbj
10-04-2001, 10:07 AM
I would also like to have direct access in order to have more control on user permissions.