- 浏览: 14186 次
- 性别:
- 来自: 北京
最新评论
文章列表
memcache所有数据过期命令
- 博客分类:
- memcache
telnet到memcache后执行flush_all,memcache的所有数据都过期。
我们一般使用“date -s”命令来修改系统时间。比如将系统时间设定成2005年7月26日的命令如下。 #date -s 07/26/2005 将系统时间设定成下午11点12分0秒的命令如下。 #date -s 11:12:00
同时修改日期和时间:
#date -s ‘11:12:00 07/26/2005’
linux修改系统时间详解
两步
(1)date 042612492005
(2)hwclock -w
第一步的意思是设置时间,设置完了可以用date命令查看对不对...注意是月日时分年
第二步的意思是写入主板的rtc芯片..
= ...
等待<span id="daojishi">10</span>秒后你将跳转到http://www.baidu.com
<script type="text/javascript">
function daoshu(){
var djs = document.getElementById("daojishi");
if(djs.innerHTML == 0){
window.location.href='http://www.baidu.com ...
修改/etc/rc.local
下面是rc.local的一个例子
touch /var/lock/subsys/local
modprobe bonding
nohup /home/rsync.sh &
rsync --daemon
/home/cmcc/nrpe/bin/nrpe -c /home/cmcc/nrpe/etc/nrpe.cfg -d
su - picuser -c "/opt/picuser/nginx/sbin/nginx"
su - ssuser -c "/opt/ss/tomcat-7.0.29/bin/sta ...
测试机器的硬件信息: 查看CPU信息(型号) # cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 8 Intel(R) Xeon(R) CPU E5410 @ 2.33GHz (看到有8个逻辑CPU, 也知道了CPU型号) # cat /proc/cpuinfo | grep physical | uniq -c 4 physical id : 0
rpm -qa 查询所有已安装的软件
rpm -qa|grep perl 查安装的perl相关的
证书工具类:
import java.io.FileInputStream;
import java.io.StringWriter;
import java.io.Writer;
import java.security.Key;
import java.security.KeyPair;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.Certificate;
import ja ...
Myeclipse插件配置生成
- 博客分类:
- java
1、下载最新的SVN包:http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=22402、在你的磁盘上任意位置创建文件夹:“myplugins/svn”。名字可以任取,为了方便插件管理,建议名称为“myplugins”。3、将解压的svn里的两个文件夹拷贝到“myplugins/svn”下。4、执行下面代码:
import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class PluginConfigCre ...
public class Test extends JFrame {
private static final long serialVersionUID = -37927920298166521L;
private JFrame frame;
public static void main(String[] args) {
new Test();
}
public Test() {
frame = new JFrame();
frame.setTitle("键盘监听");
frame.setLocation(300, 15 ...
生产者接口与实现:
public interface MessageProducer
{
void sendMessage(String queue, Object message) throws AmqpException;
}
/**
* 消息生产者
*/
public class MessageProducerImpl implements MessageProducer
{
private RabbitTemplate rabbitTemplate;
@Override
public void sendMessage(St ...
一、安装erlang
访问http://www.erlang.org
下载opt_src_R15B02.tar
tar -zxvf opt_src_R15B02.tar
进入opt_src_R15B02文件夹
./configure --prefix=/erlang
make & make install
注:编译需要wxWidgets、fop组件及ODBC
二、配置erlang
加入环境变量,vim /etc/profile
添加:
ERLANG=/erlang/bin
PATH=$PATH:$ERLANG
立即生效配置
source /etc/profil ...
log4j.properties配置
- 博客分类:
- java
log4j.properties 使用一.参数意义说明输出级别的种类ERROR、WARN、INFO、DEBUGERROR 为严重错误 主要是程序的错误WARN 为一般警告,比如session丢失INFO 为一般要显示的信息,比如登录登出DEBUG 为程序的调试信息配置日志信息输出目的地log4j.appender.appenderName = fully.qualified.name.of.appender.class1.org.apache.log4j.ConsoleAppender(控制台)2.org.apache.log4j.FileAppender(文件)3.org.apache.log ...
linux 遇到报错:
error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory那就表示系统不知道xxx.so 放在哪个目录下。
这个时候就要在/etc/ld.so.conf中加入xxx.so所在的目录。
一般而言,有很多so会在/usr/local/lib这个目录下,所以在/etc/ld.so.conf中加入/usr/local/lib这一行,可以解决此问题。将/etc/ld.so.conf存档后,还要执行「/sbin/ldconfig ...
1、日期格式化:
import java.util.Date;
/**
* 作者:阳光的味道
* 功能: String类常用方法之格式化字符串之日期格式化
* 日期:2010/11/09
* */
public class formatDemo1 {
public static void main(String[] args) {
Date date = new Date();
//输出两位数字表示的日期,不够位补零
System.out.println(String.format("%td",date));
...