본문 바로가기

로그 저장소 :)

Exchange 연결 끊어진 사서함 정리하는 방법 Exchange 연결 끊어진 사서함 삭제 예시> 1. 사용중지된 계정의 끊어진 사서함 삭제 Get-MailboxStatistics -Database "Mailbox이름" | Where-Object {$_.DisconnectReason -eq “Disabled”} | ForEach {Remove-StoreMailbox -Database $_.database -identity $_.mailboxguid -MailboxState Disabled -confirm:$false} 2. 삭제된 계정의 끊어진 사서함 삭제 Get-MailboxStatistics -Database "Mailbox이름" | Where-Object {$_.DisconnectReason -eq “Softdeleted”} | ForEach {R.. 더보기
Exchange 점검사항 Exchange Server 를 운영한다면 다음과 같은 사항은 매일 점검해야 한다. 점검 방법은 직접 로그온해 체크하는 방법과, 스트립크를 이용해서 점검하는등 재주것 하면된다.. 1. 백업이벤트 검사 -> Exchage Information Sotre 백업은 Ntbackup툴을 이용해서 백업합니다. 백업이 정상적으로 잘되고 있는지 체크해야 합니다. 정기적으로 백업서버에 resotre를 해서 백업이 정상적으로 된건지와, 복원에 문제가 없는지 체크해야 합니다. 2. 이벤트로그 검사 -> 이벤트로그는 시스템 자체 이벤트로그를 점검하고, AD 및 Exchange관련 로그를 점검해야 합니다. 3. 파티션 검사 -> 해당 파티션별로 디스크 사용량을 체크합니다. 4. 바이러스 백신 업데이트 점검 -> 윈도우계열 메일.. 더보기
[VMware] 가상머신 CPU코어 수 정하기 4 vCPU 구성할 때원하는 구성필요한 설정소켓 수소켓 당 코어 수총 코어 수vCPUcpuid.coresPerSocket/sockets14444224428 vCPU 구성할 때원하는 구성필요한 설정소켓 수소켓 당 코어 수총 코어 수vCPUcpuid.coresPerSocket/sockets188882488442882한가지 유의할 점이 Windows Server 버전에 따라 또 할당가능 한 CPU 수가 달라진다.*참고 : VMware 커뮤니티 더보기
[VMware] vCenter없이 가상머신 복사하기 vCenter를 이용하면 손쉽게 VM에 대해 복사 등 작업이 가능하지만 vCenter없이 vSphere로도 복제할 수가 있다. 데이터스토어에 들어가 새로운 폴더(가상머신명)에 .vmdk, .mvx, mvxf 파일을 복사한 뒤 인벤토리에 추가하면 되는데현재 운영중인 서버일 경우 .vmdk 파일을 복사할 때 사용중이라며 파일 액세스가 불가능한데 전원Off가 불가피하다. vCenter에서는 HA를 위해 vMotion이라는 고가용성 솔루션이 들어가있어서 좋긴하나....그래서인지 비싼건 함은정.. *참고 : https://www.lesstif.com/pages/viewpage.action?pageId=12943617 더보기
[VMware] 윈도2003 서버 장치변경 1. 서버 용량 증설 시윈도7이나 2008 서버와 달리 아무리 VM 용량을 늘려보아도 디스크관리에서 확인할 수 없다.그럴때는 아래 첨부파일을 이용하여 커맨드 명령을 실행하면 확장할 수 있다. 2. 네트워크 어댑터 추가용량증가와 마찬가지로 부득이 네트워크 어댑터를 추가할 경우에도 바로 나타나지 않는다.아래 명령어를 통하여 장치관리자 확인, 네트워크 어댑터를 추가할 수 있다. To resolve this issue, add an identical NIC to the virtual machine. After adding the NIC, verify that the configuration is available within the guest operating system. Click Start > Run, t.. 더보기
윈도우 프로세스 정리 http://support.microsoft.com/default.aspx?scid=KB;EN-US;q263201& System process – Windows Memory Handler System Process - The Windows memory Handler System Process zeroes any free pages of RAM and is the only process with priority 0 Cisvc – cisvc.exe – Microsoft Index Service Helper - MS index Service Helper, a service that monitors the memory usage of MS Indexing Service (cidamon.exe) and autom.. 더보기
WSUS .reg 작성 WSUS: Script to Manually Configure Automatic Update Client (WUA) for WSUS in a workgroup environment***This is a sample. ***Edit the Code based on your options & requirement. ***See NOTES and MORE INFORMATION section below for details.1. Simple copy and paste the code below into a text file and name it WSUS.reg============ START Script Code=========== Windows Registry Editor Version 5.00[HKEY_LO.. 더보기
XenServer 응급복구 - Pool Master 이상 1. XenServer Pool Master 점검- Pool Master에 이상이 생기면 XenCenter 접속뿐만 아니라 xe관련 명령어도 결과를 도출할 수 없음 ※ XenCenter 접속 불가 시 SSH 접속은 가능하므로, shell 작업을 진행하면 가능함 [Pool Master 서버 확인]xe pool-listxe host-list uuid= [자기 자신이 Pool Master 서버 되기]xe pool-emergency-transition-to-master [Member 서버에게 Pool Master 서버 알리기]xe pool-recover-slaves 2. XenServer Pool Master 이관- Pool Master의 서버 점검 등의 이유로 사전에 다른 서버로 Pool Master를 이관할.. 더보기