Skip to content

2009.02.07 17:16

mysql 외부접속

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

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
mysql 접속!
mysql>show databases;
+--------------------+
| Database                |
+--------------------+
| information_schema |
| mysql                     |
+--------------------+

최초에 두개의 DB만 존재한다.
(ubuntu 7.10 server, lamp server설치 default상태 다른 환경은 몰러유~)


mysql>use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

을 실행하여 DB를 선택한다.


mysql>show tables;
+---------------------------+
| Tables_in_mysql                |
+---------------------------+
| columns_priv                     |
| db                                   |
| func                                 |
| help_category                   |
| help_keyword                   |
| help_relation                    |
| help_topic                        |
| host                                |
| proc                                |
| procs_priv                        |
| tables_priv                        |
| time_zone                         |
| time_zone_leap_second      |
| time_zone_name                |
| time_zone_transition           |
| time_zone_transition_type    |
| user                                 |
+---------------------------+

이 table들 중에 user라는 테이블에 접속권한을 가지는 유저들이 등록되어 있다.


mysql>select host, user from user;
+-----------+------------------+
| host          | user                    |
+-----------+------------------+
| 127.0.0.1    | root                     |
| localhost   | debian-sys-maint |
| localhost   | root                     |
| server명    | root                     |
+-----------+------------------+

요렇게 되어 있는 부분중에 127.0.0.1 이 부분의 host를 외부에서 접속할 수있겠금 변경한다.
% <-- 모든 외부접속 허용
000.000.000.000 <-- 특정 아이피 접속허용
000.000.000.%   <-- 특정 아이피 대역 접속허용으로 변경


mysql>update user set host = '원하는 설정값' where user ='root' and host='127.0.0.1';

위명령은 host 에 127.0.0.1 있는경우 적용된다


  1. MySQL 명령어 정리

    Date2010.03.08 Byl2zeo Views10214
    Read More
  2. MySQL 클러스터

    Date2009.11.19 ByADMINPLAY Views9981
    Read More
  3. mysqld: Sort aborted ( mysqld-nt : Sort aborted )

    Date2009.08.31 ByADMINPLAY Views9933
    Read More
  4. Mysql 5.0.67 Cluster 소스설치 구성하기

    Date2009.11.19 ByADMINPLAY Views9897
    Read More
  5. Mysql 버전확인

    Date2008.12.23 ByADMINPLAY Views9880
    Read More
  6. Mysql Replication(Master, Slave) 설정

    Date2009.11.19 ByADMINPLAY Views9734
    Read More
  7. MySQL max connection 값 변경

    Date2009.03.09 ByADMINPLAY Views9715
    Read More
  8. mysql 설치시 컴파일에러 ../depcomp: line 512 exec : g++ : not found

    Date2009.08.08 ByADMINPLAY Views9656
    Read More
  9. mysql5.0 계정 생성시 ssl_cipher 에러

    Date2009.03.03 ByADMINPLAY Views9563
    Read More
  10. Mysql bin log 로테이션 방법

    Date2009.11.26 ByADMINPLAY Views9560
    Read More
  11. mysqli 컴파일중 re2c 에러발생!

    Date2009.03.17 ByADMINPLAY Views9408
    Read More
  12. mysqli 동적모듈 추가

    Date2009.11.01 ByADMINPLAY Views9405
    Read More
  13. mysql 5.5.x my.cnf 참고

    Date2013.09.24 ByADMINPLAY Views9336
    Read More
  14. mysql data디렉토리 변경

    Date2008.10.30 ByADMINPLAY Views9269
    Read More
  15. skip-name-resolve

    Date2009.05.22 ByADMINPLAY Views9071
    Read More
  16. slow Query 조사

    Date2009.03.17 ByADMINPLAY Views9056
    Read More
  17. mysql 설치 옵션 해석

    Date2009.08.08 ByADMINPLAY Views8872
    Read More
  18. MySQL 스토리지 엔진 MyISAM과 InnoDB의 차이

    Date2009.06.25 ByADMINPLAY Views8778
    Read More
  19. MySQL 특정 테이블만 백업하기

    Date2014.01.06 ByADMINPLAY Views8767
    Read More
  20. mysql 외부접속

    Date2009.02.07 ByADMINPLAY Views8766
    Read More
Board Pagination Prev 1 2 3 4 5 Next
/ 5

Copyright ADMINPLAY corp. All rights reserved.

abcXYZ, 세종대왕,1234

abcXYZ, 세종대왕,1234