1、在/etc/init.d/目录下编写脚本,名为nginx
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: -
85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
...
分类:
其他好文 时间:
2014-07-22 22:39:13
阅读次数:
321
###这里写markdown文档```phpdefine('IN_ECS', true);require(dirname(__FILE__) . '/includes/init.php');require(ROOT_PATH . 'includes/lib_license.php');require...
分类:
其他好文 时间:
2014-07-22 22:37:14
阅读次数:
214
Failed to load libGL.soerror libGL.so: cannot open shared object file: No such file or directory启动emulator的时候有如上错误,解决方案:64-bit Ubuntu 12.04.$ sudo apt...
分类:
其他好文 时间:
2014-07-22 22:36:35
阅读次数:
223
# -*- coding: cp936 -*-from PyQt4 import QtGui,QtCoreimport sysclass MianWindow(QtGui.QMainWindow): def __init__(self,parent=None): QtGui.QM...
分类:
其他好文 时间:
2014-07-22 22:36:13
阅读次数:
219
#!/us/bin/envpythonfromPyQt4importQtCore,QtGuiclassAMovableLabel(QtGui.QLabel):def__init__(self,parent=None):super(AMovableLabel,self).__init__(parent...
分类:
其他好文 时间:
2014-07-22 22:35:35
阅读次数:
184
tomcat启动报错:Cannotassignrequestedaddress:jvm_bind经查端口并未被占用,发现最后原因是hosts文件改过,加了一行<ip>localhost,导致启动时绑定不存在的ip失败了,把这行去掉就可以了。
分类:
其他好文 时间:
2014-07-22 18:23:52
阅读次数:
225
今天打开开发网站突然不能使用,发现时Mysql数据库down掉了,就去重启:
mysql.server restart
一直会报错:“Manager of pid-file quit without updating file”。
然后就去找原因,网上说有以下三个方面的问题:
1、硬盘不够用了,无法写入pid文件
2、进程卡死了,找到mysql进程kill掉,然后重启
3、目录权限...
分类:
数据库 时间:
2014-07-22 17:53:52
阅读次数:
274
iframe外面的js不能调用里面的dom,只能通过调用里面的js方法来调用。
iframe外面的js调用里面的js方法:通过iframe的name.里面的js方法名调用。
初始化外面的jq:
$(function(){
outiframe.init();
);
outiframe = {
init : function(){
//方法内容,如调用i...
分类:
其他好文 时间:
2014-07-22 17:47:51
阅读次数:
184
Do you know how to init list in other way except for new object? The following will give you serveral tips. If having other great idea, you are welcome to share.
import java.util.ArrayList;
import j...
分类:
编程语言 时间:
2014-07-22 14:37:43
阅读次数:
211
neutron-server是neutron的核心组件之一,负责直接接收外部请求,然后调用后端相应plugin进行处理。
其核心启动过程代码主要在neutron.server包中。
__init__.py文件中包括一个main()函数,是WSGI服务器开始的模块,并且通过调用serve_wsgi来创建一个NeutronApiService的实例。然后通过eventlet的greenpool...
分类:
其他好文 时间:
2014-07-22 14:15:44
阅读次数:
247