mysql安裝過程實錄

2021-06-03 01:27:12 字數 1336 閱讀 9788

mysql安裝過程實錄:

1.切換到mysql的安裝檔案目錄下.

成功資訊:thank you for install mysql.

3.make

安裝完後尾部類似這種:

4.make install

安裝完後尾部類似這種:

mysql_install_db

mysql_install_db --user=root 

或者: ./bin/mysql_install_db --user=root

sed -i "s/3306/3305/g" my.cnf ( 修改埠)

增加: mkdir var

7.1 修改my.cnf

增加:skip-grant-tables=true

儲存檔案。

8.bin/mysqld_safe --defaults-file=./my.cnf --user=root &

9../mysql -u root -p -p 3305

10.輸入回車

enter password:

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 1

server version: 5.1.26-rc-log source distribution

type 'help;' or '\h' for help. type '\c' to clear the buffer.

11.use mysql

12.update user set password=password('root');  修改密碼為root

13.flush privileges;

14.update user set host='%' where user='root' and host='localhost';

15.flush privileges; 

16 修改my.cnf

注釋:# skip-grant-tables=true

儲存檔案。

17 關閉mysql

18 啟動mysql

對某類檔案無操作許可權的時候: chmod 777 *.sh  (對sh結尾的檔案賦予可操作許可權)

安裝mysql的時候遇到configure許可權不夠chmod 777 configure.

安裝過程中在安到make的時候,不小心在命令列貼上了兩行沒用的資訊,結果刪除不掉,並且命令列成了》,此時輸入ctrl+d可以返回正常路徑.

安裝過程中出現的若干問題都是由於安裝檔案傳到伺服器的方式不對,應該直接將壓縮檔案傳到伺服器上去,然後解壓.

mysql安裝過程

event ie frefox mysql linux命令 2009 10 17 15 14 53 分類 資料庫 標籤 字型大小 大中小訂閱 自定義安裝 mysql mysql max 5.0.27 linux i686 glibc23 2007 10 11 下午03 56 shell groupa...

MySQL安裝過程

1 變數名 mysql home 變數值 你解壓對應的位置,如 d mysql 5.6.40 winx64 2 path裡新增 mysql home bin 3.生成data檔案 以管理員身份執行cmd 進入e mysql 5.7.20 winx64 bin 下 執行命令 mysqld initia...

MySQL簡單安裝過程

1.檢測是否已經安裝mysql rpm qa grep i mysql 2.刪除 rm e nodes 包名 3.刪除老版本的mysql 的開發標頭檔案和庫 rm rf usr lib mysql rm rf usr include mysql 注意 解除安裝後 var lib mysql 中的資料...