yum安装lamp

mac2024-12-13  33

LAMP安装

L:指代Linux操作系统 A:apache M:mysql或 mariadb P:php **环境:** 虚拟机上安装Centos系统 系统版本:CentOS Linux release 7.4.1708 (Core) 内核:Linux localhost.localdomain 3.10.0-693.el7.x86_64 #1 SMP Tue Aug 22 21:09:27 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux Ip: 192.168.233.149

Yum安装lamp是最简单的一种方式

yum install httpd php mod_ssl php-mysql mariadb-server httpd-devel

开始进行安装。

安装完毕

启动服务

systemctl start httpd.service systemctl start mariadb.service

打开192.168.233.149

说明,apche启动成功。

root@localhost ~]# whereis -b httpd httpd: /usr/sbin/httpd /usr/lib64/httpd /etc/httpd /usr/include/httpd /usr/share/httpd

apche的默认配置路径为: /etc/httpd

测试 apache是否支持php

添加php文件

在默认路径: /var/www/html

代码是:

<?php phpinfo() ?>

打开网址:192.168.23.149/a.php

Apache和php正常。

下面,进行配置mariadb的密码

首次安装需要进行数据库的配置,命令都和mysql的一样 [root@localhost ~]# mysql_secure_installation 进行如下操作 Enter current password for root (enter for none): # 输入数据库超级管理员root的密码(注意不是系统root的密码), 第一次进入还没有设置密码则直接回车 Set root password? [Y/n] # 设置密码,y New password: # 新密码 Re-enter new password: # 再次输入密码 Remove anonymous users? [Y/n] # 移除匿名用户, y Disallow root login remotely? [Y/n] # 拒绝root远程登录,n, 不管y/n,都会拒绝root远程登录 Remove test database and access to it? [Y/n] # 删除test数据库,y:删除。n:不删除,数据库中会有一个test数据库,一般不需要 Reload privilege tables now? [Y/n] # 重新加载权限表,y。或者重启服务也许 测试是否能够登录成功, #mysql -uroot -p Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 14 Server version: 5.5.64-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> 就表示已经能够正常登录使用MariaDB数据库了

如此,一个简单的lamp已经创建完毕了。

最新回复(0)