The mysqladmin tag has no wiki summary.
3
votes
1answer
200 views
mysqladmin - Unknown MySQL server host
I'm trying to connect to a mysql server over a local network. The server is running and listening to post 41322.
dylan~$ netstat -ln | s mysql
unix 2 [ ACC ] STREAM LISTENING 41322 ...
1
vote
1answer
1k views
MySQLadmin drop database - bash script
I have a bash script which downloads a sql.gz file, extracts it and then import it, however before importing, I drop the existing DB, then import the new DB onto the server.
All is well and the ...
0
votes
2answers
251 views
can't use mysqld with empty password from command line
First, I create a database directory:
$ mysql_install_db --datadir=./foo
Then, I start mysql daemon:
$ mysqld --port=5555 --datadir=./foo &
It starts fine and I can connect to it using, for ...