简单几步实现linux系统安装lamp环境

以前记录的一份安装LAMP环境的linux操作步骤,今天简单记录一下,方便日后可以快速找到。

一般购买的新服务器都是需要配置的,根据我们实际需要可能要安装lamp、lnmp、或者python网络环境等。

今天简单说说安装LAMP的步骤。

1.流程:新购服务器》登录linux终端》安装环境》测试环境》部署项目》完成

这里主要说安装环境的过程,不采用自己编译的模式而是采用直接安装源包的模式。

我的安装过程是先自动安装了个php5.4的版本,然后升级到了7.0版本。


    1  cat /etc/redhat-release #看看系统版本》CentOS Linux release 7.2.1511 (Core) ,这是我的系统
    2  rpm -qa | grep httpd #看看系统httpd情况 》发现没有,表示没有安装过,下一步进行安装
    3  yum -y install httpd #安装httpd,上一步检查apache没有安装,没有的话我们安装apache,有的话先卸载【rpm -qa|grep httpd】
    4   yum -y install php #然后安装php(默认是php5.4版本)
    5  yum -y install php-fpm #安装php-fpm
    6  yum -y install mysql #我的系统版本过高,用这个数据库类型yum install -y mariadb 
    7  yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql #安装Apache扩展包
    8  yum -y install php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc php-devel #安装PHP扩展包
    9 yum -y install mysql-connector-odbc mysql-devel libdbi-dbd-mysql #安装mysql扩展包

    10 配置基本命令:

    systemctl start httpd.service #启动apache
    systemctl stop httpd.service #停止apache
    systemctl restart httpd.service #重启apache
    systemctl enable httpd.service #设置apache开机启动【这个先设置一下,免得每次都要重启服务】

    #启动MariaDB
    [wbs~]# systemctl start mariadb.service   
    #停止MariaDB
    [wbs ~]# systemctl stop mariadb.service   
    #重启MariaDB
    [wbs ~]# systemctl restart mariadb.service  
    #设置开机启动
    [wbs~]# systemctl enable mariadb.service  

    对应服务重启:

    service mysqld restart
    service php-fpm start
    service httpd restart


设置 MySQL 数据 root 账户的密码(新配置的mysql才需要):

1.mysql_secure_installation

2.Enter current password for root  #(按回车)

3.Set root password? [Y/n] #输入Y回车

4.New password: #输入密码,感觉没有反应的,按回车就行了
5.确认修改,确认(Y)就可以了:

Remove anonymous users? [Y/n]
Disallow root login remotely? [Y/n]
Remove test database and access to it? [Y/n]
Reload privilege tables now? [Y/n]


在/var/www/html 写个phpinfo.php 里面输入<?php phpinfo();
最后测试环境:通过【http://【服务器IP或者绑定的域名】/phpinfo.php】访问即可出现lamp环境信息,

当然我这里是php5.4版本

看下一篇,升级服务器的php版本

评论/留言