赞
踩
apt-get install mysql-client mysql-server
service mysql start
service mysql stop
service mysql restart
修改root密码:
- // 登录数据库
- mysql -uroot -p
-
- //选择mysql数据库
-
- use mysql;
-
- update user set plugin='mysql_native_password';
- update user set authentication_string=password('111222') where user='root' and host='localhost';
-
- flush privileges;
- apt-get autoremove --purge mysql-server-5.0
- apt-get remove mysql-server
- apt-get autoremove mysql-server
- apt-get remove mysql-common
dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P
数据库文件位置
- // 数据库文件位置
- /var/lib/mysql
-
- //配置文件位置 mysqld.cnf
- /etc/mysql/mysql.conf.d/
-
- // 修改配置文件
- vim mysqld.cnf
- // 加大连接数
- max_connections = 1000
- // 注释掉仅限本级访问
- #bind-address = 127.0.0.1
修改字符集
- ubuntu刚安装完mysql,默认字符集是latin1,现在我想修改为utf8
-
- 1. 打开mysql配置文件:
-
- 在 【client】下追加:
- default-character-set=utf8
- 在 【mysqld】下追加:
- character-set-server=utf8
- 在 【mysql】 下追加:
- default-character-set=utf8
-
- 保存并退出
- 注: 我的【mysqld】在 /etc/mysql/mysql.conf.d/mysqld.cnf
- 我的【mysql】 在 /etc/mysql/conf.d/mysql.cnf
- 我的【client】 在 /etc/mysql/debian.cnf
-
- 2. 重启mysql
-
- service mysql restart
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。