일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GitLab
- macos
- Proxy
- application security
- proxycfg
- G-suite
- ELASTIC
- PlayBook
- Elasticsearch
- 로그인불가
- x-pack
- docker
- pfsense
- Kibana server is not ready yet
- 보안양파
- 한글가이드
- endpoint security
- centos 8
- XCP-ng
- xe guest utilities
- elastic stack
- ssh key 배포
- miniconda
- ansible
- freebsd
- bash
- hardening
- Windows
- Kibana
- Today
- Total
목록전체 글 (677)
선 밖에 선 자유인
AD 그룹 password never expires 설정 powershell> Import-Module ActiveDirectory powershell> Get-ADGroupMember -Identity "" | Set-ADUser -PasswordNeverExpires:$True
https://martin.ankerl.com/2016/11/04/linux-bash-prompt/ Linux Bash Prompt Elapsed time, errorcode ✘ or ✔, git & svn status, ... martin.ankerl.com function prompt_timer_start { PROMPT_TIMER=${PROMPT_TIMER:-`date +%s.%3N`} echo -ne "\033]0;${@}\007" } function prompt_svn_stats() { command -v svn >/dev/null if [ $? != 0 ]; then return fi local WCROOT=`svn info --show-item wc-root 2>/dev/null` if [ ..
https://docs.netgate.com/pfsense/en/latest/nat/port-forwards.html
- 관리자 권한으로 cmd 실행 cmd> netsh winhttp set proxy proxy-server="http=:3128;https=:3128" bypass-list="localhost;" - proxy 설정 제거 cmd> netsh winhttp reset proxy - ansible playbook - name: Windows Proxy 설정 community.windows.win_http_proxy: proxy: http=:;https=: bypass: locahost;server1,server2,
docs.gitlab.com/ee/user/application_security/
사전 작업 1. VMHypervisior 장비가 외부와 인터넷 통신이 가능해야 함 2. 유지보수 모드로 설정 3. 업데이트 중 아래와 같은 에러가 발생할 수 있으므로 스왑을 데이터 스토어로 변경 [InstallationError] [Errno 28] No space left on device vibs = VMware_locker_tools-light_10.3.5.10430147-12986307 Please refer to the log file for more details. 업데이트 파일을 베이스 시스템으로 다운로드 하려고 하기 때문에 device 공간이 없다는 메시지가 나오며 오류 발생 스왑을 시스템 영역이 아닌 데이터스토어로 변경하면 해결됨 - 관리 -> 시스템 -> 스왑 -> 데이터스토어 항목을 ..
--- - name: Install msi package hosts: windows user: vagrant become: yes tasks: - name: Download msi installer win_get_url: url: 'http://' dest: C:\Users\user\Downloads\filename - name: file copy win_copy: source: C:\Users\user1\Downloads\sourcefile dest: C:\Users\user2\Downloads\destfile - name: Install msi win_package: path: C:\Users\user2\Downloads\file state: present