카페검색 본문
카페글 본문
-
7 password rules to live by in 2024, according to security experts 2024.07.30해당카페글 미리보기
as part of a data breach. That said, if your IT department or an online service insists on forcing a password change, you should do as they say. Just let your password manager create the longest, strongest password that meets their...
-
02/27 정리(cmd 명령어) 2025.02.27해당카페글 미리보기
예시) show + names; => name의 목록 출력 => show databases; use + name; => name을 선택 => use mySQL; create user 'name'@'host' identified by 'password'; => 사용자 추가( % = 웹을 통한 권한, localhost = 내 컴퓨터 권한 ) => create user 'atom...
-
Re: 오늘의 마지막 문제. password file, parameter file, index tablespace ,... 2023.10.16해당카페글 미리보기
1. parameter file을 백업한 후에 parameter file과 password file을 삭제합니다. SYS @ orcl2 > create pfile from spfile; SYS @ orcl2 > exit; [orcl2:~]$ cd $ORACLE_HOME/dbs [orcl2:dbs]$ ls -l initorcl2.ora --> pfile은 만들 때마다 새로 만들어...
-
TodoApp(auth.py) - JWT 설정 2024.09.16해당카페글 미리보기
name, last_name=create_user_request.last_name, role=create_user_request.role, hashed_password=bcrypt_context.hash( create_user_request.password ), # 비밀번호를 해시하여 저장 is_active=True, ) # 사용자 생성 db.add(create_user_model) db...
-
postgres 이중화구성 2024.05.13해당카페글 미리보기
많이 사용되는 복제 방식 streaming replication 설정1. replication 용 user 생성 (master)postgres=# create user repl replication password 'qhdks123'; CREATE ROLE postgres=# \du List of roles Role name | Attributes | Member of...
-
MZ세대 트렌드 분석 (추가예정) 2025.03.28해당카페글 미리보기
client.create_collection( name = collection_name, # 컬렉션 이름 embedding_function = basic_ef, # 임베딩 함수 metadata ={"descrtion" : "MZ세대 트렌드 데이터"} # 메타데이터 ) # 컬렉션에 데이터 저장 ids = [] documents = [] metadatas...
-
Create Oracle user with same privileges of other user on same tablespace 2014.11.13해당카페글 미리보기
user to model new user " accept newname prompt "Enter new user Name " accept pw prompt "Enter Users Password " spool users.sql select 'create user &&newname identified by &&pw'|| ' default tablespace '||default_tablespace|| ' temporary...
-
WPSD ---pi-star 대체 프로그램 2024.02.18해당카페글 미리보기
images. Important: If using Raspberry Pi Imager, do not use the “advanced options” to create a user, change the password, etc.! The “pi-star” user and password is already on the disk image, and it is required for many of the programs...
-
인터넷.이메일 2025.03.26해당카페글 미리보기
and password ID와 비밀번호를 입력하다 bookmark a website (page) 즐겨찾기하다 bookmark 즐겨찾기 shop online 인터넷 쇼핑을 하다 온라인 쇼핑을 하다Internet(online)shopping 인터넷(온라인) 쇼핑 click 클릭하다 search (look for) information on...
-
AWS EC2 프로젝트 배포 무작정 따라하기 2023.11.04해당카페글 미리보기
있긴 하다. 건너뛰었지만 결과적으로 아무 문제도 없음. 8. 외부 접속을 위한 user 생성 mysql> CREATE USER 'username'@'%' IDENTIFIED BY 'password'; 9. 생성한 계정에 권한 부여 mysql> GRANT ALL PRIVILEGES ON *.* TO 'username'@'%'; 10. 권한...