安装Lighttpd与PHP5(PHP-FPM)和MySQL支持在科学Linux 6.3
Lighttpd是一款安全,快速,符合标准的Web服务器,专为速度至关重要的环境而设计。 本教程将介绍如何在具有PHP5支持(通过PHP-FPM)和MySQL支持的Scientific Linux 6.3服务器上安装Lighttpd。 PHP-FPM(FastCGI Process Manager)是一种替代的PHP FastCGI实现,具有对任何大小的网站(特别是繁忙的站点)有用的一些附加功能。 我在本教程中使用PHP-FPM,而不是Lighttpd的spawn-fcgi。
我不会保证这将为您工作!
1初步说明
在本教程中,我使用IP地址为192.168.0.100
的hostname server1.example.com
。 这些设置可能会有所不同,因此您必须在适当的情况下更换它们。
2安装MySQL 5
首先我们像这样安装MySQL 5:
yum install mysql mysql-server
然后,我们为MySQL创建系统启动链接(以便每当系统启动时,MySQL自动启动)并启动MySQL服务器:
chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start
设置MySQL根帐户的密码:
mysql_secure_installation
[root @ server1〜]#mysql_secure_installation
注意:运行本脚本的所有部分是为所有MySQL推荐的
服务器生产使用!
请仔细阅读每一步!
为了登录MySQL来保护它,我们需要当前的
root用户的密码。
如果你刚刚安装了MySQL,
您还没有设置root密码,密码将为空,
所以你应该刚刚进入这里。
输入root的当前密码(输入无):
OK,成功使用密码,移动...
设置root密码确保没有人可以登录MySQL
root用户没有正确的授权。
设置root密码?
[Y / n]
< - ENTER
新密码:
< - yourrootsql 密码
重新输入新密码:
< - yourrootsqlpassword
密码更新成功!
重新载入特权表..
...成功!
默认情况下,MySQL安装有一个匿名用户,允许任何人
登录MySQL,而不必创建用户帐户
他们。
这仅适用于测试和进行安装
顺利一点
你应该删除它们,然后再进入
生产环境。
删除匿名用户?
[Y / n]
< - ENTER
...成功!
通常,root只能被允许从'localhost'连接。
这个
确保有人无法从网络的root密码猜测。
禁止root登录远程?
[Y / n]
< - ENTER
...成功!
默认情况下,MySQL附带一个名为'test'的数据库,任何人都可以
访问。
这也仅用于测试,应该删除
在进入生产环境之前。
删除测试数据库并访问它?
[Y / n]
< - ENTER
- 删除测试数据库...
...成功!
- 删除测试数据库的权限...
...成功!
重新加载权限表将确保所有更改到目前为止
将立即生效。
现在重新加载权限表?
[Y / n]
< - ENTER
...成功!
打扫干净...
全做完了!
如果您已经完成了上述所有步骤,您的MySQL
安装应该是安全的。
感谢使用MySQL!
[root @ server1〜]#
3安装Lighttpd
由于Lighttpd和PHP-FPM不能从官方的Scientific Linux存储库获得,因此我们需要启用Remi RPM存储库和EPEL存储库:
rpm --import https://fedoraproject.org/static/0608B895.txt
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -ivh epel-release-6-8.noarch.rpm
rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
yum install yum-priorities
编辑/etc/yum.repos.d/epel.repo
...
vi /etc/yum.repos.d/epel.repo
...并将行优先级= 10
添加到[epel]
部分:
[epel] name=Extra Packages for Enterprise Linux 6 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/6/$basearch mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearch failovermethod=priority enabled=1 priority=10 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 [...] |
然后对/etc/yum.repos.d/remi.repo
中的[remi]
部分执行相同操作,并将更改启用
为1
:
vi /etc/yum.repos.d/remi.repo
[remi] name=Les RPM de remi pour Enterprise Linux $releasever - $basearch #baseurl=http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/ mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/remi/mirror enabled=1 priority=10 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi failovermethod=priority [remi-test] name=Les RPM de remi en test pour Enterprise Linux $releasever - $basearch #baseurl=http://rpms.famillecollet.com/enterprise/$releasever/test/$basearch/ mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/test/mirror enabled=0 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi |
之后,我们可以像这样安装Lighttpd:
yum install lighttpd
然后我们创建Lighttpd的系统启动链接(以便Lighttpd在系统引导时自动启动)并启动它:
chkconfig --levels 235 lighttpd on
/etc/init.d/lighttpd start
如果Lighttpd无法从以下错误消息开始...
(network.c.203) socket failed: Address family not supported by protocol
...打开/etc/lighttpd/lighttpd.conf
...
vi /etc/lighttpd/lighttpd.conf
...并将server.use-ipv6
从enable设置
为disable
:
[...] |
然后尝试再次启动Lighttpd - 它现在应该没有任何问题:
/etc/init.d/lighttpd start
现在将您的浏览器指向http://192.168.0.100
,您应该看到以下页面:
Lighttpd的默认文档根目录是Scientific Linux 6.3上的/ var / www / lighttpd /
,配置文件是/etc/lighttpd/lighttpd.conf
。
4安装PHP5
我们可以通过PHP-FPM使PHP5在Lighttpd中工作,我们安装如下:
yum install php-fpm lighttpd-fastcgi
PHP-FPM是一个守护进程,在端口9000
上运行FastCGI服务器。
打开/etc/php-fpm.d/www.conf
...
vi /etc/php-fpm.d/www.conf
...并将用户
和组
设置为lighttpd
:
[...] ; Unix user/group of processes ; Note: The user is mandatory. If the group is not set, the default user's group ; will be used. ; RPM: apache Choosed to be able to access some dir as httpd user = lighttpd ; RPM: Keep a group allowed to write in log dir. group = lighttpd [...] |
创建PHP-FPM的系统启动链接并启动它:
chkconfig --levels 235 php-fpm on
/etc/init.d/php-fpm start