Home  >  Article  >  Database  >  Ubuntu MySQL数据库操作

Ubuntu MySQL数据库操作

WBOY
WBOYOriginal
2016-06-07 16:59:501278browse

终端下输入:mysql -u root -pmysqlgt; enter password: rootmysqlgt;\q 退出mysql3. 增加一个user ,设置密码,并对redmine_d

1. delete mysql

sudo apt-get autoremove mysql-server
sudo apt-get remove mysql-common

2. install

sudo apt-get install mysql-server
sudo apt-get install php5-mysql

配置:

我们刚安装上的MYSQL,只有一个系统默认的root用户,而且是没有密码的,此时我们一定要给MYSQL设置一个密码root。

终端下输入:
mysql -u root -p
mysql> enter password: root

mysql>\q 退出mysql

3. 增加一个user ,设置密码,并对redmine_default 数据库拥有所有权限

mysql> grant all privileges on redmine_default.* to 'redmine'@'localhost' identified by 'redmine';

4. mysql忘记root密码拯救方法

以root权限运行


-1、结束当前正在运行的mysql进程。
# /etc/init.d/mysql stop

-2、用mysql安全模式运行并跳过权限验证。
# /usr/bin/mysqld_safe --skip-grant-tables

-3、以root身份登录mysql。
# mysql -u root

-4、修改root用户口令。
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update user set Password = PASSWORD('root') where User ='root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

mysql> exit

-5、结束mysql安全模式,用正常模式运行mysql。
# /etc/init.d/mysql restart

注意:

mysql server会创建默认的mysql 数据库,里面其中有个数据项管理着各个用户账户和密码信息。 server 管理的所有数据库数据存在放在 /var/lib/mysql/下面, 只要这下面的数据不被删除,即使重新安装mysql ,重装后mysql 数据库还是可以访问的。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn