일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 호환성
- json
- 한글
- html
- Oracle
- RADIO
- java
- 톰캣
- php
- DB
- JSTL
- MYSQL
- 전자정부 표준프레임워크
- 오라클
- switch
- 이클립스
- jquery
- exception
- 문자열
- @RequestBody
- 웹 플랫폼 설치 관리자
- checbox
- HTML5
- null
- 네이버스마트 에디터
- 날짜
- maven
- 스크립트
- SSL
- spring form tag
- Today
- Total
목록분류 전체보기 (525)
개인적인 정리
리눅스에서 MySQL 접속시 ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (13) 와 같은 에러가 발생하였다. 1. /var/lib/ 으로 이동하여 mysql 디렉토리를 조회해본다. #ls -al mysql 아래와 같이 나온다. drwxr-x---. 2 mysql mysql 90 2월 6 20:23 mysql 2. mysql 그룹에 사용자를 추가한다. #usermod -aG mysql aaaaaa #cat /etc/group 으로 추가되었는지 확인한다. 3. 터미널을 로그아웃 했다가 다시 로그인해서 mysql 에 접속을 해본다.
계정정보를 저장한다. user name 과 client host로 정의된다.
# mysql --user=aaaaaa --password db_name # mysql -u aaaaaa -p db_name # mysql -user=aaaaaa --password=password db_name # mysql -u aaaaaa -ppassword db_name -p 옵션을 사용할 경우 password는 p에 바로 붙여쓴다. -p와 password 사이에 공백이 없어야 함
리눅스에서 MySQL 설치 리눅스 종류별로 설치할 수 있는 방법들이 설명되어 있다. Installing MySQL on Linux Using the MySQL Yum Repository Installing MySQL on Linux Using the MySQL APT Repository Installing MySQL on Linux Using the MySQL SLES Repository Installing MySQL on Linux Using RPM Packages from Oracle Installing MySQL on Linux Using Debian Packages from Oracle Deploying MySQL on Linux with Docker Installing MySQL on Linux..
CMake Error at plugin/group_replication/libmysqlgcs/rpcgen.cmake:100 (MESSAGE): Could not find rpcgen Call Stack (most recent call first): plugin/group_replication/libmysqlgcs/CMakeLists.txt:38 (INCLUDE) 리눅스에서 MySQL을 설치하는 도중에 위와 같은 오류가 발생 #yum --enablerepo=PowerTools install rpcgen
-- Found PkgConfig: /usr/bin/pkg-config (found version "1.4.2") -- Checking for module 'libtirpc' -- Package 'libtirpc', required by 'virtual:world', not found CMake Error at cmake/rpc.cmake:65 (MESSAGE): Could not find rpc/rpc.h in /usr/include or /usr/include/tirpc Call Stack (most recent call first): plugin/group_replication/libmysqlgcs/configure.cmake:57 (MYSQL_CHECK_RPC) plugin/group_replic..
-- Could NOT find Curses (missing: CURSES_LIBRARY CURSES_INCLUDE_PATH) CMake Error at cmake/readline.cmake:71 (MESSAGE): Curses library not found. Please install appropriate package, remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurses5-dev, on Redhat and derivates it is ncurses-devel. Call Stack (most recent call first): cmake/readline.cmake:100 (FIND_CURSES) cmake..