博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux上安装Mysql+Apache+Php
阅读量:6341 次
发布时间:2019-06-22

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

一、安装Mysql

1、卸载默认的mysql

yum -y remove mysql-libs-*

Removed:

  mysql-libs.x86_64 0:5.1.73-3.el6_5  

卸载成功

2、上传四个文件,然后rpm

rpm -ivh MySQL-server-5.6.19-1.el6.x86_64.rpm   rpm -ivh MySQL-client-5.6.19-1.el6.x86_64.rpm  rpm -ivh MySQL-devel-5.6.19-1.el6.x86_64.rpm   rpm -ivh MySQL-shared-5.6.19-1.el6.x86_64.rpm

 

说明:如果第一步没有卸载,会出现包冲突

出现问题一:

file /usr/share/man/man1/mysqlshow.1.gz from install of MySQL-client-4.1.16-1.glibc23
conflicts with file from package mysql-3.23.54a-11----------------------------------------------------------解决方案:卸载软件原因有包冲突。解决冲突: 
yum -y remove mysql-libs-*
yum -y remove mysql-libs-5.1.61*        -y的意思就是不用询问是否remove
卸载完成之后,再安装MySQL成功了

3、开启Mysql

/etc/init.d/mysql start

4、

第一次如何登陆mysql呢

1、su命令【root用户就不需要了】
2、/etc/init.d/mysql start 开启mysql
3、mysql -uroot -p
在这个目录下找密码/root/.mysql_secret
cd /root
ls -la
cat .mysql_secret 复制密码【复制粘贴即可】

5、修改密码

set password=password('admin');

6、其他问题

其他问题:

/etc/init.d/mysql stop

/etc/init.d/mysql start 开启mysql
查看一下这个目录cd /etc/rc.d/init.d/
查看mysql启动状态/etc/rc.d/init.d/mysql status

 

第二部分:安装apache

1、上传对应的文件

 tar zxvf httpd-2.2.27.tar.gz 

2、  cd httpd-2.2.27
3、  ./configure --prefix=/usr/local/apache2 --enable-dav --enable-modules=so
4、 make
5、  make install

-----------------------------------

make[1]: Leaving directory `/usr/local/httpd-2.2.27' 代表OK

6、启动apache

/usr/local/apache2/bin/apachectl start

出现错误:

httpd: apr_sockaddr_info_get() failed for VM_74_204_centos

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

-------------------------------

解决方案:

 在Apache的安装目录下的hhtpd。conf文件修改如下【  cd apache2/conf  ls一下】

   (1) ServerName localhost:80            

 

第三部分:安装php

安装前要准备安装libxml2, 上传百度云这个文件到usr/local

1 tar zxvf libxml2-2.6.32.tar.gz

2 cd libxml2-2.6.32
3 ./configure --prefix=/usr/local/libxml2
4 make
5 make install

安装Php

1、tar zxvf php-5.3.28.tar.gz 

 2、 cd php-5.3.28
 3、 ./configure --prefix=/usr/local/php --with-mysqli=/usr/bin/mysql_config --with-apxs2=/usr/local/apache2/bin/apxs --with-libxml-dir=/usr/local/libxml2

+--------------------------------------------------------------------+

| License:                                                           |
| This software is subject to the PHP License, available in this     |
| distribution in the file LICENSE.  By continuing this installation |
| process, you are bound by the terms of this license agreement.     |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point.                            |
+--------------------------------------------------------------------+

Thank you for using PHP.

出现这个,成功安装php

------------------------

继续:

4、make 
5、make install

 

----------------------

输入IP地址

 出现itworks 就代表成功了【其实Apache第二步开启了,就可以测试是否成功了】

这一篇安装过程讲到这

下一篇文章为他们的配置问题。

Apache支持php,php加载mysql的文章

 

转载于:https://www.cnblogs.com/bluewelkin/p/4110759.html

你可能感兴趣的文章
整合spring cloud云架构 - SSO单点登录之OAuth2.0登录认证(1)
查看>>
windows的服务中的登录身份本地系统账户、本地服务账户和网络服务账户修改
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
redis 安装
查看>>
SQL some any all
查看>>
电子书下载:Programming Windows Identity Foundation
查看>>
有理想的程序员必须知道的15件事
查看>>
用于测试的字符串
查看>>
财付通和支付宝资料收集
查看>>
理解 IEnumerable 与 IEnumerator
查看>>
NHibernate 2.0 Beta 1 Released和一些工具
查看>>
【每天一个Linux命令】12. Linux中which命令的用法
查看>>
软件接口数据一致性机制
查看>>
微服务架构介绍和RPC框架对比
查看>>
Debian下使用OpenLDAP 管理端
查看>>
泛型排序器TComparer
查看>>
9个offer,12家公司,35场面试,从微软到谷歌,应届计算机毕业生的2012求职之路...
查看>>
创建符合标准的、有语意的HTML页面——ASP.NET 2.0 CSS Friendly Control Adapters 1.0发布...
查看>>
Adobe驳斥Flash过度耗电论 称HTML5更耗电
查看>>
No!No!No! It's not fashion!
查看>>