iis服务器助手广告广告
返回顶部
首页 > 资讯 > 数据库 >LAMP网站架构的基础构思及搭建解析——CentOS7.0
  • 485
分享到

LAMP网站架构的基础构思及搭建解析——CentOS7.0

2024-04-02 19:04:59 485人浏览 独家记忆
摘要

LAMP的定义:lamp:指linux(操作系统)、Apache(Http 服务器)、Mysql/MariaDB(数据库软件) 、以及PHP/perl/python(j脚本语言)所组成的架构,一般用于建立W

LAMP的定义:

lamp:指linux(操作系统)、Apache(Http 服务器)、Mysql/MariaDB(数据库软件) 、以及PHP/perl/python(j脚本语言)所组成的架构,一般用于建立WEB应用平台。


环境:本地系统操作,无防火墙影响。

系统:Centos7.0 

ip:172.25.254.3

[root@localhost /]cat /etc/yum.repo/server.repo     ——配置yum仓库(本地)

[base]

name=server

baseurl=file:///mnt 

eabled=1

gpGCheck=0

[root@localhost /]mount /dev/cdrom /mnt         

[root@localhost /]yum -y install php php-mysql httpd mariadb-server     ——安装所需服务安装包

[root@localhost /]cat /var/www/html/index.php        ——配置主页php文件

 

<?php

phpinfo();

?>

[root@localhost /]systemctl restart httpd ; systemctl enable httpd ;systemctl restart mariadb ;systemctl enable mariadb                    ——重启服务,并保证永久生效

[root@localhost /]firefox localhost         

[root@localhost /]mysql

MariaDB [(none)]> GRANT ALL ON testdb.* TO testuser@'%' IDENTIFIED BY 'testpass'; 

 

                                                                                                      ——允许testuser用户以任何形式登录

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> FLUSH PRIVILEGES;                                 ——立即生效

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit

 

Bye

 

[root@localhost /]# mysql -u testuser -h 172.25.254.3  -p                 ——测试testuser登录testdb数据库

Enter passWord:testpass

 

Welcome to the MariaDB monitor. Commands end with ; or \g.

 

Your MariaDB connection id is 3

 

Server version: 5.5.44-MariaDB MariaDB Server

Copyright (c) 2000, 2015, oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>exit

Bye

[root@localhost /]vim /var/www/html/index.php       

<?php

$conn = mysql_connect(“172.25.254.3”,”testuser”,”testpass”);  ——配置php与数据库连接

if ($conn)

echo “OK”;

else

echo “NO”;

?>

[root@localhost /]setenforce 0                 ——关闭selinux

[root@localhost /]firefox localhost            ——测试页面显示“OK”,则配置成功


上传博客wordpress-3.3.1-zh_CN.zip到根目录

[root@localhost /]unzip wordpress-3.3.1-zh_CN.zip         ——解压开发好的博客压缩包

[root@localhost /]# ls

bin    etc   lib64   opt   run   sys  var

boot   home   media   proc   sbin  tmp  wordpress

dev    lib   mnt    root   srv   usr  wordpress-3.3.1-zh_CN.zip

[root@localhost /]# mv wordpress /var/www/html/     ——移动到/var/ww/html可供web访问

[root@localhost /]# cd /var/www/html/

[root@localhost html]# cd wordpress/

[root@localhost wordpress]# ls

index.php          wp-config-sample.php         wp-pass.php

license.txt         wp-content               wp-reGISter.php

readme.html         wp-cron.php              wp-settings.php

wp-activate.php      wp-includes              wp-signup.php

wp-admin           wp-links-opml.php         wp-trackback.php

wp-app.php         wp-load.php              xmlrpc.php

wp-blog-header.php    wp-login.php

wp-comments-post.php   wp-mail.php

[root@localhost wordpress]# cp wp-config-sample.php wp-config-sample.php.back   ——备份

[root@localhost wordpress]# mv wp-config-sample.php wp-config.php     ——改名为配置文件名

[root@localhost wordpress]# mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.

Your MariaDB connection id is 10

Server version: 5.5.44-MariaDB MariaDB Server

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> GRANT ALL ON wpdb.* TO wpuser@'%' IDENTIFIED BY 'wppass';

Query OK, 0 rows affected (0.02 sec)

MariaDB [(none)]> create database wpdb;

Query OK, 1 row affected (0.02 sec)

MariaDB [(none)]> FLUSH PRIVILEGES;

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit

Bye

[root@localhost wordpress]# vim wp-config.php          ——更改配置文件,博客与数据库相关联

// ** MySQL 设置 - 具体信息来自您正在使用的主机 ** //

define('DB_NAME', 'wpdb');

define('DB_USER', 'wpuser');

define('DB_PASSWORD', 'wppass');

define('DB_HOST', '172.25.254.3');

火狐访问主机:localhost/wordpress,按需求安装wordpress


您可能感兴趣的文档:

--结束END--

本文标题: LAMP网站架构的基础构思及搭建解析——CentOS7.0

本文链接: https://www.lsjlt.com/news/49994.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作