2016년 7월 30일 토요일

MYSQL 명령어사용하여_백업받기

명령어사용하여 백업받기

만약 mysql 설치 디렉토리가 /usr/local/mysql 이라면.
보통은 /usr/local/mysql 설치한다.

mysqldump 도구는 /usr/local/mysql/bin 존재 함.
만약 mysqldump 도구가 패스에 잡혀 있지 않다면 절대 패스를 적어서 실행하길 바랍니다.

** 일반적으로 기본 설치일 경우 MYSQL 서버가 설치된 시스템에서 mysql의 root 계정의 암호는 
설정되어 있지 않습니다.

** 전체 database 백업  --> 조심!! 이 명령어로 몇시간동안 서버의 자원을 완전히 없앨 수
있는 명령어 입니다. 특별한 경우 아니면 절대 권장않함.

일반적인 형식
shell> mysqldump [options] db_name [tables]
shell> mysqldump [options] --databases db_name1 [db_name2 db_name3...]
shell> mysqldump [options] --all-databases
1. 전체 DB 백업
mysqldump -u root --databases  > out_put.sql
or
mysqldump -u root --all-databases > out_put.sql

2. 정해진 DB 백업 
mysqldump -u root DB_NAME > out_put.sql

3. 정해진 DB 백업 , 스키마
mysqldump -u root --no-data DB_NAME > out_put.sql
mysqldump -u root -d DB_NAME > out_put.sql

4. 정해진 DB 백업 , 데이타만
mysqldump -u root --no-creat-info DB_NAME > out_put.sql
mysqldump -u root -t DB_NAME > out_put.sql

2016년 7월 29일 금요일

Head First Programmming - 요약

Pygame 라이브러리 설치 및 설명

설명

  • 게임 제작에 사용할 수 있는 라이브러리

설치

  • 설치 라이브러리를 다운로드 (32bit/64bit 확인 필요)

관련 사이트


  • 공식 사이트 :
    • pygame 공식 사이트 : 링크
    • pygame 공식 다운로드 사이트(이전 공식 사이트) : 링크
    • pypi 설치용 라이브러리 사이트(강추) : 링크
  • 사용 예제 사이트 : http://devnauts.tistory.com/61
  • 설치 관련 사이트


IDLE 단축키들

  • [Tab] : 자동 완성 목록 제공
  • [Alt + P] : 이전 입력 내용
  • [Alt + N] : Next 입력 내용
  • [F5] : 모듈 코드 실행


Python 예약어

  • def : 새 함수 정의 할때 사용
  • return : 반환 하기


Python BIF

  • input() : 키보드 입력을 받는다.
  • random.randint() : 난수를 생성
  • float() : 문자열 -> 실수로
  • int() : 문자열 -> 정수로


Python Error

  • ValueError : 런타임에러 , 값이 너무 많거나 , 너무 적어서
  • IOError : 파일에서 발생하는 에러

출처 : Head First Programming (한빛미디어)

2016년 7월 28일 목요일

Routing Table 정보추가 Windows용

Routing Table 정보추가 For Windows

조건 : 내가 사용하는 노트북에는 NIC 두개 존재하였음

192.168.3.1 -- router
192.168.3.2 -- was
192.168.3.3 -- mycomm

route add 129.200.9.0 MASK 255.255.255.0 192.168.3.1 METRIC 3 IF 0x10004

129.200.9.0   : destination (network)
192.168.3.1   : gateway (우리쪽 라우터)
0x10004       : route print에서 나오는 정보 입니다.(아래 예제에서는 0x2)

위의 명령어는 시스템을 재부팅하면 제거됩니다.
영구적으로 기록시키기 위해서는 -p 를 주어야 합니다.
route -p 위와 상동

Example
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 14 85 08 91 c4 ...... Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller - 패킷 스케줄러 미니 포트
===========================================================================

현재 나의 노트북 (작업 이전)

Route Table
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 1f 29 83 38 92 ...... Broadcom NetLink Gigabit Ethernet - 패킷 스케줄러 미니 포트
0x20004 ...00 0b 2b 17 26 f8 ...... Realtek RTL8150 USB 10/100 Fast Ethernet Adapter - 패킷 스케줄러
 미니 포트
===========================================================================
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      10.24.124.1    10.24.124.29       20
          0.0.0.0          0.0.0.0      150.23.13.1    150.23.13.37       20
      10.24.124.0  255.255.255.128     10.24.124.29    10.24.124.29       20
     10.24.124.29  255.255.255.255        127.0.0.1       127.0.0.1       20
   10.255.255.255  255.255.255.255     10.24.124.29    10.24.124.29       20
        127.0.0.0        255.0.0.0        127.0.0.1       127.0.0.1       1
      150.23.13.0    255.255.255.0     150.23.13.37    150.23.13.37       20
     150.23.13.37  255.255.255.255        127.0.0.1       127.0.0.1       20
   150.23.255.255  255.255.255.255     150.23.13.37    150.23.13.37       20
        224.0.0.0        240.0.0.0     10.24.124.29    10.24.124.29       20
        224.0.0.0        240.0.0.0     150.23.13.37    150.23.13.37       20
  255.255.255.255  255.255.255.255     10.24.124.29    10.24.124.29       1
  255.255.255.255  255.255.255.255     150.23.13.37    150.23.13.37       1
Default Gateway:       150.23.13.1
===========================================================================
Persistent Routes:
  None

route -p add 10.24.124.0 MASK 255.255.255.128 10.24.124.1 METRIC 1 IF 0x20004

현재 나의 노트북 (작업 결과)

Route Table
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...00 1f 29 83 38 92 ...... Broadcom NetLink Gigabit Ethernet - 패킷 스케줄러 미니 포트
0x20004 ...00 0b 2b 17 26 f8 ...... Realtek RTL8150 USB 10/100 Fast Ethernet Adapter - 패킷 스케줄러
 미니 포트
===========================================================================
===========================================================================
Active Routes:
Network Destination        Netmask          Gateway       Interface  Metric
          0.0.0.0          0.0.0.0      10.24.124.1    10.24.124.29       20
          0.0.0.0          0.0.0.0      150.23.13.1    150.23.13.37       20
      10.24.124.0  255.255.255.128     10.24.124.29    10.24.124.29       20
      10.24.124.0  255.255.255.128      10.24.124.1    10.24.124.29       1
     10.24.124.29  255.255.255.255        127.0.0.1       127.0.0.1       20
   10.255.255.255  255.255.255.255     10.24.124.29    10.24.124.29       20
        127.0.0.0        255.0.0.0        127.0.0.1       127.0.0.1       1
      150.23.13.0    255.255.255.0     150.23.13.37    150.23.13.37       20
     150.23.13.37  255.255.255.255        127.0.0.1       127.0.0.1       20
   150.23.255.255  255.255.255.255     150.23.13.37    150.23.13.37       20
        224.0.0.0        240.0.0.0     10.24.124.29    10.24.124.29       20
        224.0.0.0        240.0.0.0     150.23.13.37    150.23.13.37       20
  255.255.255.255  255.255.255.255     10.24.124.29    10.24.124.29       1
  255.255.255.255  255.255.255.255     150.23.13.37    150.23.13.37       1
Default Gateway:       150.23.13.1
===========================================================================
Persistent Routes:
  Network Address          Netmask  Gateway Address  Metric
      10.24.124.0  255.255.255.128      10.24.124.1       1

Windows Help
 ROUTE [-f] [-p] [command [destination]
                  [MASK netmask]  [gateway] [METRIC metric]  [IF interface]

  -f           Clears the routing tables of all gateway entries.  If this is
               used in conjunction with one of the commands, the tables are
               cleared prior to running the command.
  -p           When used with the ADD command, makes a route persistent across
               boots of the system. By default, routes are not preserved
               when the system is restarted. Ignored for all other commands,
               which always affect the appropriate persistent routes. This
               option is not supported in Windows 95.
  command      One of these:
                 PRINT     Prints  a route
                 ADD       Adds    a route
                 DELETE    Deletes a route
                 CHANGE    Modifies an existing route
  destination  Specifies the host.
  MASK         Specifies that the next parameter is the 'netmask' value.
  netmask      Specifies a subnet mask value for this route entry.
               If not specified, it defaults to 255.255.255.255.
  gateway      Specifies gateway.
  interface    the interface number for the specified route.
  METRIC       specifies the metric, ie. cost for the destination.

Examples:

    > route PRINT
    > route ADD 157.0.0.0 MASK 255.0.0.0  157.55.80.1 METRIC 3 IF 2
             destination^      ^mask      ^gateway     metric^    ^
                                                         Interface^
      If IF is not given, it tries to find the best interface for a given
      gateway.
    > route PRINT
    > route PRINT 157*          .... Only prints those matching 157*
    > route CHANGE 157.0.0.0 MASK 255.0.0.0 157.55.80.5 METRIC 2 IF 2

      CHANGE is used to modify gateway and/or metric only.
    > route PRINT
    > route DELETE 157.0.0.0
    > route PRINT