摘要:
一、需要下载的软件包gd库相关包(http://www.libpng.org/pub/png/libpng.html) gd-2.0.35.tar.gz jpegsrc.v7.tar.gz libpng-1.2.39.tar.gz zlib-1.2.3.tar.gz freetype-2.3.9.tar.gz二、安装php的GD库1.安装zlib>tar -zxvf zlib-1.2.3.tar.gz>cd zlib-1.2.3>./configure --prefix=/usr/local/zlib>make>make install2.安装libpng> 阅读全文
摘要:
不知是我的系统问题还是CentOS本来就存在这个问题,通过yum install gd gd-devel 安装的GD库不支持freetype, 即使在编译PHP时添加–with-freetype-dir=/usr/lib也没有用。最后只有将通过yum安装的gd清除(这一步很重要),重新编译gd:./configure --prefix=/usr/local/gd\--with-jpeg=/usr/lib\--with-png=/usr/lib\--with-xpm=/usr/lib\--with-freetype=/usr/lib\--with-fontconfig=/usr/lib\重新编译 阅读全文
摘要:
linux下为php添加GD库的步骤如下: 一、下载 gd-2.0.33.tar.gz http://www.boutell.com/gd/ jpegsrc.v6b.tar.gz http://www.ijg.org/ libpng-1.2.7.tar.tar http://sourceforge.net/projects/libpng/ zlib-1.2.2.tar.gz http://sourceforge.net/projects/zlib/ freetype-2.1.9.tar.gz http://sourceforge.net/projects/freetype/ php-4.3.9 阅读全文
摘要:
1. 安装 CentOS 6.0 64bit (Basic Server)2. YUM Packages.* Tools yum install telnet gcc gcc-c++ yum install libtool*Nginx yum install pcre-devel zlib-devel * PHP: yum install gd-devel libjpeg-devel libpng-devel freetype-devel libxml2-devel curl-devel 3. MySQL5.5.14参照博客另外一篇文章 http://koda.iteye.com/blog/. 阅读全文
摘要:
一、安装Tomcat和JDK1、上传apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local2、执行如下命令安装tomcat:#cd /usr/local #tar zxvf apache-tomcat-6.0.18.tar.gz解压完成后将apache-tomcat-6.0.18重命名为tomcat3、执行如下命令安装JDK:#./jdk-6u12-linux-i586.bin4、配置环境变量:编辑/etc下的profile文件,加上如下内容:JAVA_HOME="/usr/local/jdk1.6.0_12&qu 阅读全文
摘要:
当你使用cacti监控nginx性能时可能会出现 no (LWP::UserAgent not found) 的错误。经过我两台VPS环境对比发现的确原因是系统 perl 缺少了相关组件,但是解决办法却不是网络上搜出来的那些cpan> install LWP::UserAgent经过对比发现,缺少的是perl-libwww-perl这个软件包,解决方法就是直接yum安装进去就ok了。yum -y install perl-libwww-perl 阅读全文
摘要:
一、加载http_stub_status模块 [root@10.10.90.97 ~]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module [root@10.10.90.97 ~]# make && make install二、修改nginx配置文件在server中,添加如下代码:location /NginxStatus { stub_status on; access_log on; auth_basic "NginxStatus"; auth_basic_user_ 阅读全文
摘要:
关于这一内容,在google上一搜就大把.内容如下:nginx编译时允许http_stub_status_module然后在 nginx.conf 中 添加如下(粗体字部分) server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root /data/web_server/index; index index.html index.htm; } location /NginxStatus { stub_status on; a 阅读全文
摘要:
Synopsis This module provides the ability to get some status from nginx.This module is not compiled by default and must be specified using the--with-http_stub_status_moduleargument to configure when compiling Nginx.Example:location /nginx_status { # copied from http://blog.kovyrin.net/2006/04/29/m.. 阅读全文
摘要:
先在websphere和 weblogic里配置一个数据源,jndi名叫offsetJndi spring里配置数据源 这种配置方法 websphere weblogic通用 <beanid="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <propertyname="jndiName"> <value>offsetJndi</value> </property> </bean&g 阅读全文