목록리눅스 (8)
삽더하기실수
1. SSL 인증서를 구입하거나 자체 서명 인증서를 생성합니다 2. Puma 구성 파일을 엽니다. 일반적으로 config/puma.rb 파일에 있습니다.cd /test/config/ 3. SSL 인증서와 개인 키 파일의 경로를 설정합니다.# vi puma.rbssl_bind '0.0.0.0', '443', {key: '/root/test/ssl20230425/[키값]',cert: '/root/test/ssl20230425/[cert값]'} 4.SSL 구매한 인증서 파일 4개를 경로에 옮겨 놓습니다(ex. key,cert,chain,root)mkdir -p /test/ssl 5. Ruby on rails 재구동bundle exec puma -C config/puma.rb 혹은 bundle exec pum..
minlen=8 > 최소 8개의 크레딧을 필요로 한다. ocredit=2 > 특수문자 한개당 2개의 크리딧으로 인정한다 즉 특수문자 4개만 지정해도 비밀번호가 가능하다. ocredit=-1 > 특수문자가 최소한 한개는 필요하다는 의미이다.
Shift 연타 > 복구 모드 진입 > Root > mount -o remount,rw / mount -a 명령어 실행후 작업
Shift 연타 > 복구 모드 진입 > Root > mount -o remount,rw / mount -a 명령어 실행후 작업
# CLI모드 설정 systemctl set-default multi-user.target #Graphic 설 systemctl set-default graphical.target
# CLI모드 설정 systemctl set-default multi-user.target #Graphic 설 systemctl set-default graphical.target
#환경 ubuntu 20.04 vi /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT 앞에 #을 붙여 주석처리 GRUB_CMDLINE_LINUX 원봉는 앞에 #을 붙어 주석처리하고 새로 GRUB_CMDLINE_LINUX ="text"를 입력한다 GRUB_TERMINAL=console 앞에 # 주석 제거