일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- node
- 데이터베이스
- 설정
- hamonikr
- DATABASE
- 하모니카
- 스크립트
- javascript
- 설치
- Atlassian
- install
- ubuntu
- 파이썬
- Linux
- 3.0
- 아틀라시안
- JS
- 리눅스
- script
- 우분투
- java
- DB
- python
- 자바
- Windows
- 자바스크립트
- postgres
- 노드
- PostgreSQL
- 윈도우
- Today
- Total
목록DATABASE (12)
LukeHan 의 잡다한 기술 블로그
DB 생성 CREATE DATABASES 데이터베이스명 DB 삭제 DROP DATABASE 데이터베이스명 DB 소유자 변경 ALTER DATABASE 데이터베이스명 OWNER TO 계정명 백업 pg_dump -h 호스트 -p 포트 -U 유저 -d DB이름 > 저장파일이름 복원 psql -h 호스트 -p 포트 -U 유저 DB 이름 < 복원파일이름 데이터베이스 목록조회 \l 다른 데이터베이스 접속 \c 데이터베이스명 모든 테이블조회 \dt 모든 사용자조회 \du 사용할 데이터베이스 변경 \c databaseName
postgresql 접속 # 사용자 접속 psql -h localhost -d databaseName -U userName # root 접속 psql -h localhost -U root database -U : username -d : database name -W : password 사용 -h: 연결할 호스트. 제외할 경우 "peer authentication failed" 에러 발생 가능 root 비밀번호 변경 # root 접속 sudo -u postgres psql template1 # root 비밀번호 변경 ALTER USER postgres with encrypted password 'P@ssw0rd'; 계정 생성 CREATE ROLE 계정명; 계정 삭제 DROP ROLE 계정명; 계정 권한 ..
확인1 postgresql 설치 여부를 확인합니다 aptitude show postgresql | grep State State : not installed 설치 apt-get install postgresql 확인2 dpkg -l | grep postgres cat /etc/passwd | grep postgres /etc/init.d/postgresql status netstat -tnlp | grep postgres 패스워드 설정 sudo -u postgres psql template1 ALTER USER postgres with encrypted password 'p@ssw0rd';
외부 접속 허용 확인 - local 에서만 접속 가능한 상태 mysql> SELECT Host,User,authentication_string FROM mysql.user; +----------------+------------------+-------------------------------------------+ | Host | User | authentication_string | +----------------+------------------+-------------------------------------------+ | localhost | root | *8024A6913C57E024BDFC6E813A57DFB924E6803A | | 127.0.0.1 | root | *8024A6913C..
mysql 접속 mysql -u [user] -p 백업 DB별로 백업 mysqldump -u root -p DB명 > 파일명.sql 전체 백업 mysqldump -u root -p –all-databases > 파일명.sql 캐릭터셋 옵션을 이용하여 백업 mysqldump -u root -p –default-character-set=euckr DB명 > 파일명.sql (euckr, utf8 등이 있음) 특정 테이블만 덤프 mysqldump -u root -p DB명 테이블명 > 파일명.sql mysqldump -u root -p -B DB명 –tables 테이블명1 테이블명2 테이블명3 > 파일명.sql 테이블 구조만 백업 mysqldump -u root -p –no-data DB명 > 파일명.sql X..
확인 mongDB를 설치 유무를 확인합니다. // 서버 mongod --version // 클라이언트 mongo --version 설치 mongoDB 설치를 진행합니다. 아래의 명령어를 입력하여 설치 진행 합니다. // 서버 apt-get install mongodb-server // 클라이언트 apt-get install mongodb-clients 확인 설치 완료후 아래의 명령어를 통해 설치된 mongoDB의 버전을 확인합니다. // 서버 mongod --version // 클라이언트 mongo --version