달력

11

« 2024/11 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
2017. 7. 2. 22:26

phpmyadmin manual 사용하기 C. Oracle2017. 7. 2. 22:26


설치하는곳은 아파치 루트디렉토리에 설치할것!!
 
phpmyadmin 을 설치하기 위해 기본적으로 설치 되어 있어야 할 프로그램
-apache(웹서버), mysql(DB), php 가 설치 되어 있어야 한다.
 
phpmyadmin 설치 방법
http://www.phpmyadmin.net/ 에서 파일을 다운 받는다.
 
[root@jinhodang src]# tar   zxvf   phpMyAdmin-2.7.0-pl2.tar.gz 로 압축을 풀고
[root@jinhodang src]# mv phpMyAdmin-2.7.0-pl2     phpMyAdmin 이름을 바꿔준다
 
 
[root@jinhodang src]# ls -l  하면 아래와 같이 소유권이 나와있다 이 소유권을 수정해 준다.
 
drwxr-xr-x    7 52400    24067        4096 Dec 27 08:58 phpMyAdmin
 
[root@jinhodang src]# chown -R root:root phpMyAdmin   다음과같이 소유권을 바꿔준다 root:root   첫번째 root는 사용자 두번째 root 는 사용자그룹이다. 다음과 같이 수정하면 아래와 같이 변경 된다.
 
drwxr-xr-x    7 root     root         4096 Dec 27 08:58 phpMyAdmin
 
[root@jinhodang src]# cd phpMyAdmin  디렉토리로 들어가서
 
[root@jinhodang phpMyAdmin]# cp config.default.php      config.inc.php  과 같이 복사해 준다.
 
[root@jinhodang phpMyAdmin]# vi config.inc.php 로 편집해 준다.
 
내용중
$cfg['PmaAbsoluteUri'] = ''; 부분의 내용을
$cfg['PmaAbsoluteUri'] = 'http://도메인네임/phpmyadmin';  으로 수정해 준다.
 
$cfg['Servers'][$i]['controluser']   = '';   부분의 내용을
$cfg['Servers'][$i]['controluser']   = 'mysql';   mysql 은 mysql을 사용할 계정을 넣으면 된다.
 
$cfg['Servers'][$i]['controlpass']   = '';   부분의 내용을
$cfg['Servers'][$i]['controlpass']   = 'test_test';   test_test 부분에 PW를 넣으면 된다.
 
$cfg['Servers'][$i]['auth_type']     = 'config / http / cookie';  앞에와 같이 3개중 1개를 넣으면 된다.
-config 방식 :  user, password 값을 이 파일에 입력하여 phpMyAdmin에 config에서 설정해놓은 값으로 로그인된다.
-httpd 방식 : 브라우저에서 user와 password를 받아서 로그인 하는 방식
-cookie 방식 : 쿠키방식이다.
 
http://도메인/phpMyAdmin/index.php  으로 접속, 확인하면 된다.
 
위와같이 했을때
The configuration file now needs a secret passphrase (blowfish_secret).
와 같은 메시지가 뜨면
blowfish_secret 를 찾아서 영문으로 아무글자나 입력한다.
 
~/phpMyAdmin/config.inc.php 파일을 수정할때마다 웹서버를 재시작해줘야 한다.
 
  


:
Posted by sfeg