Linux下安裝 啟動MySQL

2021-06-10 16:19:50 字數 2315 閱讀 1683

三四年沒有安裝過mysql+apache+php的環境了,我以前是做銀行效能測試外包服務的,在甲方開發中心遇到這樣環境的專案也比較少,大多是weblogic/websphere+oracle/db2架構的大型系統。涉足電商行業方面的專案,不得不再去溫故那些幾乎遺忘的iis、apache、mssql、mysql等環境。

平台:vmware上虛擬的centos4.7

宿主機:windows

安裝mysql前準備:

1、檢查該環境中是否已安裝mysql,檢查方法:netstat –ano命令檢視mysql預設埠3306是否存在;或者再命令列中執行mysql

mysql-server-5.5.28-1.linux2.6.i386.rpm

mysql-client-5.5.28-1.linux2.6.i386.rpm

使用rpm –ivh命令來安裝mysql,這裡不說啦。

先來了解一下mysql資料庫預設的一些主要目錄:

1、資料庫目錄 /var/lib/mysql/

2、配置檔案  /usr/share/mysql(mysql.server命令及配置檔案)

3、相關命令  /usr/bin (mysqladmin mysqldump等命令)

4、啟動指令碼  /etc/rc.d/init.d/(啟動指令碼檔案mysql的目錄)

安裝後通過netstat –ano命令檢視mysql預設埠3306是否存在,如果不存在,按下面的方法啟動mysql服務。

啟動mysql服務:

[root@localhostmysql]# pwd

/usr/share/mysql

[root@localhostmysql]# ./mysql.server start

startingmysql...[ 確定 ]

[root@localhostmysql]# netstat -ano

activeinternet connections (servers and established)

protorecv-q send-q local address foreign address state timer

tcp 0 0 0.0.0.0:3306 0.0.0.0:* listen off (0.00/0/0)

[root@localhostmysql]# mysql

welcometo the mysql monitor. commands end with; or \g.

yourmysql connection id is 1

serverversion: 5.5.28 mysql community server (gpl)

oracle isa 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>

mysql>

啟動與停止

1、啟動

mysql安裝完成後啟動檔案mysql在/etc/init.d目錄下,在需要啟動時執行下面命令即可。  

[root@localhost mysql]#  /etc/init.d/mysql start

2、停止  

[root@localhost mysql] #  /usr/bin/mysqladmin -u root -p shutdown

3、自動啟動

1)察看mysql是否在自動啟動列表中  

[root@localhost mysql] # /sbin/chkconfig –list

2)把mysql新增到你系統的啟動服務組裡面去  

[root@localhost mysql] # /sbin/chkconfig – add mysql

3)把mysql從啟動服務組裡面刪除。 

[root@localhost mysql] # /sbin/chkconfig – del mysql

Linux下安裝 啟動MySQL

三四年沒有安裝過mysql apache php的環境了,我以前是做銀行效能測試外包服務的,在甲方開發中心遇到這樣環境的專案也比較少,大多是weblogic websphere oracle db2架構的大型系統。涉足電商行業方面的專案,不得不再去溫故那些幾乎遺忘的iis apache mssql ...

Linux下安裝MySQL和啟動

一 mysql各類安裝方法的比較 在linux系統下,mysql有3種主要的安裝方式,分別是 rpm安裝 二進位制安裝 原始碼安裝。三種安裝方式的優缺點如下表所示 rpm安裝 二進位制安裝 原始碼安裝 優點 安裝簡單,適合初學者 安裝簡單,可以安裝到任何路徑下 可以根據使用需要定製編譯,靈活,效能最...

linux下mysql安裝與啟動

rpm ivh mysql server 5.6.24 1.el6.x86 64.rpma 如果提示 file usr share mysql charsets readme from install of mysql server 5.6.19 1.linux glibc2.5.x86 64 co...