aws上redhat安裝lmysql服務記

2021-09-08 18:55:29 字數 2717 閱讀 2632

aws上redhat安裝lmysql服務記

1.準備材料

1.1本文是mysql5.5,上傳兩個檔案到伺服器

2.安裝過程

2.1首先安裝服務端

rpm -ivh mysql-server-5.5.50-1.linux2.6.x86_64.rpm

出現如下問題

說明包衝突了,伺服器已經有了這個包,要先把他解除安裝,輸入

rpm -e --nodeps mariadb-libs-1:5.5.*

再次rpm安裝,這次顯示

說明已經成功。

2.2安裝客戶端

rpm -ivh mysql-client-5.5.50-1.linux2.6.x86_64.rpm

顯示如下說明成功

3.檢視是否成功

ps -ef|grep mysqld

出現如上說明還沒啟動,啟動一下mysql

# /etc/init.d/mysql start

4.登入mysql

第一次登入只需鍵入mysql

[root@gc01vm4 init.d]# mysql

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

your mysql connection id is 1

server version: 5.5.23 mysql community server (gpl)

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql>

出現如上提示剛表示登入成功

修改root密碼

增加了密碼後的登入格式如下:

mysql -u root -p

enter password: (你自己設的密碼)

其中-u後跟的是使用者名稱,-p要求輸入密碼,回車後在輸入密碼處輸入密碼。

額:

1.登入mysql

登入mysql的命令是mysql, mysql 的使用語法如下:

mysql [-u username] [-h host] [-p[password]] [dbname]

username 與 password 分別是 mysql 的使用者名稱與密碼,mysql的初始管理帳號是root,沒有密碼,注意:這個root使用者不是linux的系統使用者。mysql預設使用者是root,由於 初始沒有密碼,第一次進時只需鍵入mysql即可。

[root@test1 local]# mysql

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

your mysql connection id is 1 to server version: 4.0.16-standard

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

mysql>

出現了「mysql>」提示符,]

這說明你安裝是成功的。

2.mysql預設沒有密碼,安裝完畢增加密碼的重要性是不言而喻的。

1、命令

usr/bin/mysqladmin -u root password 'new-password'

格式:mysqladmin -u使用者名稱 -p舊密碼 password 新密碼

2、例子

例1:給root加個密碼123456。

鍵入以下命令 :

[root@test1 local]# /usr/bin/mysqladmin -u root password 123456

注:因為開始時root沒有密碼,所以-p舊密碼一項就可以省略了。

3.增加了密碼後的登入格式如下:

mysql -u root -p

enter password: (你自己設的密碼)

其中-u後跟的是使用者名稱,-p要求輸入密碼,回車後在輸入密碼處輸入密碼。

4.到這兒就基本ok,可以順利進入mysql

5.遠端登入

使用sqlyog登入,發現

原來安裝好mysql預設不放開外網ip登入,修改許可權

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

其中 第乙個*表示資料庫名;第二個*表示該資料庫的表名;如果像上面那樣 *.*的話表示所有到資料庫下到所有表都允許訪問;

後面到『654321』為root 使用者的password

成功。6.其他問題

1.

redhat 上samba的安裝

1 檢視redhat上的安裝包 rpm qa grep samba 可以在該 搜尋 具體軟體包如下 samba 3.0.33 3.7.el5.i386.rpm samba client 3.0.33 3.7.el5.i386.rpm samba common 3.0.33 3.7.el5.i386....

redhat上安裝mysql筆記

一 安裝檔案準備 mysql server community 5.0.45 0.rhel4.i386.rpm mysql client community 5.0.45 0.rhel4.i386.rpm mysql devel community 5.0.45 0.rhel4.i386.rpm m...

RedHat上Qt環境安裝和配置

環境 redhat6.3 原始碼 飛凌提供的 qt everywhere opensource src 4.7.1.tar.gz 將qt everywhere opensource src 4.7.1.tar.gz放到某個目錄下 然後解壓 tar xvzf qt everywhere opensou...