본문 바로가기

Backup Solution & IT Study56

[Linux]Cent OS 7 설치 방법 Cent OS 7 설치 에서 Kakao yum 설정까지 - Test 환경 - VMware esxi 6.0 - Cent OS 2009 ( Cent OS 7.9 ) Server 1. Cent OS Download 2. Cent OS Install 진행 3. 언어 선택 영어로 하고 한글 추가 권장 ( 일부 외산 솔루션의 경우 한글 에서 설치시 Log 깨짐이 발생함 ) 3. 설정 빨간색 부분에서 한국어 추가 그 외 설정 확인 4. Network 설정 A. 빨간색 Box 클릭 B. Host name 작성 후 Apply C. IP Configure D. IP 설정 E. Ethernet On 5. Begin Installation 6. root 패스워드 설정 & User 생성 7. 설치 완료 Reboot 8. 사용 .. 2021. 3. 10.
[Linux]CentOS yum kakao 방법 vi /etc/yum.repos.d/CentOS-Base.repo [base] name=CentOS-$releasever - Base baseurl=http://mirror.kakao.com/centos/$releasever/os/$basearch/ gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 #released updates [updates] name=CentOS-$releasever - Updates baseurl=http://mirror.kakao.com/centos/$releasever/updates/$basearch gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RP.. 2021. 3. 5.
[Linux]Linux watch 명령어 watch 명령어 사용법 ex ) 5초 단위로 df -h 명령어 확인 watch -n 5 "df -h" ex ) 10초 단위로 top 확인 watch -n 10 "top" 2021. 3. 5.
[DB]CentOS UnixODBC 설정 방법 수동설치 1. http://www.unixodbc.org/ odbc 설치 2. tar xzvf unixODBC-2.3.7.tar.gz 3. cd unixODBC-2.3.7/ 4. ./configure 5. make 6. make install 7. isql 자동 ===선택=== #RedHat Enterprise Server 6 curl https://packages.microsoft.com/config/rhel/6/prod.repo > /etc/yum.repos.d/mssql-release.repo #RedHat Enterprise Server 7 curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/mssql-rel.. 2021. 3. 5.