리눅스 썸네일형 리스트형 MongoDB 5.0+에는 AVX를 지원하는 CPU가 필요함 MongoDB 5.0+에는 AVX를 지원하는 CPU가 필요함WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!mongos1 | WARNING: MongoDB 5.0+ requires a CPU with AVX support, and your current system does not appear to have that!mongos1 | see https://jira.mongodb.org/browse/SERVER-54407mongos1 | see also https://www.mongodb.com/community/forums/t/mongodb-5-0-.. 더보기 [리눅스] 몽고디비 클러스터 구성하기(mongodb shard cluster) 몽고디비 클러스터 구성하기(mongodb shard cluster) 테스트 환경 $ cat /etc/os-release NAME="Ubuntu" VERSION="20.04.3 LTS (Focal Fossa)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 20.04.3 LTS" VERSION_ID="20.04" HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-po.. 더보기 레디스 서버 설정(redis backup) 레디스 서버 설정(redis backup) 레디스 - AOF 오류 Asynchronous AOF fsync is taking too long (disk is busy?). Writing the AOF buffer without waiting for fsync to complete, this may slow down Redis. appendonly yes -> AOF 파일 읽음(AOF 백업) appendonly no -> RDB 파일 읽음(RDB 백업) info persistence 127.0.0.1:6379> info persistence # Persistence loading:0 async_loading:0 current_cow_peak:0 current_cow_size:0 current_cow_siz.. 더보기 HTML 리다이렉션 HTML 리다이렉션 content http-equiv 또는 name 특성의 값을 담습니다. http-equiv 프래그마 지시문을 정의합니다. 특성의 이름(http-equiv(alent))에서 알 수 있듯이, 가능한 값은 특정 HTTP 헤더입니다. content-security-policy 현재 페이지의 콘텐츠 정책 (en-US)을 정의할 수 있습니다. 대부분의 콘텐츠 정책은 허용하는 서버 출처와 스크립트 엔드포인트를 지정해 사이트 간 스크립트 공격 방어에 도움을 줍니다. content-type 지정할 경우, content 특성의 값은 반드시 "text/html; charset=utf-8"이어야 합니다. 참고: text/html MIME 유형으로 제공하는 문서에서만 사용할 수 있으며, XML MIME 유형.. 더보기 [리눅스] Anaconda 설치(conda 명령) Anaconda 설치(conda 명령) anaconda 스크립트 다운로드 및 설치 anaconda 스크립트 다운로드 사이트 : https://repo.anaconda.com/archive/ apt 리포지토리 업데이트 apt-get update wget 패키지 설치 apt-get install -y wget Anaconda3.sh 스크립트 다운로드 wget -q https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh 권한 설정 chmod +x Anaconda3-2022.10-Linux-x86_64.sh sha256sum 파일 유효성 검증 sha256sum Anaconda3-2022.10-Linux-x86_64.sh $ sha256sum An.. 더보기 우분투에서 Ruby 2를 설치하는 방법 우분투에서 Ruby 2를 설치하는 방법 테스트 환경 $ lsb_release -a No LSB modules are available. Distributor ID:Ubuntu Description:Ubuntu 22.04.1 LTS Release:22.04 Codename:jammy 필수 패키지 설치 sudo apt-get update sudo apt-get install -y git curl libssl-dev libreadline-dev zlib1g-dev rbenv 설치 git clone https://github.com/rbenv/rbenv.git ~/.rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc echo 'eval "$(rbenv.. 더보기 우분투에서 Samba 서버를 설정하고 구성하는 방법 우분투에서 Samba 서버를 설정하고 구성하는 방법테스트 환경$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 22.04.1 LTSRelease: 22.04Codename: jammy구성도Samba 서버 설치Samba 설치sudo apt-get updatesudo apt-get install -y sambaSamba 버전 정보 확인samba --version$ samba --versionVersion 4.15.9-UbuntuSamba 설정 파일 확인Samba의 주 설정 파일은 /etc/samba/smb.conf입니다.sudo cat /etc/samba/smb.conf더보기.. 더보기 웹 서버에서 리다이렉션(redirect) 설정하는 방법 Apache와 Nginx 웹 서버에서 리다이렉션(redirect) 설정하는 방법 Apache 웹 서버에서 리다이렉션 설정 rewrite 모듈 활성화 httpd.conf 편집 vim httpd.conf LoadModule rewrite_module modules/mod_rewrite.so mod_rewrite.so 모듈 확인 httpd -M | egrep -i rewrite $ httpd -M | egrep -i rewrite rewrite_module (shared) http에서 https로 리다이렉트 설정 ... RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L] #RewriteRule .. 더보기 이전 1 ··· 60 61 62 63 64 65 66 ··· 164 다음