설치#
- 다운로드 & 설치
wget http://jaist.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.11.1.2-all-languages-utf-8-only.tar.bz2 tar -xvjf phpMyAdmin-2.11.1.2-all-languages-utf-8-only.tar.bz2 mv phpMyAdmin-2.11.1.2-all-languages-utf-8-only /app/phpMyAdmin
- phpMyAdmin 환경 설정
vi /app/phpMyAdmin/phpMyAdmin-2.11.1.2-all-languages-utf-8-only/config.inc.php >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <?php /* * Generated configuration file * Generated by: phpMyAdmin 2.10.1 setup script by Michal Čihař <michal@cihar.com> * Version: $Id: setup.php 9697 2006-11-13 08:32:28Z nijel $ * Date: Thu, 17 May 2007 00:39:09 GMT */ /* Servers configuration */ $i = 0; /* Server 127.0.0.1 (cookie) [1] */ $i++; $cfg['Servers'][$i]['host'] = '127.0.0.1'; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['port'] = '3306'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server 127.0.0.1 (cookie) [2] */ #$i++; #$cfg['Servers'][$i]['host'] = '127.0.0.1'; #$cfg['Servers'][$i]['extension'] = 'mysqli'; #$cfg['Servers'][$i]['port'] = '3307'; #$cfg['Servers'][$i]['connect_type'] = 'tcp'; #$cfg['Servers'][$i]['compress'] = false; #$cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server 127.0.0.1 (cookie) [3] */ #$i++; #$cfg['Servers'][$i]['host'] = '127.0.0.1'; #$cfg['Servers'][$i]['extension'] = 'mysql'; #$cfg['Servers'][$i]['port'] = '3308'; #$cfg['Servers'][$i]['connect_type'] = 'tcp'; #$cfg['Servers'][$i]['compress'] = false; #$cfg['Servers'][$i]['auth_type'] = 'cookie'; /* End of servers configuration */ $cfg['blowfish_secret'] = '464ba3f6cd1e33.81837422'; ?> <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
- apache 환경 설정
vi /usr/local/apache2/conf/httpd.conf <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< # by nettem phpMyAdmin files Alias /phpMyAdmin "/home/mysql/phpMyAdmin" <Directory "/phpMyAdmin"> Options FollowSymLinks DirectoryIndex index.html index.php </Directory>
Add new attachment
Only authorized users are allowed to upload new attachments.