로그인

검색

Server
2012.11.16 14:25

우분투 innoDB 활성화하기

조회 수 9004 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄


[mysqld]

## * Basic Settings

default-storage-engine=innodb   //이 부분에 삽입하고 저장하신 후 mysql 재시작하세요.

user = mysql

pid-file = /var/run/mysqld/mysqld.pid

socket = /var/run/mysqld/mysqld.sock

port = 3306

basedir = /usr

datadir = /var/lib/mysql

tmpdir = /tmp

lc-messages-dir = /usr/share/mysql

skip-external-locking

## Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address = 127.0.0.1


이제 확인 활성화 되었는지


이렇게 하시면 됩니다.

# mysql -uroot -p패스워드
--> mysql 실행


mysql> SHOW VARIABLES LIKE 'have_innodb';     엔터 // 세미클론 꼭 삽입하시고 엔터 치시야 됩니다.


  have innodb  | yes      //이렇게 뜨면 활성화 완료


mysql>\quiet    엔터 // 끝내기




1
2
sudo apt-get install mysql-server
sudo apt-get install libinnodb3

MySQL과 innoDB 설치가 완료되었다. 이 후 mysql에 접속하여 innoDB가 활성화 되어 있는지 본다.

1
mysql -u root -p
 
 접속 후 mysql 쉘에서 다음 명령어를 실행한다.
 
1
2
use mysql
show variables like 'have_innodb'
 
 아래와 같은 화면이 나온다면 innoDB가 활성화 되어 있는 상태이다.
 
1
2
3
4
5
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| have_innodb   | YES   |
+---------------+-------+
 
 원하는 테이블을 수동으로 바꾸는 방법도 있지만 mysql을 설치한 직후라면, 기본 스토리지 엔진으로 innoDB를 사용하게 하는 것이 간편하다. 이를 위해서는 아래와 같이 실행 한다.
 
1
vi /etc/mysql/my.conf
 
 [mysqld] 항목에 다음과 같은 항목을 추가한다.
1
default-storage-engine=innodb
여기까지 진행하였다면 innoDB 설치 및 활성화가 된 것이다.




리눅스

유용한 정보 및 자료

  1. [우분투] screen 명령어

    Date2013.02.04 CategoryServer By보석 Views33145
    Read More
  2. 우분투 innoDB 활성화하기

    Date2012.11.16 CategoryServer By보석 Views9004
    Read More
  3. 우분투 업데이트 서버 변경

    Date2012.11.11 CategoryServer By보석 Views12229
    Read More
  4. 우분투 트림활성화 및 수동 트림하기

    Date2012.11.04 CategoryServer By보석 Views20311
    Read More
  5. 우분투 레이드0 설치 install Ubuntu RAID0

    Date2012.10.23 CategoryServer By보석 Views12286
    Read More
  6. ssl 항상 적용하기 + http->https로 rewrite

    Date2012.08.18 CategoryServer By보석 Views20458
    Read More
  7. [우분투] SSH Server 설치하기

    Date2012.08.18 CategoryServer By보석 Views15481
    Read More
  8. Startssl.com 무료 ssl 인증서 받기

    Date2012.08.17 CategoryServer By보석 Views13228
    Read More
  9. Startssl.com 무료 ssl 인증서 서버 설정

    Date2012.08.17 CategoryServer By보석 Views31627
    Read More
  10. 우분투 사용자 패스워드 비번 변경

    Date2012.07.26 CategoryServer By보석 Views21304
    Read More
  11. 링크하드 nginx rewrite 해결방법

    Date2012.05.30 CategoryServer By보석 Views25668
    Read More
  12. vi 에디터 - 검색, 치환, 정규식, 명령어

    Date2012.05.20 CategoryServer By보석 Views18865
    Read More
  13. 우분투 PHP 설치

    Date2012.05.20 CategoryServer By보석 Views11917
    Read More
  14. 우분투 서버(커맨드 모드)에서 외부 아이피 알아내기

    Date2012.04.05 CategoryServer By보석 Views14649
    Read More
  15. nginx 첨부파일 용량 설정

    Date2012.04.02 CategoryServer By보석 Views19150
    Read More
  16. 우분투 원격데스크톱 설정

    Date2012.03.30 CategoryServer By보석 Views12589
    Read More
  17. 우분투 메일서버

    Date2012.03.30 CategoryServer By보석 Views10584
    Read More
  18. 우분투 DB백업 복원

    Date2012.01.01 CategoryServer By보석 Views11096
    Read More
  19. 우분투에 메일서버를 설치하자.

    Date2011.12.10 CategoryServer By보석 Views11052
    Read More
  20. 설치된 패키지 깨끗이 삭제하지

    Date2011.11.03 CategoryServer By보석 Views24709
    Read More
Board Pagination Prev 1 2 3 4 Next
/ 4