1. 설정
//etc/my.cnf
basedir : engine 설치 위치
datadir : mysql이 생성하는 파일의 default위치 지정

2. 실행
cd mysql; ./bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql &

3. 기초 보안작업
Account 정리
select user, host, password from mysql.user;
drop user 'root'@'::1';
SET PASSWORD for 'root'@'localhost'=PASSWORD('test');

drop database test;
or
mysql_securre_installation client tool 사용


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

MongoDB Education  (0) 2013.10.21
cassandra.yaml  (0) 2013.02.18





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

일주일에 동영상 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

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

+ Recent posts