2016年12月17日

linux应用之Lamp(apache+mysql+php)的源码安装(centos)

摘要: Linux+Apache+Mysql+Php源码安装 一.安装环境: 系统:Centos6.5x64 Apache: httpd-2.4.10.tar.gz Mysql: mysql-5.6.20-linux-glibc2.5-x86_64.tar.gz Php: php-5.6.0.tar.gz 阅读全文

posted @ 2016-12-17 13:37 madtank 阅读(383) 评论(0) 推荐(0) 编辑

linux应用之apache的源码安装(centos)

摘要: 第一部分:前期准备 需要下载的东西 下载 Apache 源码包 下载地址: http://httpd.apache.org/download.cgi 我下载的 httpd-2.4.20.tar.gz 下载 Apr 下载地址 :http://archive.apache.org/dist/apr/ap 阅读全文

posted @ 2016-12-17 13:21 madtank 阅读(367) 评论(0) 推荐(0) 编辑

2016年12月16日

linux应用之yum命令

摘要: yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE中的Shell前端软件包管理器。基於RPM包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无须繁琐地一次次下载、安装。yu 阅读全文

posted @ 2016-12-16 19:21 madtank 阅读(276) 评论(0) 推荐(0) 编辑

2016年12月12日

linux应用之bugfree的安装及配置

摘要: Bugfree3.0.4 Linux环境安装指南 bugfree系统安装的前提是,配置LAMP环境(apache+mysql+php),下面以centos6.3系统为例介绍bugfree3.0.4的安装步骤。 一、 安装apache服务器 #service httpd status #yum ins 阅读全文

posted @ 2016-12-12 11:09 madtank 阅读(4490) 评论(0) 推荐(0) 编辑

2016年12月11日

linux应用之test命令详细解析

摘要: test命令用法。 功能:检查文件和比较值 1)判断表达式 if test (表达式为真) if test !表达式为假 test 表达式1 –a 表达式2 两个表达式都为真 test 表达式1 –o 表达式2 两个表达式有一个为真 2)判断字符串 test –n 字符串 字符串的长度非零 test 阅读全文

posted @ 2016-12-11 22:15 madtank 阅读(55130) 评论(1) 推荐(3) 编辑

2016年11月24日

linux应用之开机自启动方法总结

摘要: 1、把启动程序的命令添加到/etc/rc.d/rc.local文件中 CentOS系统下管理开机自启动的配置文件是/etc/rc.d/rc.local,所以只需编辑这个文件,在里面加入相应的启动命令即可。 比如我们设置自启动lampp服务方法如下: vi /etc/rc.d/rc.local 按下键 阅读全文

posted @ 2016-11-24 20:29 madtank 阅读(1172) 评论(0) 推荐(0) 编辑

linux应用之nginx的源码安装及配置(centos)

摘要: 1、准备工作选首先安装这几个软件:GCC,PCRE(Perl Compatible Regular Expression),zlib,OpenSSL。Nginx是C写的,需要用GCC编译;Nginx的Rewrite和HTTP模块会用到PCRE;Nginx中的Gzip用到zlib;用命令“# gcc” 阅读全文

posted @ 2016-11-24 19:55 madtank 阅读(300) 评论(0) 推荐(0) 编辑

linux应用之tomcat安装(centos)

摘要: 安装方式:源码安装 软件:apache-tomcat-7.0.29.tar.gz下载地址:http://tomcat.apache.org/download-70.cgi 安装前提 系统必须已经安装配置了JDK6+,如果不会安装请参考linux应用之jdk安装。 安装tomcat 将apache-t 阅读全文

posted @ 2016-11-24 11:20 madtank 阅读(269) 评论(0) 推荐(0) 编辑

linux应用之jdk环境的安装(centos)

摘要: 一、yum安装 1.执行:yum search jdk 已加载插件:fastestmirror, securityLoading mirror speeds from cached hostfile * base: mirror.bit.edu.cn * extras: mirror.bit.edu 阅读全文

posted @ 2016-11-24 10:26 madtank 阅读(691) 评论(0) 推荐(0) 编辑

linux应用之gcc环境的安装

摘要: 我们知道,用yum install gcc可以安装gcc编译环境,关于 GCC 在 CentOS 下通过 yum 安装默认版本号,CentOS 5 是 4.1.2;CentOS 6 是 4.4.7;CentOS 7 是 4.8.3。 很多时候在编译安装软件都需要高版本的 GCC,否则就会报错。那么如 阅读全文

posted @ 2016-11-24 10:23 madtank 阅读(84817) 评论(0) 推荐(1) 编辑

导航