在浙江大学开源镜像网站中选择Linux的发行版和版本,网站扰亩会自动生成我们所需版本的yum源信息,然后修改yum源即可。
2、配置网易和阿里的yum源(浙大的似乎更新缓慢,需要更新版本的软件安装选择缓液森商业公司的为好)
以root用户身份进入 /etc/yum.repos.d 目录
wget http://mirrors.aliyun.com/repo/Centos-7.repo
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
yum clean all (清除yum缓存)
yum makecache (重新生成yum缓存)
3、安装 epel源(在网易和阿里yum源下埋好,直接yum安装即可;另一种方式是rpm安装)
yum list | grep epel-release
yum install -y epel-release
yum repolist enabled (查看系统可用的yum源)
yum repolist all (查看系统所有的yum源)
安装Lamp环境。1. 安装apahce
yum install httpd
可能会腊锋用到的:
systemctl start httpd.service #启动apache
systemctl stop httpd.service #停止apache
systemctl restart httpd.service #重启apache
systemctl enable httpd.service #设置apache开机启动
2. 安装mysql。
由于yum源上没有mysql-server。所以必须去官网雀慧下载,这里 我们轮岁晌用wget命令,直接获取。
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
3. 安装php
yum install php
#安装PHP组件,使PHP支持mysql
yum install php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash
#重启对应服务
systemctl restart mysqld.service
systemctl restart httpd.service
以上 安装 apahce 、mysql 、php 安装完毕。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)