码迷,mamicode.com
首页 >  
搜索关键字:conf    ( 25562个结果
nginx去掉url中的index.php
使用情境:我想输入www.abc.com/a/1后,跳转到www.abc.com/index.php/a/1 配置Nginx.conf在你的虚拟主机下添加:  location / {      if (!-e $request_filename){           rewrite ^/(.*)$ /index.php/$1 last;      } } 如果你的项目...
分类:Web程序   时间:2014-07-13 18:52:33    阅读次数:258
hadoop 出现FATAL conf.Configuration: error parsing conf file,异常
FATAL conf.Configuration: error parsing conf file: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence. 14/07/12 23:51:40 ERROR namenode....
分类:其他好文   时间:2014-07-13 18:40:22    阅读次数:291
Redis作为多个Windows服务运行配置方法
1.首先下载微软官方推荐的版本redis-2.8.122.开始配置,首先复制两份redis.conf并且重命名为redis6379.conf redis6380.conf 里面的配置节点相应的更改为port 6379port 63803.开始安装(最笨的方法 cmd命令行)D:\redis-2.8....
分类:Windows程序   时间:2014-07-13 17:57:18    阅读次数:491
更改nginx网站根目录
默认网站根目录为/usr/local/nginx/html,要将它改成/homw/www vi /usr/local/nginx/conf/nginx.conf 将其中的         location / {             root   html;             index  index.php index.html index.htm;...
分类:Web程序   时间:2014-07-13 17:06:03    阅读次数:219
C、Shell、Perl基于Tomcat开发CGI程序环境配置
基于Tomcat7.0版本配置CGI开发环境,步聚如下: 以我的Tomcat7安装目录为例:TOMCA_HOME = /Users/yangxin/Documents/devToos/java/apache-tomcat-7.0.39 1、打开TOMCA_HOME/conf/web.xml 将CGI的Serlvet配置与URL映射注释打开 cgi org....
分类:其他好文   时间:2014-07-13 16:42:37    阅读次数:202
php-fpm.conf配置说明(重点要修改和优化的地方)
All relative paths in this config are relative to php's install prefix Pid file /usr/local/php/logs/php-fpm.pid Error log file /usr/local/php/logs/php-fpm.log Log level notice Whe...
分类:Web程序   时间:2014-07-13 16:26:05    阅读次数:248
please specify user and group other than root, pool 'default'
[root@luozhonghua etc]# /usr/local/php/sbin/php-fpm start Starting php_fpm Jul 12 09:41:02.077951 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool 'default' ...
分类:其他好文   时间:2014-07-13 16:20:24    阅读次数:225
微型php框架 include/conf.class.php
<?phpdefined(‘ACC‘)||exit(‘AccessDenied‘);//配置文件读取类classconf{protectedstatic$ins=null;protected$cfg=array(‘db‘=>‘java0620‘);publicstaticfunctiongetIns(){if(self::$ins===null){self::$ins=newself();}returnself::$ins;}finalprotectedfunction__const..
分类:Web程序   时间:2014-07-13 14:33:03    阅读次数:216
zabbix之window客户端安装
配置zabbix_agentd.conf文件,需要修改的地方分别为:Server,Hostname,LogFile,其中Server是zabbix服务器的IP地址,Hostname是本地的主机名,LogFile为zabbix_agentd.log文件的位置,用于记录事件,这里的zabbix_agentd.log填写你新建log文件的位置。新建一个zabbix_agent.l..
分类:Windows程序   时间:2014-07-13 14:11:58    阅读次数:269
configure: error: XML configuration could not be found
执行: ./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm 之后出现   Running FastCGI Process Manager checks checking for php-fpm config file path... $prefix/etc/php-fpm.conf checking for ...
分类:其他好文   时间:2014-07-13 13:50:43    阅读次数:205
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!