MySQL server

Revision as of 22:49, 16 November 2013 by WikiFreak (talk | contribs) (Created page with "===Installation=== ====Required packages==== <syntaxhighlight lang="bash"> apt-get install mysql-server mysql-client </syntaxhighlight> Your database will use InnoDB instead...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Installation

Required packages

apt-get install mysql-server mysql-client

Your database will use InnoDB instead of the old, deprecated, database file system.

You’ll have to choose a password for MySQL admin [root] user

Configuration

Stop the service (you cannot configure a running service)

/etc/init.d/mysql stop

Edit configuration file

vim /etc/mysql/my.cnf

Edit the file:

[mysqld]
#bind-address = 127.0.0.1	    # Comment this line to enable remote access

Restart service

  /etc/init.d/mysql restart

Check running service

netstat -tap

you should have something like:

tcp        0      0 *:mysql                 *:*                     LISTEN     3281/mysqld


Enable remote access

Server connection

mysql -u root -p
mysql> use mysql;
mysql> select user,host,password from user;
mysql> update user set host="%" where user="root" and host="vks11447";

♠ where 'vks11447' is the server name.

mysql> flush privileges;
mysql> quit;

Restart server

/etc/init.d/mysql restart

Open your firewall

# MySQL server
$IPTABLES -t filter -A INPUT -p tcp -m state --state NEW --dport 3306 -j ACCEPT


Change root login

Change root login / password

mysql -u root -p

Display all users

mysql > use mysql ;				
mysql > select User,Host,Password from user ;

Change root login

mysql > UPDATE user SET user = “admin” WHERE user = “root” ;

Change root password

mysql > update user set password=password('*****') where user=“admin” ;

Apply changes

mysql > flush privileges ;
mysql > select User,Host,Password from user ;
mysql > exit

Vérification

  1. mysql –u admin –p

mysql > exit

MySQL workbench

  1. apt-get install mysql-workbench mysql-workbench-data

http://dev.mysql.com/downloads/workbench