1. 程式人生 > >linux rpm 安裝後 mysql 預設安裝目錄等資訊

linux rpm 安裝後 mysql 預設安裝目錄等資訊

MySQL安裝完成後不象SQL Server預設安裝在一個目錄,它的資料庫檔案、配置檔案和命令檔案分別在不同的目錄,瞭解這些目錄非常重要,尤其對於Linux的初學者,因為 Linux本身的目錄結構就比較複雜,如果搞不清楚MySQL的安裝目錄那就無從談起深入學習。
  下面就介紹一下這幾個目錄。
  1、資料庫目錄
  /var/lib/mysql/
  2、配置檔案
  /usr/share/mysql(mysql.server命令及配置檔案)
  3、相關命令
  /usr/bin(mysqladmin mysqldump等命令)
  4、啟動指令碼
  /etc/rc.d/init.d/(啟動指令碼檔案mysql的目錄)
  修改登入密碼
  MySQL預設沒有密碼,安裝完畢增加密碼的重要性是不言而喻的。
  1、命令
  usr/bin/mysqladmin -u root password 'new-password'
  格式:mysqladmin -u使用者名稱 -p舊密碼 password 新密碼
  2、例子
  例1:給root加個密碼123456。
  鍵入以下命令 :
  [
[email protected]
local]# /usr/bin/mysqladmin -u root password 123456 注:因為開始時root沒有密碼,所以-p舊密碼一項就可以省略了。 3、測試是否修改成功 1)不用密碼登入 [[email protected] local]# mysql ERROR 1045: Access denied for user: [email='[email protected]']'[email protected]'[/email] (Using password: NO) 顯示錯誤,說明密碼已經修改。 2)用修改後的密碼登入 [
[email protected]
local]# mysql -u root -p Enter password: (輸入修改後的密碼123456) Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 4 to server version: 4.0.16-standard Type 'help;' or 'h' for help. Type 'c' to clear the buffer. mysql> 成功!