摘要: 1.检查是否安装OpenSSL 1.1 查看是否安装 openssl version 1.2 编译安装: https://www.cnblogs.com/rxbook/p/9367725.html 1.3 yum安装 yum install openssl yum install openssl-d 阅读全文
posted @ 2019-12-31 13:53 微刻时光 阅读(558) 评论(0) 推荐(0) 编辑
摘要: Git 的2中安装方法 1. yum命令安装: yum install -y git 2. 服务编译安装(推荐) 2.1 安装依赖包 yum install -y wget yum install -y gcc-c++ yum install -y zlib-devel perl-ExtUtils- 阅读全文
posted @ 2019-12-31 13:31 微刻时光 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1.Nginx编译安装 tar -zxvf nginx-1.12.2.tar.gz cd nginx-1.12.2 ./configure --user=www --group=www --prefix=/usr/local/nginx/ --with-http_v2_module --with-h 阅读全文
posted @ 2019-12-31 13:17 微刻时光 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1.安装composer cd /usr/local/src curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer 2.Composer 使用 chmod -R 777 /u 阅读全文
posted @ 2019-12-31 13:03 微刻时光 阅读(2144) 评论(0) 推荐(0) 编辑
摘要: PHP7.2 安装 1.创建运行用户 groupadd www useradd -g www www 2.建立软连接 cp -frp /usr/lib64/libldap* /usr/lib/ ln -s /usr/local/lib/libiconv.so.2 /usr/lib64/ 3.编译安装 阅读全文
posted @ 2019-12-31 13:01 微刻时光 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 1.安装apr tar -zxvf apr-1.6.3.tar.gz cd apr-1.6.3 ./configure --prefix=/usr/local/apr make make install 注意: cannot remove 'libtoolT': No such file or di 阅读全文
posted @ 2019-12-31 12:52 微刻时光 阅读(473) 评论(0) 推荐(0) 编辑
摘要: MySQL安装 1.安装cmake(作为mysql的安装工具) tar -zxvf cmake-3.8.0.tar.gz cd cmake-3.8.0 ./bootstrap gmake gmake install 2.安装boost_1_59_0 tar -zxvf boost_1_59_0.ta 阅读全文
posted @ 2019-12-31 12:41 微刻时光 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 准备工作 防火墙 systemctl status firewalld 看到active(running)就意味着防火墙打开了 systemctl stop firewalld 看到inactive(dead)就意味着防火墙关闭了 systemctl start firewalld 打开防火墙 sy 阅读全文
posted @ 2019-12-31 12:34 微刻时光 阅读(470) 评论(0) 推荐(0) 编辑