摘要:
本文基于 Ubuntu 10.04 LTS + Apache 2.2.14 注: 不同的 Linux 发型版本配置 Apache 有所不同,这篇文章还介绍了 Redhat Enterprise Linux 和 Windows 下的相关配置:http://www.neoease.com/apache-virtual-host/ 1. ls /etc/apache2/sites-available/ 目录,下面有 default 和 default-ssl 两个文件,default 是 http 虚拟主机服务的配置文件, default-ssl 是配置 https 服务使用的。复制一... 阅读全文
摘要:
操作环境:Ubuntu 10.04 LTS 安装前提条件,已经安装 apache 服务器或者同类服务器、openssh-service,并且已经熟悉使用 Git 客户端 ----- 安装 Git ----------------------------------------------------------------------------------------------------------------------------------------------------------------sudo apt-get install git-core -----... 阅读全文
摘要:
----- 确定测试环境和软件版本 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ Linux : centOS-6.2 Nginx : nginx-1.2.0 MySQL : mysql-5.5.3 PHP : php-5.3.8 Redis : Re... 阅读全文
摘要:
Git使用过程中,莫名其妙地出现了以下错误,导致pushgit仓库失败,ssh连接失败。"warning: LF will be replaced by CRLF"解决办法:gitbash键入一下代码git config core.autocrlf false 阅读全文
摘要:
#!/bin/sh## redis - this script starts and stops the redis-server daemon## chkconfig: - 85 15 # description: Redis is a persistent key-value database# processname: redis-server# config: /etc/redis/redis.conf# config: /etc/sysconfig/redis# pidfile: /var/run/redis.pid# Source function... 阅读全文
摘要:
2012-04-27 14:59 | Nginx host 配置文件server{ listen 80; server_name summerflower.me; index index.html index.htm index.php; root /htdocs/www; if ( -f $request_filename/index.html ){ rewrite (.*) $1/index.html break; } if ( -f $request_filename/index.php ){ rewrite (.... 阅读全文
摘要:
Python 3.2# -*- encoding:UTF-8 -*-import urllib.request url = r'https://www.google.com.hk/intl/zh-CN/images/logo_cn.png'path = r'c:/img/logo_cn.png'data = urllib.request.urlretrieve( url, path )'module' object has no attribute 'urlretrieve'? 在 python3中,urllib 被拆分成三个 m 阅读全文
摘要:
php 编译安装参数--prefix=/usr/local/PHP php 安装目录--with-apxs2=/usr/local/apache/bin/apxs apache 安装目录--with-config-file-path=/usr/local/PHP/etc 指定 php.ini 位置--with-MySQL=/usr/local/mysql mysql 安装目录,对mysql的支持--with-MySQLi=/usr/local/mysql/bin/mysql_config mysqli 文件目录,优化支持--enable-safe-mode 打开安全模式--enable-ftp 阅读全文
摘要:
更新 python 2.6 到 python 3.2.3Linux : centOS-6.2安装相关程序yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel 获取源码包编译安装wget http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.bz2tar -xjf Python-3.2.3.tar.bz2cd Python-3.2.3 ./configure --prefix=/opt/python3m... 阅读全文