Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 한글가이드
- endpoint security
- centos 8
- Windows
- Kibana server is not ready yet
- x-pack
- XCP-ng
- hardening
- pfsense
- miniconda
- bash
- docker
- GitLab
- 로그인불가
- xe guest utilities
- proxycfg
- ssh key 배포
- PlayBook
- application security
- ELASTIC
- Elasticsearch
- macos
- 보안양파
- Kibana
- ansible
- elastic stack
- freebsd
- G-suite
- Proxy
Archives
- Today
- Total
선 밖에 선 자유인
VMware ESXi 사용자 관리 (CLI) 본문
1. 퍼미션 리스트
esxcli system permission list
----------------------------------
dcui false Admin
root false Admin
vpxuser false Admin
test1 false ReadOnly
2. 퍼미션 설정
excli system permission set --id test1 -r ReadOnly
3. 퍼미션 삭제
esxcli permission remove --id test1
4. 사용자 추가,설정,리스트,삭제 명령어
esxcli system account add
esxcli system account set
esxcli system account list
esxcli system account remove
ex) esxcli system account add -d <설명>-i <ID> -p "<Password>" -c "<Password>"
esxcli system permission set --id <ID> -r ReadOnly
vim-cmd vimsvc/auth/entity_permission_add vim.VirtualMachine:<VM_ID> <ID> false <VM_Role> true
5. 도메인 사용자 추가
esxcli system permission set --id '<Domina.com>\<ID>' -r ReadOnly
Comments