天天看点

腾讯云服务器下centos7.6版本安装LNMP搭建

时间:2020年8月20日20:08:38

腾讯云服务器下centos7.6版本安装LNMP搭建
腾讯云服务器下centos7.6版本安装LNMP搭建
腾讯云服务器下centos7.6版本安装LNMP搭建
腾讯云服务器下centos7.6版本安装LNMP搭建

安装依赖库和编译工具

为了后续安装能正常进行,我们先来安装一些相关依赖库和编译工具

安装编译工具

腾讯云服务器下centos7.6版本安装LNMP搭建
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel

yum install gcc perl-ExtUtils-MakeMaker

cd /usr/local/src

wget https://www.kernel.org/pub/software/scm/git/git-2.10.0.tar.gz
           
腾讯云服务器下centos7.6版本安装LNMP搭建

配置环境变量

  • 将 git 目录加入 PATH

    将原来的 PATH 指向目录修改为现在的目录

echo 'export PATH=$PATH:/usr/local/git/bin' >> /etc/bashrc
           
腾讯云服务器下centos7.6版本安装LNMP搭建
腾讯云服务器下centos7.6版本安装LNMP搭建
腾讯云服务器下centos7.6版本安装LNMP搭建
cd /data/repositories/ && git init --bare test.git
           
腾讯云服务器下centos7.6版本安装LNMP搭建

gituser:x:500:500::/home/gituser:/usr/local/git/bin/git-shell

腾讯云服务器下centos7.6版本安装LNMP搭建

cd ~ && git clone [email protected]:/data/repositories/test.git