Pages

2019年7月31日水曜日

データ重複除去の相互運用性

Windows Server の機能の一つ「重複排除機能」について。

データ重複除去とは
https://docs.microsoft.com/ja-jp/windows-server/storage/data-deduplication/understand

BackgroundOptimization のタスクが毎時45分に実行されている
(タスクスケジューラ) 


データ重複除去の相互運用性
https://docs.microsoft.com/ja-jp/windows-server/storage/data-deduplication/interop

FSRM and Data Deduplication may be adversely affected when you use Robocopy /MIR in Windows Server 2012
https://support.microsoft.com/en-us/help/2834834/fsrm-and-data-deduplication-may-be-adversely-affected-when-you-use-rob

2019年7月22日月曜日

共有解除

net share 共有名 \\コンピュータ名 /delete
(Windows Server 2012 では \\コンピュータ名 がないとエラーになる)

2019年7月11日木曜日

Windowsの壁紙

Windows の壁紙(背景)、
デフォルトでは
 C:\Windows\Web\Wallpaper
 %USERPROFILE%\AppData\Local\Microsoft\Windows\Themes
あたりにあるようです。
DELLサーバの場合には
 %SystemDrive%\Dell_OEM\Images
にありました。

2019年6月20日木曜日

ADで使用するポート

Active Directory環境で使用されるポート
ドメコン - クライアント間

ポートを使用するサービス
プロトコル DC 側ポート番号
PING ICMP  
DNS TCP/UDP 53
Kerberos TCP/UDP 88
NTP UDP 123
RPC TCP 135
RPC TCP 一時ポート
NetBIOS-ns UDP 137
NetBIOS-dgm UDP 138
NetBIOS-ssn TCP 139
LDAP TCP/UDP 389
SMB TCP 445
KPasswd TCP 464
LDAP GC TCP 3268
LDAP SSL TCP 636
LDAP GC SSL TCP 3269
AD DS Web Services TCP 9389







参考1 https://blogs.technet.microsoft.com/jpntsblog/2009/03/03/563/
参考2 https://blog.onodai.com/posts/2018-04-26-wed













2019年4月8日月曜日

メールキューを削除する

キューの一覧を確認
# mailq
または
# ls -ld /var/spool/postfix/deferred/?/*

メール受信に関する制限
https://support.google.com/mail/?p=ReceivingRate
などに該当するキューの件数を確認
# mailq | grep 450-4.2.1 | wc -l

キューの内容を確認
# /usr/sbin/postcat -q キューID

キューを削除
# /usr/sbin/postsuper -d キューID
参考
# mailq | grep no-replyなどのメールアドレス
=IF(AND(LEFT(A1,1)<>" ",LEFT(A2,1)=" "),"/usr/sbin/postsuper -d "&LEFT(A1,15),"")

参考 Postfixのメールキューを確認、削除する方法
https://qiita.com/pb_tmz08/items/60c760d71da00fcf5d9b

参考  メールスプールを管理する
http://www.usupi.org/sysad/048.html