在centOS6 10上安裝MySQL5 6

2021-10-08 18:43:01 字數 1089 閱讀 2101

yum install mysql-community-server
至此mysql安裝完成

service mysqld start
mysql -u root

use mysql;

update user set password=password(

"這裡輸入root使用者密碼"

) where user=

'root'

;flush privileges;

grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;

flush privileges;

其中*.*代表所有資源所有許可權,『root』@』%'中root代表賬戶名,%代表所有的訪問位址,identified by 『root』,這個root是指訪問密碼,with grant option允許級聯授權。

chkconfig --list |

grep mysqld

chkconfig mysqld on

Centos610無桌面安裝Docker 核心公升級

1 檢視當前作業系統和系統核心 此處只需要注意一項centos6的docker源只有64位的,x86 64,32位的直接換系統吧 檢視當前核心版本uname r 2.6.32 754.el6.x86 64 檢視os版本 cat etc issue centos release 6.10 final ...

centos6 10本地安裝g 安裝nginx

rpm安裝g 安裝nginx 作業系統 centos6.10 rpm ivh kernel headers 2.6.32 431.el6.x86 64.rpm rpm ivh glibc headers 2.12 1.132.el6.x86 64.rpm nodeps force rpm ivh g...

centos 6 10 安裝中文輸入法

1,首先要確保系統中已經安裝了中文輸入法。如果你在安裝系統時選擇了中文,則中文輸入法預設就會安裝 如果你安裝時選擇了英文,則必須在安裝時選擇安裝中文輸入法,否則不會安裝,即使你忘了選擇,還是可以在裝好系統之後安裝。安裝方法也非常簡單,只需要聯網後執行 sudo yum install chinese...