몽고 디비 만든사람이 직접하는 강좌를 알게되어 동영상 보면서 공부하고 있습니다

일주일에 동영상 2시간정도와 몇개의 퀴즈 그리고 숙제-0-

사이버대 다니는 느낌이랄까..

뭐 홈페이지 타이틀도 MongoDB UNIVERSITY이니까 말 다했죠 ㅋㅋ

친절하게 자막도 있지만 저의 중딩 영어 실력으로는 좀 벅차네요

이 놈의 영어가 끝까지 발목을 잡네ㅠㅠ

숙제나 퀴즈도 영어를 잘 이해 못해서 틀린경우도 있어요;;;;

M102 : MongoDB for DBA 3주차인데 sql과는 달리 

여러가지 명령어와 메소드를 제공하다보니 익숙해지기까지 시간이 좀 걸릴듯 싶네요

그래도 이수? 하면 라이센스가 나온다니!!!

몽고디비 라이센스 하나씩 가져보아요~

http://education.mongodb.com/






'내 시간을 뺐는 참사들 > DB' 카테고리의 다른 글

오랜만에 mysql 설치  (0) 2014.06.19
cassandra.yaml  (0) 2013.02.18

 

 

넷북에 우분투를 깔아서 돌릴려고 이것 저것 만져보고 있는데이 놈이 뚜껑을 닫으니 대기 모드로 들어가는 것이 아닌가?어차피 cui로 돌리니 xubuntu에 파워 설정도 필요없고여기저기 건들다가 찾았다 ㅎㅎㅎ

/etc/systemd/logind.conf 요기에

#HandleLidSwitch=suspend 요놈 주석풀고 ignore로 설정하니 되드라 ㅎ

 

HandleLidSwitch=ignore

 

외쿡애들은 좋겠어 그냥 보기만하면 직감적으로 알잖아

 

만지다뚜껑스위치=중단

 

Can no longer "Do nothing" when laptop lid closes

 

 

 

'내 시간을 뺐는 참사들' 카테고리의 다른 글

G2 4.4.2 루팅  (0) 2014.06.28
Git curl_multi_timeout 에러  (0) 2014.01.28
LDAP logfile 설정  (0) 2013.06.22
grep 시간  (0) 2013.02.18
애니팡 업데이트후 버그 발견  (0) 2012.09.05

ldap때문에 멘붕 직전까지 갔다ㅠㅠ

ldap이 뭔지도 몰랐는데 Multi Master로 구성하고 짜잘한 설정들ㅠㅠ

ou가 뭔지 dc가 뭔지 참눼..

이번에 또 깨달은것은 open source는 국내 자료가 좀 마니 부족한듯..

영어는 초딩 수준인데 이거 원 힘들어서 해먹겠나ㅠㅠ


ldap log가 /var/log/syslog에 떨어지는데 요놈을 따로 빼내기-0-

인터넷 뒤지니 /etc/ldap/slapd.conf 에서 설정 하는거란다

근데 나는 slapd.conf가 없단다 what the f...

영어 울렁증에 난독증까지 있는 나에겐 짜증이 올라온단다

어디보니까 또 oclLogFile 에 지정 해주면 된단다. 뭥미? 안되잖아!!

man slapd 보다가 log 아래 내용 찾음....


 -l syslog-local-user

              Selects  the  local user of the syslog(8) facility. Value can be LOCAL0, through LOCAL7, as well as USER and DAE‐

              MON.  The default is LOCAL4.  However, this option is only permitted on systems that support local users with the

              syslog(8) facility.  Logging to syslog(8) occurs at the "DEBUG" severity debug-level.


이.. 이건 syslog에 local4로 저장한다는 내용 ㅇㅋㄷㅋ


syslog.conf를 찾았다

이럴수가..

/etc/syslog.conf 가 없다?

ubuntu는 rsyslog로 바꼈단다ㅡㅡ;


아..짱나 황금같은 내 시간들...


결국 /etc/rsyslog.d/50-default.conf 파일 내용을 아래와 같이 바꾸고 해결ㅜㅜ


*.*;auth,authpriv.none;local4.none              -/var/log/syslog

local4.*                        -/var/log/ldap/ldap.log


'내 시간을 뺐는 참사들' 카테고리의 다른 글

G2 4.4.2 루팅  (0) 2014.06.28
Git curl_multi_timeout 에러  (0) 2014.01.28
우분투 노트북 뚜껑 닫아도 안꺼지게 하기  (0) 2013.10.20
grep 시간  (0) 2013.02.18
애니팡 업데이트후 버그 발견  (0) 2012.09.05

Initial_tokenIn a Cassandra cluster, the Key/Value pairs are spread among all the nodes of the cluster. The entries are hashed (based on their key) using a consistent hashing algorithm that enables the entry to be associated to a specific node. For this and internally, there is a convention but to keep it simple, each node in the Cassandra cluster is assigned a token (called the initial_token) that gives you the entries that the node is responsible for.Each node has a defined token. When setting up a new cluster, the token is calculated (using a python script) and specifies the key range each node (ie. JVM) is responsible for.-        This is a range between 0 and 2^127-        Each node is responsible for a subpart of this integer space. Hence, each node is responsible for a range of keys.tApplication Director provides you a set of variables to use within scripts. Two of them will help us to calculate the token:-        nodes_ips. This is the list of the IPs of the virtual machines in the cluster. For instance, if you want to deploy a 5 node cluster, Application Director will fill in this list with 5 IPs.-        node_index. This is the index in the previous list of the current virtual machine. For instance, the index could be 3. So, the current VM is the third VM in the cluster.
SeedsThis property must be a comma-separated list of the cluster IPs.Based on the Application Director  variable nodes_ips, this is property will be generated and specify into the configuration file cassandra.yaml
Listen-address & rpc_addressMust be set to the current IP or a specific network interface depending on your deploymentApplication Director provide a property self:ip we can use into the scripts

'내 시간을 뺐는 참사들 > DB' 카테고리의 다른 글

오랜만에 mysql 설치  (0) 2014.06.19
MongoDB Education  (0) 2013.10.21

grep "Thu Apr 12 06:2[3-5]:[0-5][0-9] 2012" filename

'내 시간을 뺐는 참사들' 카테고리의 다른 글

G2 4.4.2 루팅  (0) 2014.06.28
Git curl_multi_timeout 에러  (0) 2014.01.28
우분투 노트북 뚜껑 닫아도 안꺼지게 하기  (0) 2013.10.20
LDAP logfile 설정  (0) 2013.06.22
애니팡 업데이트후 버그 발견  (0) 2012.09.05

애니팡 나온뒤로 배터리가 남아나질 않네요ㅡㅡ
해도해도 20만점은 넘사벽 ㅜㅜ
9월 4일에 업데이트하고 열씨미 하다가 버그발견했습니다
예전엔 이런적이 없었는데 당황 ㅡㅡㅋ
돼지가 병아리 뒤로 숨어써요 ㅋㅋ

"cfile28.uf@1612E635504720B2010FD1.png"


"cfile1.uf@1315BA36504720C1064112.png"

'내 시간을 뺐는 참사들' 카테고리의 다른 글

G2 4.4.2 루팅  (0) 2014.06.28
Git curl_multi_timeout 에러  (0) 2014.01.28
우분투 노트북 뚜껑 닫아도 안꺼지게 하기  (0) 2013.10.20
LDAP logfile 설정  (0) 2013.06.22
grep 시간  (0) 2013.02.18

+ Recent posts