리눅스 썸네일형 리스트형 [리눅스] mariadb 설치 mariadb 설치 현재 지원되는 버전은 10.3, 10.4, 10.5, 10.6(5년간 지원) 테스트 환경 $ cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) repository 설정(저장소 추가) vim /etc/yum.repos.d/MariaDB.repo # MariaDB 10.6 CentOS repository list - created 2022-12-09 11:34 UTC # https://mariadb.org/download/ [mariadb] name = MariaDB baseurl = https://mirror.rackspace.com/mariadb/yum/10.6/centos7-amd64 gpgkey=https://mirror... 더보기 MySQL "[error] Cannot find MySQL header files under yes" 오류를 해결하는 방법 MySQL "[error] Cannot find MySQL header files under yes" 오류를 해결하는 방법 [error] Cannot find MySQL header files under yes configure: error: Cannot find MySQL header files under yes. Note that the MySQL client library is not bundled anymore! 해당 오류 메시지는 MySQL의 헤더 파일들을 찾을 수 없다는 것을 나타내며, 일반적으로 C/C++ 프로그램이 MySQL과 관련된 코드를 컴파일하려고 할 때 발생합니다. 이 문제를 해결하기 위해서는 MySQL의 개발 패키지 또는 개발 헤더 파일을 설치해야 합니다. CentOS/RHEL/F.. 더보기 [mysql] 원격서버(clinet)에 설치되어 있는 MySQL Server로 접속하기 원격서버(clinet)에 설치되어 있는 MySQL Server로 접속하기 [Client 192.168.0.100] [root@kingdom bin]# ./mysql -u scbyun -p first -h 192.168.0.50 -P 3306 Enter password: ERROR 1130 (HY000): Host '192.168.0.100' is not allowed to connect to this MySQL server [root@kingdom bin]# [MySQL Server 192.168.0.50] - 특정 IP(192.168.0.100)만 OPEN mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP ON first.* TO 'scbyun'@1.. 더보기 영어 발음기호 표 - 소통영어 영어 발음기호 표 - 소통영어 참고URL- (MP3 제공) 누구나 원어민발음 할 수 있는 영어발음기호표 읽는 법 더보기 우분투 CLI(Command Line Interface) 환경에서 네트워크 설정(고정 IP 할당) 우분투 CLI(Command Line Interface) 환경에서 네트워크 설정(고정 IP 할당) 테스트 환경 $ lsb_release -d Description: Ubuntu 20.04 LTS $ getconf LONG_BIT 64 고정 IP 설정 ip addr 명령으로 네트워크 인터페이스 이름 확인 일반적으로 eth0, eth1, wlan0 등과 같은 인터페이스 이름이 사용됩니다. ip addr $ ip addr 1: lo: mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 ... 2: ens33: mtu 1500 qdisc fq_codel state UP group default qlen 1000 ... 00-installer-config.. 더보기 ifconfig 명령어 ifconfig 명령어 ifconfig 명령어는 네트워크 인터페이스의 정보를 확인하고 구성하는 데 사용되는 유닉스 및 Linux 명령어입니다. 네트워크 인터페이스의 IP 주소, 넷마스크, 브로드캐스트 주소, MAC 주소 등을 표시할 수 있습니다. net-tools 패키지 설치 sudo yum install -y net-tools 기본 구문 ifconfig [옵션] [인터페이스] -a 또는 --all: 모든 인터페이스 정보를 표시합니다. 인터페이스: 지정된 네트워크 인터페이스에 대한 정보를 표시합니다. 예를 들어, eth0, wlan0과 같은 인터페이스명을 사용할 수 있습니다. 인터페이스명을 지정하지 않으면 모든 인터페이스의 정보가 표시됩니다. 주요 옵션 up: 지정된 네트워크 인터페이스를 활성화합니다. .. 더보기 [url] CentOS 6 netinstall URL CentOS 6 netinstall URL32 bithttp://mirror.centos.org/centos/6/os/i386/http://mirrors.kernel.org/centos/6.0/os/i386/ 64 bithttp://mirror.centos.org/centos/6/os/x86_64/http://centos.mirror.cdnetworks.com/6.0/os/x86_64/ 더보기 MySQL에서 특정 테이블을 덤프(백업)하는 방법 MySQL에서 특정 테이블을 덤프(백업)하는 방법 mysqldump 유틸리티를 사용하는 것이 일반적입니다. mysqldump를 사용하면 데이터베이스의 전체 구조와 데이터를 백업할 수 있습니다. 특정 테이블만 덤프하려면 --tables 옵션을 사용하면 됩니다. 다음은 특정 테이블을 덤프하는 mysqldump 명령어의 예시입니다. mysqldump -u [username] -p [database_name] [table_name] > dump.sql 여기서 다음 값을 지정해야 합니다. [username]: MySQL 데이터베이스에 접속하는 사용자 이름 [database_name]: 덤프할 데이터베이스 이름 [table_name]: 덤프할 테이블 이름 dump.sql: 덤프 파일의 경로 및 파일 이름 예를 들어.. 더보기 이전 1 ··· 175 176 177 178 179 180 181 ··· 186 다음