forcemax's

increase vmalloc

작업2008. 2. 27. 14:51
/boot/grub/menu.lst 에 다음과 같이 수정

title      Debian GNU/Linux, kernel 2.6.18-5-686
root       hd(0,0)
uppermem   786432
kernel     /boot/vmlinuz-2.6.18-5-686 root=/dev/hda1 ro vmalloc=512M
initrd     /boot/initrd.img-2.6.18-5-686
savedefault

부팅후 적용된 vmalloc을 /proc/meminfo의 가장 끝 항목을 보고 알수 있다.

VmallocTotal:    507896 kB
VmallocUsed:       4812 kB
VmallocChunk:    502980 kB

openafs에서는 384MB를 memcache로 잡아줄 수 있게 되었다.

에러다...

ActiveMessaging: Loading /home/forcemax/workspace/MessageMonster/app/processors/persist_message_processor.rb
=> Subscribing to /queue/PersistMessage (processed by PersistMessageProcessor)
ArgumentError: wrong number of arguments (7 for 6)

별수 없다 이번에는 내 맘대로 바꿔보자..

/home/forcemax/workspace/MessageMonster/vendor/plugins/activemessaging/lib/activemessaging/adapters/stomp.rb:25:in `initialize'

여기서 발생한 에러라고 했으니 여기로 간다.

분명 내가 설정해줄때는 :clientId는 없었다. 근데 왜 이것까지 들어가는 걸까. 이상하다.

그래서 결국
super(cfg[:login],cfg[:passcode],cfg[:host],cfg[:port].to_i,cfg[:reliable],cfg[:reconnectDelay],cfg[:clientId])


super(cfg[:login],cfg[:passcode],cfg[:host],cfg[:port].to_i,cfg[:reliable],cfg[:reconnectDelay]) #,cfg[:clientId])

로 바꿨다.

잘돈다... 이게 뭐하는 짓이냐 -_-

script/generate processor PersistMessage
라는 명령을 실행시키는데 에러가 나왔다. 이건 뭐냐 -_-;;

구글링 결과
vendor/plugins/activemessaging/lib/activemessaging.rb
파일을 수정하란다.

이 파일을 열고 64번 줄에 가면 다음 내용이 있다.

load RAILS_ROOT + '/app/processors/application.rb'

다음과 같이 바꾼다.

load RAILS_ROOT + '/app/processors/application.rb' if File.exist?(RAILS_ROOT + '/app/processors/application.rb')

이건 뭐 파일도 없는데 load하려고 하냐;;

기타 설치형 블로그/홈페이지 주소를 내 오픈ID로 쓰세요.

내 블로그 주소가 myblog.net이고 내 myID.net ID가 joyce 라면,

myblog.net 페이지의 head 태그안에 아래의 태그들을 삽입하십시오.

<link rel="openid.server" href="http://server.myid.net/server" />
<link rel="openid.delegate" href="http://joyce.myid.net/" />
<meta http-equiv="X-XRDS-Location" content="http://joyce.myid.net/xrds" />

How to bridge networks with OpenVPN

OpenVPN is an easy-to-use open source VPN software based on SSL (Secure Sockets Layer) that offers cross-platform interoperability. The majority of OpenVPN tutorials I’ve found describe how users can connect to a corporate network from their laptops over insecure networks, such as the wireless network in a hotel. By contrast, the setup I’m about to describe is better suited for permanently connecting entire networks — for example, branch offices to the headquarters of a company.

For this setup I’ll assume that you have two networks, A and B, in different locations, both connected to the Internet with broadband. At each location you will need a Linux system acting as a router/firewall to serve as the VPN end point. I’m using two Asus WL-500G Deluxe routers running OpenWRT RC5 — a Linux distribution for embedded routers — but you’re free to use the hardware and distribution of your choice. You can use one of the BSDs, Mac OS X, or even Windows; check the documentation on OpenVPN’s homepage for a list of supported operating systems. If your use OpenBSD, have a look at the article Creating secure wireless access points with OpenBSD and OpenVPN.

http://tips.linux.com/article.pl?sid=06/11/07/213217&from=rss

IBM에서는 인텔, AMD의 x86 호환 CPU가 들어가는 서버를 x Server 혹은 System X라고 부릅니다.
여기엔 Rack 형, 일반형, Blade 등이 포함되며 이 x H/W에 대해 잘 정리된 PDF를 xREF라는 이름으로 제공하고 있습니다.

이 서버에 PCI 슬롯이 몇개인지.. 현재 출시되고 있는 최고 클럭의 CPU는 무엇인지.. 이런거 확인할 때 가장 편리합니다. 대충 살펴보기만 해도 IBM의 x86 서버들은 이런 이런것들이 있구나라고 알 수 있으니 H/W 공부에 도움이 되리라 봅니다.

PDF 파일 다운로드
http://www.redbooks.ibm.com/xref/usxref.pdf

부가적인 내용은 아래 페이지를 확인하세요.
http://www.redbooks.ibm.com/Redbooks.nsf/pages/xref?Open

원글 : http://clien.career.co.kr/zboard/view.php?id=free&page=1&sn1=&divpage=81&sn=off&ss=on&sc=on&select_arrange=headnum&desc=asc&no=427363

[SVNKit] doGet, doLog

작업2007. 10. 9. 10:05


JAVA(J2SE 1.4.1) 메모리 영역 구조

http://blog.naver.com/swucs/40011983402

-Xmx를 아무리 늘려도 Out Of Memory가 발생해요.. 그렇다면 MaxPermSize를~

http://kwon37xi.egloos.com/2368729