일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- SSL
- 한글
- RADIO
- HTML5
- exception
- php
- 톰캣
- maven
- java
- 오라클
- null
- 웹 플랫폼 설치 관리자
- checbox
- 전자정부 표준프레임워크
- jquery
- DB
- spring form tag
- 스크립트
- JSTL
- 날짜
- Oracle
- 호환성
- html
- json
- 문자열
- @RequestBody
- 네이버스마트 에디터
- 이클립스
- MYSQL
- switch
- Today
- Total
목록DB (197)
개인적인 정리
-- Running cmake version 3.11.4 -- Could NOT find Git (missing: GIT_EXECUTABLE) -- MySQL 8.0.18 CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool. CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage MySQL 설치..
bash: cmake: 명령을 찾을 수 없습니다... MySQL 설치시 위와 같은 오류 발생 #yum -y install cmake
https://dev.mysql.com/doc/refman/8.0/en/installing-source-distribution.html MySQL :: MySQL 8.0 Reference Manual :: 2.9.4 Installing MySQL Using a Standard Source Distribution MySQL 8.0 Reference Manual / ... / Installing and Upgrading MySQL / Installing MySQL from Source / Installing MySQL Using a Standard Source Distribution 2.9.4 Installing MySQL Using a Standard Source Distribution To install..
MySQL 8.0.x.x Initializing the Data Directory https://dev.mysql.com/doc/refman/8.0/en/data-directory-initialization.html MySQL :: MySQL 8.0 Reference Manual :: 2.10.1 Initializing the Data Directory 2.10.1 Initializing the Data Directory After MySQL is installed, the data directory must be initialized, including the tables in the mysql system schema: For some MySQL installation methods, data dir..
https://dev.mysql.com/downloads/mysql/ MySQL :: Download MySQL Community Server Select Operating System: Select Operating System… Microsoft Windows Ubuntu Linux Debian Linux SUSE Linux Enterprise Server Red Hat Enterprise Linux / Oracle Linux Fedora Linux - Generic Oracle Solaris macOS FreeBSD Source Code Select OS Version: All Window dev.mysql.com 윈도우, 리눅스등 OS 및 OS version 에 맞춰 다운받을 수 있도록 되어 있다..
토드 엣지 다운로드 https://www.toadworld.com/products/downloads?type=Freeware&download=toad-edge Download Toad World Downloads No matter which database platforms you use, we offer solutions that make your job easier than ever. Get fully functioning software free for 30 days or download freeware. www.toadworld.com 모든 항목을 입력하고 나니 파일이 다운된다. 오라클용 Toad를 지속적으로 사용하다보니 MySQL 클라이언트로 Toad Edge를 사용중.
mysql 포트를 3306에서 다른 것으로 변경한 후에 접속 ./mysql -u aaa -p -P 포트번호 ./mysql -u aaa -p -P 1111 대문자 P
MySQL 버전 확인 1 #./mysql --version ./mysql Ver 8.0.18 for Linux on x86_64 (Source distribution) 2. mysql>select version(); +-----------+ | version() | +-----------+ | 8.0.18 | +-----------+ 1 row in set (0.00 sec) 3. mysql> SHOW GLOBAL VARIABLES LIKE '%ver%'; +---------------------------------+--------------------------------------+ | Variable_name | Value | +---------------------------------+----..