목록Linux (22)
IT Log
CentOS 7 MySQL 5.7 Install : https://newly0513.tistory.com/153 Install MySQL 1. Download Repository 2가지 방법 중 선택하여 Download 합니다. # repo wget http://repo.mysql.com/mysql80-community-release-el7-3.noarch.rpm # dev wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm 2. Install Repository Repository 설치합니다. rpm -ivh mysql80-community-release-el7-3.noarch.rpm 3. Repository Check D..
사용법 unzip [-Z] [-cflptTuvz[abjnoqsCDKLMUVWX$/:^]] file[.zip] [file(s) ...] [-x xfile(s) ...] [-d exdir] ZIP 구조 예시 zip파일 이름은 archive.zip이라고 가정합니다. First (Folder) One (File) Two (File) Second (Folder) Three (File) Four (File) 사용 예시 현재 위치는 /라고 가정합니다. 현재 폴더에 압축해제 # 예시 : unzip [ZIP파일] unzip archive.zip 또는 unzip archive /First (Folder) /First/One /First/Two /First/Second (Folder) /First/Second/Three /..
CentOS 7 PostgreSQL 원격접속 : https://newly0513.tistory.com/164 PostgreSQL Yum Repository 1. Install the repository RPM yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2. Install PostgreSQL # PostgreSQL13 yum install -y postgresql13-server # PostgreSQL12 yum install -y postgresql12-server # PostgreSQL11 yum install -y postgresql11..
CentOS 7 MySQL 8.0 Install : https://newly0513.tistory.com/161 Install MySQL 1. Download Repository 2가지 방법 중 선택하여 Download 합니다. # repo wget http://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm # dev wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 2. Install Repository Repository 설치합니다. rpm -ivh mysql57-community-release-el7-11.noarch.rpm 3. Repository Chec..
vi 텍스트 편집기 Linux에서 가장 많이 사용되는 텍스트 편집기로, 파일을 생성하거나 편집할 때 사용합니다. 사용법 : vi 파일명 이미 있는 파일명일 경우 해당 파일에 작성된 텍스트를 보여주고, 새로운 파일명의 경우 빈 화면이 출력된다. 모드 입력모드 : 직접 텍스트를 입력하여 작성할 수 있는 상태 명령모드 : 명령을 이용하여, 텍스트를 복사/붙여넣기/삭제 등 편집할 수 있는 상태 각 상태는 편집하는 파일 좌측하단에 'INSERT' 출력 여부로 구분할 수 있습니다. 모드 변경 입력모드와 명령모드를 변경할 수 있는 명령들 입니다. 명령모드 → 입력모드 설명 i 커서가 있는 위치부터 입력 I 커서가 있는 줄의 맨 앞에서부터 입력 a 커서 위치의 한 칸 오른쪽부터 입력 A 커서가 있는 줄의 마지막 텍스트..
준비사항 VMware Workstation Player or VMware Workstation Pro Download CentOS Linux ISO images https://wiki.centos.org/Download에 접속하여 CentOS Linux Version 7을 다운받을 mirror사이트를 클릭한다. 해당 사이트 중 하나를 선택하여 클릭한다. CentOS-7-x86_64-DVD-2003.iso 파일을 클릭하여 Download Create VM VMware Workstation Player를 실행시킨 후, Create a New Virtual Machine을 클릭한다. Installer disc images file을 Browse를 클릭하여 방금 다운받았던 CentOS-7-x86_64-DVD-2..