Koozali.org: home of the SME Server

MySQL login questions

Offline Thomas

  • ***
  • 65
  • +0/-0
MySQL login questions
« on: April 19, 2005, 02:31:45 AM »
I am assumimg that SME server 6.0.1 has MySQL installed. I would like to connect the MySQL database on my SME server from a client on the same LAN network as the server using MySQL Administrator.  What is the username and password? Also, what port is it listening on?

Thanks,
Thomas

Offline mrjhb3

  • *
  • 1,188
  • +0/-0
    • John Bennett Services
MySQL login questions
« Reply #1 on: April 19, 2005, 03:56:14 AM »
Port is 3306.  As far as connecting to it, if you search the forums for phpmyadmin, you will see someone has already created an rpm for that.  It is accessible from server-manager.  If that is not what you want, then you should create a user and give it the appropriate rights.

i.e.
grant all privileges on *.* to user@localhost identified by 'password' with grant option;
flush privileges;

This should create a user that has all rights to all databased.

HTH,

JB
......

Offline Thomas

  • ***
  • 65
  • +0/-0
MySQL login questions
« Reply #2 on: April 19, 2005, 05:41:59 AM »
Thanks!