분류 전체보기(88)
-
[tibero] TBR-7075 해결 방법.
TIBERO 서버의 생성된 계정에 CONNECT(외부 접속), RESOURCE(테이블 생성) ... 등 권한을 부여할 때, 하단과 같은 에러가 발생. SQL> GRANT CONNECT, RESOURCE TO anyt410_tibero7_daishin; TBR-7075: Specified role 'CONNECT' was not found. TBR-7075 해결 방법. 티베로 서버를 노말모드로 기동한다. $TB_HOME/scripts 경로에서 system.sh(role, system user, view, package … 생성을 위한 SQL 파일)을 실행한다. system.sh와 관련된 옵션은 링크를 참고한다. [$TB_HOME/scripts] $ ./system.sh Enter SYS password: ..
2023.09.21 -
[Linux] AWS ec2 인스턴스에 ssh로 접속하는 방법.
*필자의 AWS instance의 OS 정보. # hostnamectl … Operating System: Ubuntu 22.04.2 LTS Kernel: Linux 5.19.0-1025-aws … *aws ec2 대시보드에 접속하여, 인스턴스 상태를 실행으로 변경. *키 페어 파일 확인. 인스턴스에 최초로 접속할 때는 "시작 시 할당된 키 페어" 파일을 사용해서, 접속이 가능함. 인스턴스를 생성할 때, 로컬 pc에 키 페어 파일(키 페어 파일 이름.pem)을 다운로드할 수 있음. *ssh 접속을 위해, 22번 포트의 인바운드 규칙이 작성된 보안그룹을 등록. *인스턴스에 보안그룹을 등록. *인스턴스의 public IP를 확인. *외부(ssh client tool)에서 aws ec2 instance에 키페..
2023.09.07 -
[oracle] ORA-01034, ORA-27101 해결 방법.
sqlplus로 오라클 접속 시, ORA-01034 & ORA-27101 에러가 발생하는 것을 확인. … $ sqlplus system/passwd SQL*Plus: Release 19.0.0.0.0 - Production on Fri Sep 1 07:54:51 2023 Version 19.3.0.0.0 Copyright (c) 1982, 2019, Oracle. All rights reserved. ERROR: ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist Linux-x86_64 Error: 2: No such file or directory Additional information: 4376 Additiona..
2023.09.01 -
[git] git 개념 정리.
Git ?컴퓨터 파일의 변경사항을 추적하고 사용자들 간에 작업을 조율하기 위한 스냅샷 스트림 기반의 분산 버전 관리 시스템이다.Git 작업 환경의 종류.CLI : 리눅스 베이스의 터미널에서 Git 작업을 수행.(Git bash ...)GUI : GUI 도구에서 Git 작업을 수행. (Sourcetree, GitKraken, TortoiseGit …)스냅샷 스트림 ?Git은 특정 시점의 저장소의 파일 시스템 전체 상태를 스냅샷으로 저장(Commit)한다.Git은 전체 상태를 스냅샷으로 저장함에도 사이즈가 작고 속도가 빠르다.마지막 스냅샷만 통째로 저장한다.파일이 달라지지 않았으면 파일을 새로 저장하지 않는다.즉, 이전 상태의 파일에 대한 링크만 저장하기 때문에 사이즈가 작고 속도가 빠르다.분산 버전 관리 ..
2023.08.01 -
[mysql] 실행한 쿼리를 로깅/조회하는 방법.('general_log'의 Value를 On으로 설정하여, 실행한 쿼리를 'general_log_file'의 Value에 로깅하도록 설정.)
1.MySQL 서버 노드에서 root 계정으로 DB에 접속. # mysql -u root -p $MySQL_DB_NAME Enter password: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 337 Server version: 5.7.13-enterprise-commercial-advanced MySQL Enterprise Server - Advanced Editio..
2023.06.13 -
[git] push / pull할 때, "fatal: refusing to merge unrelated histories" 에러 해결 방법.
remote repository의 데이터를 local repository로 pull할 때, "fatal: refusing to merge unrelated histories" 에러 발생하는 것을 확인. tmax@DESKTOP-TK7E03C MINGW64 /d/localRepository (master) $ git pull origin main warning: redirecting to https://192.168.123.123/root/anylink_t.git/ From https://192.168.123.123/root/anylink_t * branch main -> FETCH_HEAD fatal: refusing to merge unrelated histories 발생 원인. 로컬 프로젝트와 원격 저..
2023.02.09