전체 글
-
[CentOS] SNMP 설치하기Linux 2025. 3. 22. 21:45
SNMP 패키지 리스트 확인 yum list | grep snmp SNMP 패키지 설치 yum install -y net-snmp.x86_6 설정 파일 구성 sec.name : Username source : SNMP 허용 IPcomunity : comunity name# vi /etc/snmp/snmpd.conf##### First, map the community name "public" into a "security name"# sec.name source communitycom2sec notConfigUser default publiccom2sec notConfigUser 10.1.33.4/24 public 서비스 시작 및 부팅 시 자동 ..
-
[ERROR] CentOS7에서 openssl-devel 설치 시 충돌Linux 2025. 3. 22. 21:41
현상 CentOS7에서 openssl-devel 설치 시 충돌 skip 시 skip되는 목록들 원인 yum이 openssl 최신 버전을 발견하고 충돌 해결한 방법oepenssl-devel이 아닌 높은 버전의 openssl11, openssl11-devel 설치 repo 구성시 (openssl11은 epel-release 저장소 추가해야 사용 가능) # epel-release repo 추가yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrepotrack openssl11 openssl11-devel
-
[폐쇄망] Git 버전 업그레이드Linux 2025. 3. 22. 21:36
설치 파일 준비https://github.com/git/git/tags GitHub - git/git: Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to theGit Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documen...github.com 필요 패키지 레포 생성 (외부..
-
Git 버전 업그레이드Linux 2025. 3. 22. 21:29
Git 버전별 소스 확인https://github.com/git/git/tags GitHub - git/git: Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to theGit Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documen...github.com 설치 파일 다운로드 # ..
-
SQL Server 2019 설치 (Windows)Database 2025. 3. 22. 21:24
SQL Server 설치설치 파일 다운로드SQL2019-SSEI-Evalhttps://www.microsoft.com/ko-kr/evalcenter/download-sql-server-2019 SQL Server 2019 | Microsoft Evaluation CenterSQL Server 2019는 이제 새로운 규정 준수 도구와 최신 하드웨어에서 향상된 성능 및 Windows, Linux, 컨테이너에서의 고가용성 덕분에 모든 데이터 워크로드에 대한 보안, 가용성, 성능의 경계를 지속적www.microsoft.com 설치 유형 선택 언어 및 설치 경로 지정 설치 옵션 무료 버전 지정 or 제품 키 입력 사용조건 동의 업데이트 확인 (선택 사항) 설치 규칙 확인 기능 선택 인스턴스 ID ..
-
[MySQL] 관리자 비밀번호 재설정 (Windows)Database 2025. 3. 22. 21:15
SQL Server 서비스 중지 속성에서 시작 매개 변수 추가-m : minimal configuration 모드 SQL Server 시작 CMD 관리자 모드로 실행 sqlcmd 접속sqlcmd -S localhost -E 관리자 계정 (sa) 비밀번호 변경 ALTER LOGIN sa WITH PASSWORD = '';GO SQL Server 중지 → 시작 매개 변수 제거 → SQL Server 시작로그인sqlcmd -S localhost -U sa암호:
-
[ERROR][MySQL] You do not have the SUPER privilege and binary logging is enabledDatabase 2025. 3. 22. 21:12
현상Database Setup 실패! 원인MySQL에서 바이너리 로그가 활성화되어 있고, 설정된 MySQL 계정에 SUPER 권한이 없는 경우 발생 해결한 방법설정 파일 (/etc/my.cnf.d/mysql-server.cnf)에 설정 추가→ SUPER 권한이 없어도 함수 생성/수정 시 바이너리 로그에 기록되며, 복제 시스템에서 문제가 발생하지 않도록함[mysqld]log_bin_trust_function_creators = 1
-
[ERROR][MySQL] Your database use 'READ-COMMITTED' as the deafault isolation levelDatabase 2025. 3. 22. 21:09
현상데이터 베이스 Setup 후 READ-COMMITTED 에러 방생! 원인데이터베이스의 기본 트랜잭션 격리 수준이 READ-COMMITTED가 아니어서 발생 해결한 방법설정 파일 (/etc/my.cnf.d/mysql-server.cnf)에 MySQL의 기본 트랜잭션 격리 수준을 READ-COMMITTED로 설정[mysqld]transaction_isolation = READ-COMMITTED