본문 바로가기

DB8

[MongoDB] DB, Data 기본 CRUD 명령어 정리 mongosh use admin show dbs > 인증오류 DB 생성 mongosh admin -u "USERNAME" -p "PW" show dbs use test_db show dbs > test_db가 안보인다 데이터 추가 db.collection.insert() db.collection.insertOne({}) db.collection.insertMany([{},{}.....]) db.collection.insert({}) db > DB 이름 출력 show dbs 데이터 입력(Update) db.user.insert({}) 데이터 읽기 db.collection.find() DB 삭제(Delete) db.dropDatabase() 2022. 11. 26.
[ERROR] Mysql 설치 후 로그인 안됨 ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 0. 실행 환경 AWS t2.xlarge OS : Redhat 8.6 MySQL Version : 8.0.31 1. ERROR mysql -u root -p 설치 후 비밀번호는 그냥 엔터치라고 나오는데 오류가 난다. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 2.해결 방법 2-1) 임시 비밀번호 찾기 grep 'temporary password' /var/log/mysqld.log 로그에서 'temporary password' 를 찾아서 임시 비밀번호를 입력하면 된다. 2-2) 비밀번호 변경 ALTER USER 'root'@'localhost' IDENTIFIED BY 'MYPASSWORD';~~텍스.. 2022. 11. 20.
[MySQL] Redhat8에 MySQL 설치하기 0. 실행 환경 AWS t2.xlarge OS : Redhat 8.6 MySQL Version : 8.0.31 1. 설치하기 1) MySQL 다운로드 # 다운로드 wget https://repo.mysql.com//mysql80-community-release-el8-4.noarch.rpm # YUM 레포지토리에 MySQL 추가 sudo yum install mysql80-community-release-el8-{version-number}.noarch.rpm # MySQL 설치 sudo yum install mysql-community-server MySQL 실행 # MySQL 실행 (root 아니고, sudo 없이 명령어 실행하면 OS root 비밀번호 입력해야함) sudo systemctl star.. 2022. 11. 20.