1.先装编译器命令为yuminstallgccgcc-c++2.yuminstallexpat-devel(XML解析)3.上网找aprapr-utilpcre源码包下载wgethttp://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-1.7.0.tar.gz(apr)wgethttp://mirrors.tuna.tsinghua.edu.cn/ap
分类:
其他好文 时间:
2019-04-18 00:54:27
阅读次数:
155
在linux中安装软件有大类,一类是软件包安装,一类是源代码安装。软件包安装就是指将编译好的二进制封装成RPM包,可以直接使用RPM工具和yum工具安装。源代码安装是指没有编译成二进制,需要通过手动编译的。源码安装过程:一:于centos中没有安装gcc、gcc-c++的虚拟机,需要先输入yuminstallgccgcc-c++。在浏览器中找到apr,apr-util,http,prce的下载源,
分类:
Web程序 时间:
2019-04-17 20:56:24
阅读次数:
234
在Linux中软件安装有两大类,一类是软件包安装,一类是源代码安装。软件包安装就是指将编译好的二进制封装成rpm包,可以直接使用rpm工具和yum工具安装。源代码安装是指没有编译成二进制,需要通过手动编译的。使用源代码安装的原因有两个,一个就是想使用最新版的软件,另一类就是想自定义其功能的。在httpd的源码安装过程中需要用到:APR、APR-UTIL、PCRE、httpd源码安装过程:1、展开压
分类:
Web程序 时间:
2019-04-17 19:41:28
阅读次数:
233
[TOC] 一、安装单实例 1、升级openssl "openssl升级" 2、替换软件源 3、root 用户ssh远程登录 4、mysql需要安装的包 5、navicate 连接虚拟机mysql 6、安装mysql utilities ==最好源码安装== 二、安装双实例 1、目录结构 2、脚本语 ...
分类:
数据库 时间:
2019-04-16 17:48:32
阅读次数:
274
问题:configure: error: "Can't find boost spirit headers" 解决: 下载boost_1_70_0, 链接地址:https://www.boost.org/users/history/version_1_70_0.html 编译: sudo tar - ...
分类:
其他好文 时间:
2019-04-15 20:20:42
阅读次数:
199
一.源码安装ncurses库 1.1 获取源码 wget https://invisible-island.net/datafiles/release/ncurses.tar.gz tar xvf ncurses.tar.gz ~/ cd ~/ncurses-6.1 1.2 生成配置 ./autog ...
分类:
其他好文 时间:
2019-04-10 13:53:54
阅读次数:
135
一、Nginx安装(基于ubuntu17.10 版本) 首先我们是基于源码安装,主要有如下步骤 1、安装 依赖包 2 、安装过程 3、安装过程踩的坑 ...
分类:
其他好文 时间:
2019-04-09 00:32:04
阅读次数:
146
Linux平台下源码安装mysql多实例数据库[root@linux-node1 ~]# netstat -tlunp | grep 330tcp6 0 0 :::3306 :::* LISTEN 6191/mysqld[root@linux-node1 ~]# ss -tlunp | grep 3 ...
分类:
数据库 时间:
2019-04-07 22:08:21
阅读次数:
195
1.编译安装python3 1.下载python3的源码 cd /opt yum install wget -y 安装wget命令 wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tgz 1.安装python3之前,环境依赖解决 通 ...
分类:
系统相关 时间:
2019-04-02 18:33:49
阅读次数:
184