CentOS下搭建LAMP环境、禅道搭建

LAMP:简单的说,就是Apache 、MySQL和 PHP这几个软件安装在linux操作系统上,组建成了一个网站运行环境。
Apache :一个常用的web服务器运行软件
MYSQL:小型、开源的数据库软件
PHP:一种开源的脚本语言

一、在VMware下安装CentOS(百度很多。。)

二、安装vmtools

找到 VMwareTools-5.5.1-19175.tar.gz
[root@sunshine ~]# cp VMwareTools-5.5.1-19175.tar.gz /tmp
[root@sunshine ~]# cd /tmp
[root@sunshine ~]# tar zxpf VMwareTools-5.5.1-19175.tar.gz
[root@sunshine ~]# cd vmware-tools-distrib
[root@sunshine vmware-tools-distrib]# ./vmware-install.pl
一路回车,就ok了

三、安装Apache

  • 1、在终端下,执行:yum-y install httpd* ,等一会就安装好了
  • 2、开启apache服务
          # systemctl start httpd.service
  • 3、设置apache服务开机启动
         # systemctl enable httpd.service
  • 4、

你可能感兴趣的:(Linux,centos的LAMP环境,禅道搭建)