CentOS linux mysql 安裝指南

2021-09-01 22:58:50 字數 712 閱讀 2531

執行yum指令安裝mysql服務端軟體

yum install mysql-server

yum install mysql-devel

1.啟動mysqlserver

service mysqld start

2.設定root密碼

mysqladmin -u root password '12345678;

3.配置使用者和許可權

[root@ rhel5~]# mysql -u root mysql

mysql>use mysql;

mysql>desc user;

mysql> grant all privileges on *.* to root@"%" identified by "root";  //為root新增遠端連線的能力。

mysql>update user set password = password('******') where user='root';

mysql>select host,user,password  from user where user='root';

mysql>flush privileges;

mysql>exit

重新登入:mysql -u root -p

若還不能進行遠端連線,則關閉防火牆

[root@ rhel5~]# /etc/rc.d/init.d/iptables stop

Linux manjaro 安裝glibc指定版本

檢視現在系統的glibc版本 strings lib64 libc.so.6 grep glibc 直接安裝最新版 sudo pacman s glibc lib32 glibc force安裝glibc 2.19版本 wget edu cn gnu libc glibc 2.19 tar xz 解...

wordpress安裝openID外掛程式指南

整個過程非常非常簡單,呵呵 2,解壓縮,將plugin目錄下的openid資料夾整個上傳到你當前的wp content plugins目錄裡面,同時,將themes資料夾裡的兩個檔案,分別是openidform.php和openidtrustpage.php上傳到你當前的wp content the...

mysql 360怎麼安裝 MySQL 安裝指南

mysql 安裝指南 如果以前安裝過mysql請清理下列目錄中的mysql相關檔案 etc etc mysql usr local mysql mysql 在mysql使用者下面的shell配置檔案裡加入下面內容。export mysql base opt mysql export mysql ho...