博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7 yum搭建lamp
阅读量:7031 次
发布时间:2019-06-28

本文共 3229 字,大约阅读时间需要 10 分钟。

环境

系统:centos7

安装apache

#yum 安装apache

  [root@localhost ~]# yum install httpd httpd-devel

  

#启动httpd服务

   [root@localhost ~]# systemctl start httpd

   [root@localhost ~]# systemctl status httpd

   

#防火墙设置80端口开放

   [root@localhost ~]# firewall-cmd --permanent --zone=public  --add-service=http

   success
   [root@localhost ~]# firewall-cmd --permanent --zone=public  --add-service=https
   success
   [root@localhost ~]# firewall-cmd --reload
   success

   

#查看80端口监听

   [root@localhost ~]# netstat -tulp

   

#浏览器测试

   

安装mysql

 #查看安装包

   [root@localhost ~]# yum provides mysql

   

#安装mysql

  [root@localhost ~]# yum install mariadb -y

  

#安装mysql安装包

   [root@nmserver-7 ~]# yum install mariadb mariadb-server mariadb-libs mariadb-devel

#启动服务

    [root@nmserver-7 ~]#systemctl start mysql

#数据库安全设置

   [root@localhost ~]# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!In order to log into MariaDB to secure it, we'll need the currentpassword for the root user.  If you've just installed MariaDB, andyou haven't set the root password yet, the password will be blank,so you should just press enter here.Enter current password for root (enter for none):OK, successfully used password, moving on...Setting the root password ensures that nobody can log into the MariaDBroot user without the proper authorisation.Set root password? [Y/n] yNew password:Re-enter new password:Password updated successfully!Reloading privilege tables.. ... Success!By default, a MariaDB installation has an anonymous user, allowing anyoneto log into MariaDB without having to have a user account created forthem.  This is intended only for testing, and to make the installationgo a bit smoother.  You should remove them before moving into aproduction environment.Remove anonymous users? [Y/n] y ... Success!Normally, root should only be allowed to connect from 'localhost'.  Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] n ... skipping.By default, MariaDB comes with a database named 'test' that anyone canaccess.  This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success!Reloading the privilege tables will ensure that all changes made so farwill take effect immediately.Reload privilege tables now? [Y/n] y ... Success!Cleaning up...All done!  If you've completed all of the above steps, your MariaDBinstallation should now be secure.Thanks for using MariaDB!

 

#登陆数据库测试

   [root@localhost ~]# mysql -uroot -p

   

安装php

#安装php

  [root@localhost ~]# yum -y install php

  

#安装php拓展包

   [root@localhost ~]# yum install php-mysql

   [root@localhost ~]# yum install -y php-gd php-ldap

   [root@localhost ~]# yum install -y php-gd php-odbc php-pear

   [root@localhost ~]# yum install -y php-xml php-xmlrpc

   [root@localhost ~]# yum install -y php-mbstring php-snmp php-soap curl curl-devel php-bcmath

测试

#网站发布目录为:

  /var/www/html

#创建一个php文件并编辑:phpinfo

  [root@localhost html]# touch phpinfo.php

  [root@localhost html]# vim phpinfo.php

  

#浏览器访问

 

转载于:https://www.cnblogs.com/qingwuyou/p/10687451.html

你可能感兴趣的文章
第十一天-《企业应用架构模式》-对象-关系行为模式
查看>>
[spring boot] jdbc
查看>>
新的开始!
查看>>
区块链— 比特币中的区块、账户验证和记账
查看>>
Electron打包,NSIS修改默认安装路径
查看>>
分享一些好用的网站
查看>>
【Android】Retrofit 2.0 的使用
查看>>
Nacos系列:基于Nacos的注册中心
查看>>
原生JS 实现复杂对象深拷贝(对象值包含函数)
查看>>
【跃迁之路】【732天】程序员高效学习方法论探索系列(实验阶段489-2019.2.22)...
查看>>
PAT A1060 科学记数法经典例题(全string库解决)
查看>>
仿知乎分享界面
查看>>
最小外接矩形思路以及实现
查看>>
Python是什么?简单了解pythonp-入门
查看>>
利用ES6进行Promise封装总结
查看>>
ES10 特性的完整指南
查看>>
学习threejs走过的坑
查看>>
ThinkSNS+的 SPA(H5)安装教程
查看>>
C++回声服务器_5-多进程版本
查看>>
CSS外边距折叠引发的问题
查看>>