Install Manual - phpMyAdmin (edit.2016.04.26)
D:\_www\_phpMyAdmin 압축 풀기
phpmyadmin 폴더로 들어가서
config.sample.inc.php 파일을 복사하여 붙인후
config.inc.php 로 파일 이름을 변경
config.inc.php 편집
$cfg['Servers'][$i]['AllowNoPassword'] = false 부분을 찾아 false 를 true 로 바꿈
libraries 폴더로 가서 config.default.php 파일을 엽니다.
config.default.php 편집
$cfg['CheckConfigurationPermissions'] = true 부분을 찾아서 true 를 false 로 바꾸
config.inc.php ------------------------------------------------------------
$cfg['PmaAbsoluteUri'] = '';
-> $cfg['PmaAbsoluteUri'] = 'http://xxx.xxx.xxx.xxx/phpmyadmin/';
※ 주의 : 폴더명이 대소문자 틀림없이 동일해야 합니다. 폴더명이 phpMyAdmin 일 경우 'http://xxx.xxx.xxx.xxx/phpMyAdmin/' 으로 써주시면 됩니다.
$cfg['Servers'][$i]['controluser'] = '';
-> $cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '';
-> $cfg['Servers'][$i]['controlpass'] = '****';
$cfg['Servers'][$i]['auth_type'] = 'config';
-> $cfg['Servers'][$i]['auth_type'] = 'http';
--------------------------------------------------------------------------
$cfg['PmaAbsoluteUri']에는 설치될 phpMyAdmin의 경로를 적어 줍니다.
만약, admin 사용자의 계정에 올린다면
$cfg['PmaAbsoluteUri'] = 'http://192.168.10.3/~admin/phpMyAdmin/';
이렇게 적어주시면 됩니다.
$cfg['Servers'][$i]['controluser'] 에는 MySQL ID를,
$cfg['Servers'][$i]['controlpass'] 에는 해당 암호를 그대로 입력합니다.
서버관리자일 경우에는 root를, 일반사용자일 경우에는 자신이 부여받은 MySQL ID와 비번을 입력하면 되겠지요? 서버관리자가 설치해두면, 일반사용자들이 누구나 이용할 수 있지만, 일반사용자의 MySQL ID로 설정하게 되면, 그 사용자 DB만 이용할 수 있습니다.
4. 실행
웹 브라우저에서 http://xxx.xxx.xxx.xxx/phpmyadmin/ 으로 접속하면
ID와 비번을 입력하라는 창이 나옵니다. 입력하고 들어가면 익숙한 phpmyadmin/ 화면이 나옵니다.
-
No Image
meta http-equiv="refresh" content="0;URL='http://주소
<!DOCTYPE html> <html> <head> <title>WELCOME</title> <meta http-equiv="refresh" content="0;URL='http://주소'"> </head> </html>Date2020.07.27 Category웹서버 Views246 -
No Image
Install Manual - phpMyAdmin (edit.2016.04.26)
https://www.phpmyadmin.net/ D:\_www\_phpMyAdmin 압축 풀기 phpmyadmin 폴더로 들어가서 config.sample.inc.php 파일을 복사하여 붙인후 config.inc.php 로 파일 이름을 변경 config.inc.php 편집 $cfg['Servers'][$i]['AllowNoPassword'] ...Date2016.04.26 Category웹서버 Views111 -
No Image
Install Manual - MySQL (edit.2016.04.26)
윈도우용 MySQL 5.7 설치 http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.12-winx64.zip http://dev.mysql.com/downloads/mysql/ MySQL에 들어가 보면 MySQL의 다양한 버전이 있어서 무엇을 다운받아야 할지 당황스러울수가 있는데 위 링크를 클릭해...Date2016.04.26 Category웹서버 Views106 -
No Image
Install Manual - PHP (edit.2016.04.26)
1. Visual C++ Redistributable for Visual Studio 2012 설치 경로 : http://www.microsoft.com/en-us/download/details.aspx?id=30679 파일 : vcredist_x64.exe apache v11, php v11 버전들은 Visual C++ Redistributable for Visual Studio 2012 해당 프로그...Date2016.04.26 Category웹서버 Views207 -
No Image
Install Manual - Apache (edit.2016.04.26)
아파치 설치 1. 다운로드 http://www.apachelounge.com/download/ ● "D:/_www/_apache" 압축 풀기 2. ServerRoot 변경 "D:/_www/_apache/conf/httpd.conf" 파일 편집 ● ServerRoot "D:/_www/_apache" ● Listen 80 ● ServerAdmin postmaster@localhost (관리...Date2016.04.26 Category웹서버 Views129 -
No Image
httpd.conf - 아파치 웹 서버 보안
httpd.conf - 아파치 웹 서버 보안 >> 특정 IP(대역)를 사용하는 호스트 차단하기 # vi /usr/local/apache/conf/httpd.conf <Directory /usr/local/apache/htdocs> Order Allow,Deny Deny from 192.168.1 Allow from all </Directory> 해당 ...Date2016.04.08 Category웹서버 Views177