Centos6.6用yum快速安装LA(N)MP

本文主要介绍在CentOS6.6下用yum快速搭建LAMP或LNMP环境

基本流程:

1.安装apche或nginx

2.安装mysql

3.安装php

4.测试环境



流程一:安装apche或nginx

1)关闭SELINUX

修改配置文件,重启服务后永久生效。

sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config

命令行设置立即生效。

setenforce 0

网易官方源
centos6.x
cd /etc/yum.repos.d/
mv CentOS-Base.repo CentOS-Base.repo.$(date +%F)
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
yum clean all
yum makecache

更多国内知名yum源可参考:http://blog.51cto.com/13707680/2104644

2)安装Apache:

yum -y install httpd

yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql

/etc/init.d/httpd start

netstat -tnlp|grep 80

安装nginx:

Centos6系统库中默认是没有nginx的rpm包的,所以我们需要先更新下rpm依赖库

1)使用yum安装nginx,安装nginx库

rpm -Uvh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

2)使用下面命令安装nginx

yum -y install nginx

[[email protected] ~]# nginx -v

nginx version: nginx/1.14.0

3)启动nginx

/etc/init.d/nginx start 或 service nginx start

4 ) 防火墙允许通过80端口

vim /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

/etc/init.d/iptables restart



流程二:安装mysql

1)安装Mysql,先更新yum源。yum源下载地址,根据自己需要的版本选择相应的源

https://dev.mysql.com/downloads/repo/yum/

2)这里版本是6.x系列的,所以选择linux 6 下载

wget https://repo.mysql.com//mysql57-community-release-el6-11.noarch.rpm

3)安装mysql的yum源

rpm -Uvh mysql57-community-release-el6-11.noarch.rpm  或 yum -y localinstall mysql57-community-release-el6-11.noarch.rpm

4)查看mysql源是否成功

[[email protected] yum.repos.d]# ls /etc/yum.repos.d/|grep mysql

mysql57-community-release-el6-11.noarch.rpm

mysql-community.repo

mysql-community-source.repo

5)安装mysql

yum -y install mysql-community-server

[[email protected] ~]# mysql -V

mysql  Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using  EditLine wrapper

6)开启mysql,并更改默认密码

/etc/init.d/mysqld start

netstat -tnlp |grep 3306

chkconfig mysqld on

[[email protected] yum.repos.d]# grep 'temporary password' /var/log/mysqld.log

2018-05-10T22:59:11.434638Z 1 [Note] A temporary password is generated for [email protected]: OScMFRu&j75Q

mysql -uroot -p"OScMFRu&j75Q"

ALTER USER 'root'@'localhost' IDENTIFIED BY 'ywxi123';

mysql -uroot -p"ywxi123"

7)防火墙允许通过3306端口

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

service iptables restart



流程三:安装php

1)更新yum源

rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm

rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

2)安装PHP

yum -y install --enablerepo=remi --enablerepo=remi-php56 php php-bcmath php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-gd php-xml php-memcache php-redis php-fpm php-mysql php-common php-mssql

3)配置php.ini文件,关闭php信息头

sed 's#expose_php = On#expose_php = Off#g' /etc/php.ini -i

[[email protected] html]# php -v

PHP 5.6.36 (cli) (built: Apr 25 2018 10:11:47)

4)启动php,并开机自启

/etc/init.d/php-fpm start

chkconfig php-fpm on



流程四:环境测试

1)LNMP环境测试准备

编辑/etc/nginx/conf.d/default.conf,在所支持的主页面格式中添加php格式的主页,类似如下:

[[email protected] conf.d]# cat default.conf

server {

listen       80;

server_name  localhost;

#charset koi8-r;

#access_log  /var/log/nginx/host.access.log  main;

location / {

root   /usr/share/nginx/html;

index index.php index.html index.htm;

}

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html

#

error_page   500 502 503 504  /50x.html;

location = /50x.html {

root   /usr/share/nginx/html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ \.php$ {

#    proxy_pass   http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

location ~ \.php$ {

root           /usr/share/nginx/html;

fastcgi_pass   127.0.0.1:9000;

fastcgi_index  index.php;

fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/$fastcgi_script_name;

include        fastcgi_params;

}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /\.ht {

#    deny  all;

#}

}

[[email protected] html]# cat /usr/share/nginx/html/index.php

<?php

$conn=mysql_connect('127.0.0.1','root','ywxi123');

if ($conn){

echo "LNMP platform connect to mysql is successful!";

}else{

echo "LNMP platform connect to mysql is failed!";

}

phpinfo();

?>

chown -R nginx.nginx /usr/share/nginx/html/

http://192.168.1.22/index.php 访问到如下页面证明LNMP环境搭建成功



2)LAMP环境测试准备

/etc/init.d/nginx stop

/etc/init.d/httpd start

[[email protected] html]# cat /var/www/html/index.php

<?php

$conn=mysql_connect('127.0.0.1','root','ywxi123');

if ($conn){

echo "LAMP platform connect to mysql is successful!";

}else{

echo "LAMP platform connect to mysql is failed!";

}

phpinfo();

?>

chown -R apache.apache /var/www/html

http://192.168.1.22/index.php 访问到如下页面证明LAMP环境搭建成功

原文地址:http://blog.51cto.com/13707680/2115079

时间: 2024-10-22 05:34:59

Centos6.6用yum快速安装LA(N)MP的相关文章

(总结)CentOS 6.x使用yum快速安装Apache+PHP+Tomcat(JSP)+MySQL

(总结)CentOS 6.x使用yum快速安装Apache+PHP+Tomcat(JSP)+MySQL PS:这个是懒人yum快速安装法,用于开发和测试环境很方便,用于没有特殊要求的生产环境也可以.特殊要求的还是自己去编译安装吧~~ 1.安装Apahce.PHP.MySQL和PHP连接MySQL数据库的包:# yum -y install httpd php mysql mysql-server php-mysql 2.安装Apache常用扩展包:# yum -y install httpd-m

Zabbix 使用yum快速安装

两句百科的话: Zabbix基于WEB界面的提供分布式 系统监视以及网络监控的企业级开元解决方案: zabbix由2部分构成,zabbix server与可选组件zabbix agent. zabbix agent需要安装在被监视的目标服务器上,它主要完成对硬件信息或与操作系统有关的内存,CPU等信息的收集.zabbix agent可以运行在Linux,Solaris,HP-UX,AIX,Free BSD,Open BSD, OS X, Tru64/OSF1, Windows NT4.0, Wi

CentOS6使用第三方yum源安装更多rpm软件包

引言:       CentOS自带的yum源中rpm包数量有限,很多时候找不到我们需的软件包,(例如:要安装网络连接查看软件iftop,默认设置下无法使用yum命令安装),下面教大家在CentOS 6.2中(以32位系统为例,64位系统安装方法一样),使用第三方yum源来安装更多软件包. 一.安装CentOS yum源优先级插件yum-priorities       yum install yum-priorities   #输入y安装 二.设置CentOS默认yum源的优先级为最高    

CentOS6.4下Yum命令安装Mysql数据库及配置

如果要在Linux上做j2ee开发,首先得搭建好j2ee的开发环境,包括了jdk.tomcat.eclipse的安装(这个在之前的一篇随笔中已经有详细讲解了 如果要开发web项目,我们当然可以安装一个myeclipse到Linux系统上去,这个安装方法和安装eclipse完全相同,就没有记录下来了,有 了jdk.tomcat.eclipse我们就已经能进行我们的程序开发了,但是如果要做一个项目,哪怕是小的不能再小的项目都离不开数据的存储呀!!! 没错,咱们还差一个最重要的软件没有装,也就是数据库

centos6.3用yum方式安装npm实现mongo可视化操作

要通过 yum 来安装 nodejs 和 npm 需要先给 yum 添加 epel 源 ##添加 epel 源 64位: rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm 32位: rpm -ivh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm 导入 key:

Centos7.2源码编译安装LA(N)MP

LAMP环境中php是作为apache的模块安装的,所以安装顺序是php放在apache的后面安装,这样便于安装php时可以在apache的模块目录生成对应的php模块. apache版本:2.4.37 mysql版本:5.7.24 php版本:7.3.0 nginx版本:nginx-1.14.2 注意:这里是使用的root用户安装,如果是其他用户,相应的操作前需要加上sudo. 1.安装apache 需要安装的依赖 apr.apt-util.pcre,pcre是一个正则表达式库,apache在

CentOS用yum快速安装nginx

增加nginx源 vim  /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=0 enabled=1 安装nginx yum -y install nginx 配置nginx vim /etc/nginx/nginx.conf

centos7下yum快速安装 mariadb(mysql)

从最新版本的centos系统开始,默认的是 Mariadb而不是mysql! 使用系统自带的repos安装很简单: yum install mariadb mariadb-server systemctl start mariadb ==> 启动mariadb systemctl enable mariadb ==> 开机自启动 mysql_secure_installation ==> 设置 root密码等相关 mysql -uroot -p123456 ==> 测试登录! 结束

CentOS6.8下简单快速安装SVN-测试小白的福利

1.yum install subversion安装svn 2.svn --version查看安装版本 3.svnadmin create /duoceshi/svn/repo/创建版本库,(/duoceshi/svn/repo这个目录自定义的,如果不存在执行命令的时候会自动创建) 4.ls -al /duoceshi/svn/repo查看/duoceshi/svn/repo/ 文件夹发现包含了conf, db,format,hooks, locks, README.txt等文件,说明一个SVN