ivaneeo's blog -凯发k8网页登录

自由的力量,自由的生活。

  凯发k8网页登录-凯发天生赢家一触即发官网 :: 凯发k8网页登录首页 ::  ::  ::
  669 posts :: 0 stories :: 64 comments :: 0 trackbacks

2015年7月3日

curl -s https://packagecloud.io/install/repositories/rabbitmq/rabbitmq-server/script.rpm.sh | sudo bash

rabbitmq.config 

[{rabbit, [{cluster_partition_handling, autoheal},{loopback_users, []}]}].

posted @ ivaneeo 阅读(1946) | |  

#!/bin/sh

#

# startup script for ovirt-agent

#

# chkconfig: 2345 85 20

# description: ovirt-agent

# processname: ovirt-agent

# pidfile: /var/run/tomcat.pid # config:# source function library.

. /etc/rc.d/init.d/functions

# source networking configuration.

. /etc/sysconfig/network

# check that networking is up.

export ovirt_agent_home=/opt/ovirt-agent

[ -f $ovirt_agent_home/bin/startserver.sh ] ||?exit 0 [ -f $ovirt_agent_home/bin/stopserver.sh ] ||?exit 0

# see how we were called.

case "$1" in

start)

# start daemon.

        echo ?"starting ovirt-agent: "

        $ovirt_agent_home/bin/startserver.sh $ovirt_agent_home/conf/ovirt-agent.xml

        touch /var/lock/subsys/ovirt-agent

;;

stop)

# stop daemons.

        echo ?"shutting down ovirt-agent: "

        $ovirt_agent_home/bin/stopserver.sh

        rm -f /var/lock/subsys/ovirt-agent

;;

restart)

        $0 stop

        $0 start

;;

status)

status ovirt-agent

;;

*)

echo "usage: $0 {start|stop|restart|status}"

exit 1

esac

exit 0

posted @ ivaneeo 阅读(1875) | |  

2015年6月13日

docker run -d --name="srdesktop1" -p 80:80 -p 8888:8888 -p 8000:8000 -p 8009:8009 -p 8081:8081 -p 3306:3306 -p 19:22 -v /opt/html:/var/www -v /opt/ssdb-master:/opt/ssdb-master -v /opt/apache-tomcat-7.0.53:/opt/apache-tomcat-7.0.53 -v /opt/mule-standalone-3.5.0:/opt/mule-standalone-3.5.0 -v /opt/mysql/data:/var/lib/mysql --privileged=true srdesktop/ubuntu /bin/bash  -exec 'echo -e "192.168.1.93 ovirt-manage\n192.168.1.243 localhost" >> /etc/hosts && service mysql start  && /etc/init.d/guaca start && rm /opt/ssdb-master/var/ssdb.pid && /opt/ssdb-master/ssdb-server  -d /opt/ssdb-master/ssdb.conf && export java_home=/opt/jdk1.7.0_51 && export path=$java_home/bin:$path && /opt/apache-tomcat-7.0.53/bin/startup.sh && service apache2 start && /opt/mule-standalone-3.5.0/bin/mule'


pptpsetup --create myvpn --server --username vpn --password mincloud --encrypt --start


docker run -d --name="rabbitmq_master" -p 200:22 -p 25672:25672 -p 15672:15672 -p 5672:5672 -p 4369:4369 -p 10051:10050 rabbitmq/ubuntu /bin/bash -exec 'echo -e "172.20.20.10 rabbitmq-master\n127.0.0.1 localhost" > /etc/hosts && /etc/init.d/rabbitmq-server start && /usr/sbin/sshd -d'


# generated by ovirt-engine installer
#filtering rules
*filter
:input accept [0:0]
:forward accept [0:0]
:output accept [0:0]
-a input -i lo -j accept
-a input -p icmp -m icmp --icmp-type any -j accept
-a input -m state --state related,established -j accept
#drop all rule
commit
posted @ ivaneeo 阅读(1098) | |  

2015年5月2日

http://www.cocoachina.com/ios/20150417/11595.html
posted @ ivaneeo 阅读(937) | |  

2015年4月29日

https://www.igreenjsq.info/user-xianlu.html
posted @ ivaneeo 阅读(1304) | |  

2015年4月25日

http://www.csdn.net/article/2014-01-02/2817984-13-tools-let-hadoop-fly
好用的数据工具
http://blog.itpub.net/7816530/viewspace-1119924/
posted @ ivaneeo 阅读(918) | |  

netsh interface ipv4 show subinterfaces

netsh interface ipv4 set subinterface "本地连接" mtu=1480 store=persistent
posted @ ivaneeo 阅读(814) | |  

2015年4月21日

http://www.ovirt.org/java-sdk
posted @ ivaneeo 阅读(818) | |  

2015年4月15日

http://m.blog.csdn.net/blog/ebay/43529401
posted @ ivaneeo 阅读(889) | |  

2015年4月6日

so now you have:

  • the elapsed wall clock time (this period's time, minus last period's time) call this x
  • the elapsed process cpu time (this period's time, minus last period's time) call this y
  • the number of cpus. call this c

the percent utilization will be y / (x x c) * 100

import java.lang.management.*;
import java.util.concurrent.*;

osx = managementfactory.getoperatingsystemmxbean();
cores = osx.getavailableprocessors(); // factorial to keep the process busy so we can see some actual activity
factorial = { n -> int fact = 1; int i = 1; while(i <= n) { i ; fact *= i; } return fact; }
long elapsedtime = -1, starttime = -1; long elapsedcpu = -1, startcpu = -1;;
for(i in 0..20) { starttime = system.nanotime(); startcpu = osx.getprocesscputime(); countdownlatch latch = new countdownlatch(cores); for(x in 1..cores) { thread.startdaemon() { factorial(1000000); latch.countdown(); } } latch.await(); elapsedtime = system.nanotime()-starttime; elapsedcpu = osx.getprocesscputime()-startcpu; percusage = (elapsedcpu / (elapsedtime* cores)) *100; println "percent usage:$percusage %"; }
posted @ ivaneeo 阅读(1360) | |  

网站地图