Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

不言
Freigeben: 2023-03-23 19:40:02
Original
1673 Leute haben es durchsucht

Der Inhalt dieses Artikels befasst sich mit der Installation und Konfiguration von Nginx und PHP. Er hat einen gewissen Referenzwert.

1. Einführung in MySQL

Wenn wir von Datenbanken sprechen, denken die meisten von uns an relationale Datenbanken wie MySQL, Oracle, SQL Server usw. Diese Datenbanksoftware lässt sich sehr bequem unter Windows installieren Unter Linux müssen wir als Erstes die MySQL-Datenbank empfehlen, und die erste Version der MySQL-Datenbank wurde auf dem Linux-System veröffentlicht.

MySQL ist ein relationales Datenbankverwaltungssystem, das von der schwedischen MySQL AB entwickelt wurde und derzeit zu Oracle gehört. MySQL ist ein relationales Datenbankverwaltungssystem. Eine relationale Datenbank speichert Daten in verschiedenen Tabellen, anstatt alle Daten in einem großen Warehouse abzulegen, was die Geschwindigkeit und Flexibilität erhöht. Die SQL-Sprache von MySQL ist die am häufigsten verwendete standardisierte Sprache für den Zugriff auf Datenbanken. MySQL-Software verwendet eine doppelte Autorisierungsrichtlinie (dieser Eintrag „Autorisierungsrichtlinie“), die aufgrund ihrer geringen Größe, hohen Geschwindigkeit und niedrigen Gesamtbetriebskosten, insbesondere der Merkmale von Open Source, in eine Community-Version und eine kommerzielle Version unterteilt ist Im Allgemeinen wird MySQL für die Website-Entwicklung als Website-Datenbank verwendet. Aufgrund der hervorragenden Leistung seiner Community-Version kann es mit PHP und Apache eine gute Entwicklungsumgebung bilden.

Um die MySQL-Datenbank unter Linux zu installieren, können wir auf der offiziellen Website das RPM-Paket der MySQL-Datenbank herunterladen: http://dev.mysql.com/downloads/mysql/5.6.html#downloads , Sie können es entsprechend Ihrem Betriebssystem anpassen, um die entsprechende Datenbankdatei herunterzuladen. Die neueste Version ist 5.6.10.

Hier habe ich die MySQL-Datenbank über yum installiert. Durch die Installation können wir einige Dienste und JAR-Pakete im Zusammenhang mit MySQL installieren, sodass wir uns viel Ärger ersparen. ! !

2. Deinstallieren Sie das ursprüngliche MySQL

Da die MySQL-Datenbank unter Linux so beliebt ist, wird das derzeit heruntergeladene Mainstream-Linux-System grundsätzlich integriert Mit dem folgenden Befehl können wir überprüfen, ob die MySQL-Datenbank auf unserem Betriebssystem installiert wurde


[root@xiaoluo ~]# rpm -qa | grep mysql  // 这个命令就会查看该操作系统上是否已经安装了mysql数据库
Nach dem Login kopieren

Wenn ja, können wir es über den Befehl rpm -e oder den Befehl rpm -e --nodeps deinstallieren

[root@xiaoluo ~]# rpm -e mysql  // 普通删除模式[root@xiaoluo ~]# rpm -e --nodeps mysql  // 强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除
Nach dem Login kopieren

Nach dem Löschen werden wir Mit dem Befehl rpm -qa | können Sie überprüfen, ob MySQL erfolgreich deinstalliert wurde! !

三、通过yum来进行mysql的安装

我是通过yum的方式来进行mysql的数据库安装,首先我们可以输入 yum list | grep mysql 命令来查看yum上提供的mysql数据库可下载的版本:

[root@xiaoluo ~]# yum list | grep mysql
Nach dem Login kopieren

就可以得到yum服务器上mysql数据库的可下载版本信息:

 

 

然后我们可以通过输入 yum install -y mysql-server mysql mysql-devel 命令将mysql mysql-server mysql-devel都安装好(注意:安装mysql时我们并不是安装了mysql客户端就相当于安装好了mysql数据库了,我们还需要安装mysql-server服务端才行)

 

[root@xiaoluo ~]# yum install -y mysql-server mysql mysql-deve
Nach dem Login kopieren

 

在等待了一番时间后,yum会帮我们选择好安装mysql数据库所需要的软件以及其它附属的一些软件

 

 

我们发现,通过yum方式安装mysql数据库省去了很多没必要的麻烦,当出现下面的结果时,就代表mysql数据库安装成功了

 

 

此时我们可以通过如下命令,查看刚安装好的mysql-server的版本

 

[root@xiaoluo ~]# rpm -qi mysql-server
Nach dem Login kopieren

 

我们安装的mysql-server并不是最新版本,如果你想尝试最新版本,那就去mysql官网下载rpm包安装就行了,至此我们的mysql数据库已经安装完成了。

四、mysql数据库的初始化及相关配置

我们在安装完mysql数据库以后,会发现会多出一个mysqld的服务,这个就是咱们的数据库服务,我们通过输入 service mysqld start 命令就可以启动我们的mysql服务。

注意:如果我们是第一次启动mysql服务,mysql服务器首先会进行初始化的配置,如:


Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

[root@xiaoluo ~]# service mysqld start初始化 MySQL 数据库: WARNING: The host 'xiaoluo' could not be looked up with resolveip.
This probably means that your libc libraries are not 100 % compatible
with this binary MySQL version. The MySQL daemon, mysqld, should work
normally with the exception that host name resolving will not work.
This means that you should use IP addresses instead of hostnames
when specifying MySQL privileges !Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !To do so, start the server, then issue the following commands:/usr/bin/mysqladmin -u root password 'new-password'/usr/bin/mysqladmin -u root -h xiaoluo password 'new-password'Alternatively you can run:/usr/bin/mysql_secure_installationwhich will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

                                                           [确定]
正在启动 mysqld:                                            [确定]
Nach dem Login kopieren

Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

 

这时我们会看到第一次启动mysql服务器以后会提示非常多的信息,目的就是对mysql数据库进行初始化操作,当我们再次重新启动mysql服务时,就不会提示这么多信息了,如:

 

[root@xiaoluo ~]# service mysqld restart停止 mysqld:                                             [确定]
正在启动 mysqld:                                          [确定]
Nach dem Login kopieren

 

我们在使用mysql数据库时,都得首先启动mysqld服务,我们可以 通过  chkconfig --list | grep mysqld 命令来查看mysql服务是不是开机自动启动,如:

 

[root@xiaoluo ~]# chkconfig --list | grep mysqld
mysqld             0:关闭    1:关闭    2:关闭    3:关闭    4:关闭    5:关闭    6:关闭
Nach dem Login kopieren

 

我们发现mysqld服务并没有开机自动启动,我们当然可以通过 chkconfig mysqld on 命令来将其设置成开机启动,这样就不用每次都去手动启动了

 

[root@xiaoluo ~]# chkconfig mysqld on
[root@xiaoluo ~]# chkconfig --list | grep mysql
mysqld             0:关闭    1:关闭    2:启用    3:启用    4:启用    5:启用    6:关闭
Nach dem Login kopieren

 

mysql数据库安装完以后只会有一个root管理员账号,但是此时的root账号还并没有为其设置密码,在第一次启动mysql服务时,会进行数据库的一些初始化工作,在输出的一大串信息中,我们看到有这样一行信息 :

 

/usr/bin/mysqladmin -u root password 'new-password'  // 为root账号设置密码
Nach dem Login kopieren

 

所以我们可以通过 该命令来给我们的root账号设置密码(注意这个root账号是mysql的root账号,非Linux的root账号)

 

[root@xiaoluo ~]# mysqladmin -u root password 'root'  // 通过该命令给root账号设置密码为 root
Nach dem Login kopieren

 

此时我们就可以通过 mysql -u root -p 命令来登录我们的mysql数据库了

 

五、mysql数据库的主要配置文件

1./etc/my.cnf 这是mysql的主配置文件

我们可以查看一下这个文件的一些信息


Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

[root@xiaoluo etc]# =/var/lib/=/var/lib/mysql/=--links=-error=/var/log/-=/var/run/mysqld/mysqld.pid
Nach dem Login kopieren

Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

2./var/lib/mysql   mysql数据库的数据库文件存放位置

我们的mysql数据库的数据库文件通常是存放在了/ver/lib/mysql这个目录下

 


Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

[root@xiaoluo ~]# cd /var/lib/mysql/[root@xiaoluo mysql]# ls -l
总用量 20488-rw-rw----. 1 mysql mysql 10485760 4月   6 22:01 ibdata1-rw-rw----. 1 mysql mysql  5242880 4月   6 22:01 ib_logfile0-rw-rw----. 1 mysql mysql  5242880 4月   6 21:59 ib_logfile1
drwx------. 2 mysql mysql     4096 4月   6 21:59 mysql  // 这两个是mysql数据库安装时默认的两个数据库文件srwxrwxrwx. 1 mysql mysql        0 4月   6 22:01 mysql.sock
drwx------. 2 mysql mysql     4096 4月   6 21:59 test  // 这两个是mysql数据库安装时默认的两个数据库文件
Nach dem Login kopieren

Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

 

我们可以自己创建一个数据库,来验证一下该数据库文件的存放位置

 


Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

创建一个我们自己的数据库:mysql> create database xiaoluo;
Query OK, 1 row affected (0.00 sec)

[root@xiaoluo mysql]# ls -l
总用量 20492-rw-rw----. 1 mysql mysql 10485760 4月   6 22:01 ibdata1-rw-rw----. 1 mysql mysql  5242880 4月   6 22:01 ib_logfile0-rw-rw----. 1 mysql mysql  5242880 4月   6 21:59 ib_logfile1
drwx------. 2 mysql mysql     4096 4月   6 21:59 mysql
srwxrwxrwx. 1 mysql mysql        0 4月   6 22:01 mysql.sock
drwx------. 2 mysql mysql     4096 4月   6 21:59 test
drwx------. 2 mysql mysql     4096 4月   6 22:15 xiaoluo  // 这个就是我们刚自己创建的xiaoluo数据库[root@xiaoluo mysql]# cd xiaoluo/[root@xiaoluo xiaoluo]# lsdb.opt
Nach dem Login kopieren

Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

3./var/log mysql数据库的日志输出存放位置

我们的mysql数据库的一些日志输出存放位置都是在/var/log这个目录下


Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

[root@xiaoluo xiaoluo]# cd 
[root@xiaoluo ~]# cd /var/log
[root@xiaoluo log]# lsamanda                cron           maillog-20130331   spice-vdagent.log
anaconda.ifcfg.log    cron-20130331  mcelog             spooler
anaconda.log          cups           messages           spooler-20130331anaconda.program.log  dirsrv         messages-20130331  sssd
anaconda.storage.log  dmesg          mysqld.log         tallylog
anaconda.syslog       dmesg.old      ntpstats           tomcat6
anaconda.xlog         dracut.log     piranha            wpa_supplicant.log
anaconda.yum.log      gdm            pm-powersave.log   wtmp
audit                 httpd          ppp                Xorg.0.log
boot.log              ibacm.log      prelink            Xorg.0.log.old
btmp                  lastlog        sa                 Xorg.1.log
btmp-20130401         libvirt        samba              Xorg.2.log
cluster               luci           secure             Xorg.9.log
ConsoleKit            maillog        secure-20130331    yum.log
Nach dem Login kopieren

Nginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial

 

其中mysqld.log 这个文件就是我们存放我们跟mysql数据库进行操作而产生的一些日志信息,通过查看该日志文件,我们可以从中获得很多信息

 

因为我们的mysql数据库是可以通过网络访问的,并不是一个单机版数据库,其中使用的协议是 tcp/ip 协议,我们都知道mysql数据库绑定的端口号是 3306 ,所以我们可以通过 netstat -anp 命令来查看一下,Linux系统是否在监听 3306 这个端口号:

结果如上所示,Linux系统监听的3306端口号就是我们的mysql数据库!!!!

 

本篇随笔详细记录了在CentOS6.4下通过yum安装mysql数据库以及对数据库进行基本配置。

转自:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html

相关推荐:

Nginx和php安装及配置八之nginx session的共享

Nginx和php安装及配置七之nginx负载均衡的5种策略

Nginx和php安装及配置六之Nginx反向代理和负载均衡部署指南

Das obige ist der detaillierte Inhalt vonNginx- und PHP-Installation und -Konfiguration, neun MySQL-Installations-Tutorial. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser 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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!