
安装apache
yum install httpd
启动apache
systemctl start httpd.service
查看运行状态
systemctl status httpd.service
编辑测试页面
echo “xingming”>/var/www/html/index.html
打开浏览器输入公网ip地址,结果如下:
立即学习“PHP免费学习笔记(深入)”;

SmartB2B 是一款基于PHP、MySQL、Smarty的B2B行业电子商务网站管理系统,系统提供了供求模型、企业模型、产品模型、人才招聘模型、资讯模型等模块,适用于想在行业里取得领先地位的企业快速假设B2B网站,可以运行于Linux与Windows等多重服务器环境,安装方便,使用灵活。 系统使用当前流行的PHP语言开发,以MySQL为数据库,采用B/S架构,MVC模式开发。融入了模型化、模板
安装MySQL
yum install mariadb-server mariadb systemctl start mariadb //运行 systemctl status mariadb //查看运行状态 # mysql -u root -p //登录mysql Enter password: 【输入原来的密码】 //密码默认为空 mysql>usemysql;
修改密码
mysql> update user setpassword=passworD("test") where user='root';
mysql> flush privileges;
mysql> exit;安装php环境
yum install php php-mysql
重新启动apache
systemctl restart httpd.service
推荐教程:PHP视频教程










