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 資料庫還是可以訪問的。