- 浏览: 570964 次
- 性别:
- 来自: 上海
最新评论
-
yuanhsh:
popu_12 写道Can you please explai ...
Pocket Gems专题 -
popu_12:
Can you please explain neighbor ...
Pocket Gems专题 -
月影无痕:
网站所有者也是www吗? 你这样做很不安全?详细原因见分析:正 ...
Ubuntu 11.10 安装 PHP, PHP-FPM, eAccelerator
文章列表
sudo git config --global user.name "ubuntu"
sudo git config --global user.email ubuntu@domain.com
sudo git config --global core.excludesfile ~/.gitignore
cd /home
创建生产目录
sudo mkdir product
创建仓库目录
sudo mkdir repos
创建名为myapp的仓库
cd /home/repos
sudo mkdir myapp
cd myapp
...
转 http://www.187299.com/archives/category/nginx/page/4
http://www.zhiyuanjun.net/?p=9
于Nginx对高并发的优良性能,故配了个Nginx+php-fpm来跑在线代理程序,是按照张宴文章配的,刚配置好时运行正常,但运行一段时间 后,网站打开很慢,打开网站后,在输入框输入要访问的网站,也慢得不行。在网站打开慢时,在SSH终端上输入命令也慢,怀疑是机房网速问题,但在ssh上 输入
w3m www.example.com
这个打开也慢,基本可以排除机房的网速问题。
当打开网站慢时,把服务器重启后,就会快 ...
转自: http://blog.chinaunix.net/space.php?uid=1838361&do=blog&id=66480
一、编译安装PHP 5.2.5所需的支持库
1、wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.12.tar.gz
tar -xvzf libiconv-1.12.tar.gz
./configure --prefix=/usr/local
make
make install
ln -s /usr/local/lib/libiconv.so.2 ...
###### 前期工作 ######
sudo apt-get update #先更新下#
sudo apt-get install make bison flex gcc patch autoconf git zip
sudo apt-get install libpng-dev libjpeg-dev libxml2-dev libevent-dev libcurl4-openssl-dev libmcrypt-dev libmysqlclient-dev libming-dev libfreetype6-dev libtool
######安装Ming######
#上步成功的话,这一 ...
国外有人制作了压缩过后的Ubuntu AMI文件。大小只有1G。
分享下:
* ami-4a936a23 @ us-east-1
* ami-57ecbf12 @ us-west-1
* ami-82b187f6 @ eu-west-1
* ami-d0d5ac82 @ ap-southeast-1
* ami-0273d903 @ ap-northeast-1
通过点击以下链接安装:
https://console.aws.amazon.com/ec2/home?region=ap-northeast-1#launchAmi=ami-0273d903
将AMI ID替换其他ID即可。
...
在亚马逊的Tokyo Region使用了个AWS EC2。
安装了Ubuntu 11.10的AMI之后,按照惯例安装各种软件, apache2.2, Mysql5.1。
在安装号mysqld启动的时候,发现如下错误:
[ERROR] Fatal error: Can't change to run as user 'mysql' ; Please check that the user exists!
原因:
在/etc/mysql/my.cnf的配置文件中,
#
# * IMPORTANT
# If you make changes to these settings and ...
来自: http://shangpan.com/archives/442.html
SSH Server一般会根据设定的设计自动断开SSH连接,这就是为什么一定时间不操作SSH,SSH会自动断开的原因。按以下步骤可以延长自动断开的时间。以centos5.3为例:
编辑配置文件
nano /etc/ssh/sshd_config
添加两个参数
ClientAliveInterval 20
ClientAliveCountMax 300
按以上的配置的含义就是 SSH每20秒向客户端发送一次心跳 ,连续发送300次没有收到客户端道应答,则断开客户端。系统默认是ClientAliveInterval ...
注意MySQL 5.5版本和其他前版本有些不一样的参数
MySQL 5.5.13
参数说明:
[client]
character-set-server = utf8
port = 3306
socket = /data/mysql/3306/mysql.sock
[mysqld]
character-set-server = utf8
user = mysql
port = 3306
socket = /data/mysql/3306/mysql.sock
basedir = /usr/local/webserver/mysql
datadir = /data/my ...
Tomcat 报出如下错误:
java.sql.SQLException: null, message from server: "Host '*****' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'"
解决办法:
执行命令 mysqladmin flush-hosts
原因:
mysql中默认的max_connect_errors是10,由于连接出错,造成这个数值高于10,当在访问的时候就被锁住了, 并屏蔽主机的进一步连接请求。
可以将这个值改 ...
修改任何代码前,请创建一个新的branch
git checkout -b <branch_name>
执行完上述命令后会自动切换到<branch_name>分支,现在你就可以开始开发了。开发期间,你可能会多次执行
git add .
git commit -m ""
当你开发完毕,需要合并到master上时
git checkout master #先切换回master
git pull #这里不可能有任何冲突,因为master是不会本地修改的
git chec ...
1. Jquery插件--提示Tip
JQuery Tipsy - FaceBook的风格
jQuery clueTip plugin http://plugins.learningjquery.com/cluetip/demo/
2. Jquery插件--弹出框Box
ColorBox http://colorpowered.com/colorbox/core/example1/index.html
FancyBox http://fancybox.net/home
LightBox 感觉不如前面两个好
3. Jquery插件--自动完成Autocomplete
jQuery.au ...
// tipsy, facebook style tooltips for jquery
// version 1.0.0a
// (c) 2008-2010 jason frame [jason@onehackoranother.com]
// released under the MIT license
(function($) {
function Tipsy(element, options) {
this.$element = $(element);
this.options = options;
...
图片延迟加载的JS代码。将页面的img标签中的src写成src2即可使用。
例如:
<img alt="lazy image" title="lazy image" src2="http://www.abc.com/lazeimage.jpg">
JS源代码如下(需要用到jquery):
function getPosition(h) {
var a = navigator.userAgent.toLowerCase();
var b = (a.indexOf("opera" ...
Cursor movement
h - move left
j - move down
k - move up
l - move right
w - jump by start of words (punctuation considered words)
W - jump by words (spaces separate words)
e - jump to end of words (punctuation considered words)
E - jump to end of words (no punctuation)
b - jump backward by wo ...
Linux
索引
前后台任务调度
screnn管理远程会话不中断
pstree 树状形式显示进程
whereis
linux任务控制,调度程序在前后台运行
ctrl+z
将前台任务丢到后台
jobs
查看在后台运行的任务
[yuan@dev-test workspace]$ jobs
[1]- Stopped ...