ubuntu-server 12.04LTS 安装mysql记录

记录下:

ubuntu软件仓库中有mysql,所以可以在线安装

sudo apt-get install mysql-server

sudo apt-get install mysql-client

中间会提示你设置root密码

安装完之后进行常用设置

1、添加用户并授权

首先使用root登录mysql

mysql -u root -p

输入密码

添加用户: GRANT ALL PRIVILEGES ON *.* TO username@localhost IDENTIFIED BY 'password' WITH GRANT  OPTION;

刷新权限:flush privileges

2、设置编码

安装文本编辑器是必须的,sudo apt-get install vim

sudo vim /etc/mysql/my.cnf

新版本的在【mysqld】下添加character-set-server=utf8,旧版本的添加default-character-set=utf8,

具体版本不知。

检查编码:

登入mysql,show variables like 'character-set_%';

3、远程连接

设置任何远程端都能用root登录:

grant all on *.* to 'root'@'%' identified by 'root的密码'

刷新权限:flush privileges;

将[mysqld]下的bind-address注释掉

vim /etc/mysql/my.cnf

ubuntu下重启mysql

sudo /etc/init.d/mysql restart

你可能感兴趣的:(server,ubuntu,远程连接,安装mysql,改编码)