Zwei Möglichkeiten, MySQL unter Linux zu installieren
卡哇伊
Freigeben: 2020-07-15 17:37:01
Original
15306 Leute haben es durchsucht
1. Laufplattform: CentOS 6.3 x86_64, entspricht im Grunde RHEL 6.3
2. Installationsmethode:
Es gibt zwei Möglichkeiten, MySQL zu installieren: eine über den Quellcode Code Selbst kompilieren und installieren Diese Funktion eignet sich für fortgeschrittene Benutzer zum Anpassen von MySQL und wird hier nicht erläutert. Die andere Funktion besteht darin, über kompilierte Binärdateien zu installieren. Es gibt zwei Möglichkeiten, Binärdateien zu installieren: Eine ist eine allgemeine Installationsmethode, die nicht spezifisch für eine bestimmte Plattform ist, und die verwendete Binärdatei ist eine komprimierte Datei mit der Endung .tar.gz. Die zweite Möglichkeit besteht darin, RPM oder andere Pakete zu verwenden Für die Installation wird die entsprechende Konfiguration des Systems automatisch abgeschlossen, sodass es bequemer ist.
3. Laden Sie das Installationspaket herunter:
a. Offizielle Download-Adresse:
http://dev.mysql.com/downloads/mysql/#downloads
oder Spiegeldatei-Download:
http://dev.mysql.com/downloads/mirrors.html
2. Herunterladen Datei (Wählen Sie die entsprechende Release-Version entsprechend dem Betriebssystem aus):
c. Extrahieren Sie die Binärdatei in das angegebene Installationsverzeichnis, das wir hier als /usr/local angeben
[root@localhost JavaEE]#groupadd mysql
[root@localhost JavaEE]#useradd -r -g mysql mysql
*useradd -r参数表示mysql用户是系统用户,不可用于登录系统。
Nach dem Login kopieren
d. Die Verzeichnisstruktur unter /usr/local/mysql /
Verzeichnis strong >
Directory
Contents of Directory
bin
Client programs and the mysqld server
data
Log files, databases
docs
Manual in Info format
man
Unix manual pages
include
Include (header) files
lib
Libraries
scripts
mysql_install_db
share
Miscellaneous support files, including error messages, sample configuration files, SQL for database installation
sql-bench
Benchmarks
Inhalt des Verzeichnisses<🎜>
<🎜>bin<🎜>
<🎜>Client-Programme und der mysqld-Server<🎜>
<🎜>Daten<🎜>
<🎜>Protokolldateien, Datenbanken<🎜>
< td valign="top"><🎜>docs<🎜>
<🎜>Handbuch im Infoformat<🎜>
<🎜>man<🎜>
<🎜>Unix-Handbuchseiten<🎜>
<🎜>include<🎜>
<🎜>(Header-)Dateien einschließen<🎜>
<🎜>lib<🎜>
<🎜>Bibliotheken<🎜>
<🎜>Skripte < 🎜>
<🎜>mysql_install_db<🎜>
<🎜 > teilen<🎜>
<🎜>Verschiedene Supportdateien, einschließlich Fehlermeldungen, Beispielkonfigurationsdateien, SQL für die Datenbankinstallation<🎜>
< td valign="top"><🎜>sql-bench<🎜>
<🎜>Benchmarks<🎜>
Tabelle >
e. 进入mysql文件夹,也就是mysql所在的目录,并更改所属的组和用户。
[root@localhost local]#cd mysql
[root@localhost mysql]#chown -R mysql .
[root@localhost mysql]#chgrp -R mysql .
Nach dem Login kopieren
f. 执行mysql_install_db脚本,对mysql中的data目录进行初始化并创建一些系统表格。注意mysql服务进程mysqld运行时会访问data目录,所以必须由启动mysqld进程的用户(就是我们之前设置的mysql用户)执行这个脚本,或者用root执行,但是加上参数--user=mysql。
*首先需要将scripts/mysql.server服务脚本复制到/etc/init.d/,并重命名为mysqld。
[root@localhostmysql] cp support-files/mysql.server /etc/init.d/
mysqld
*通过chkconfig命令将mysqld服务加入到自启动服务项中。
[root@localhost mysql]#chkconfig --add
mysqld
*注意服务名称mysqld就是我们将mysql.server复制到/etc/init.d/时重命名的名称。
*查看是否添加成功
[root@localhost mysql]#chkconfig --list mysqld
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
i. 重启系统,mysqld就会自动启动了。
*检查是否启动
[root@localhost mysql]#netstat -anp|grep mysqld
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 2365/mysqld
unix 2 [ ACC ] STREAM LISTENING 14396 2365/mysqld /tmp/mysql.sock
*如果不想重新启动,那可以直接手动启动。
[root@localhost mysql]#service mysqld start
Starting MySQL.. SUCCESS!
j. 运行客户端程序mysql,在mysql/bin目录中,测试能否连接到mysqld。
[root@localhost mysql]#/usr/local/mysql/bin/mysql
Welcome to the MySQLmonitor. Commands end with ; or \g.
Your MySQL connection idis 2
Server version:5.5.29-log MySQL Community Server (GPL)
Copyright (c) 2000, 2012,Oracle and/or its affiliates. All rights reserved.
Oracle is a registeredtrademark of Oracle Corporation and/or its affiliates. Other names may betrademarks of their respective owners.
Type 'help;' or '\h' forhelp. Type '\c' to clear the current input statement.
mysql> quit
Bye
*此时会出现mysql>命令提示符,可以输入sql语句,输入quit或exit退出。为了避免每次都输入mysql的全路径/usr/local/mysql/bin/mysql,可将其加入环境变量中,在/etc/profile最后加入两行命令:
MYSQL_HOME=/usr/local/mysql
export PATH=$PATH:$MYSQL_HOME/bin
这样就可以在shell中直接输入mysql命令来启动客户端程序了
[root@localhost mysql]#mysql
Welcome to the MySQLmonitor. Commands end with ; or \g.
Your MySQL connection idis 3
Server version:5.5.29-log MySQL Community Server (GPL)
Copyright (c) 2000, 2012,Oracle and/or its affiliates. All rights reserved.
Oracle is a registeredtrademark of Oracle Corporation and/or its
affiliates. Other namesmay be trademarks of their respective
owners.
Type 'help;' or '\h' forhelp. Type '\c' to clear the current input statement.
mysql>
[root@localhost JavaEE]#rpm -ivh MySQL-client-5.5.29-2.el6.x86_64.rpm
如果安装成功应该可以运行mysql命令,注意必须是mysqld服务以及开启:
[root@localhost JavaEE]#mysql
Welcome to the MySQLmonitor. Commands end with ; or \g.
Your MySQL connection idis 1
Server version: 5.5.29MySQL Community Server (GPL)
Copyright (c) 2000, 2012,Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademarkof Oracle Corporation and/or its affiliates. Other names may be trademarks oftheir respective owners.
Type 'help;' or '\h' forhelp. Type '\c' to clear the current input statement.
mysql>
Nach dem Login kopieren
d. RPM安装方式文件分布
Directory
Contents of Directory
/usr/bin
Client programs and scripts
/usr/sbin
The
mysqld
server
/var/lib/mysql
Log files, databases
/usr/share/info
Manual in Info format
/usr/share/man
Unix manual pages
/usr/include/mysql
Include (header) files
/usr/lib/mysql
Libraries
/usr/share/mysql
Miscellaneous support files, including error messages, character set files, sample configuration files, SQL for database installation
Das obige ist der detaillierte Inhalt vonZwei Möglichkeiten, MySQL unter Linux zu installieren. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn