HULFT8은 Windows Server 2008용 AWS로 구축됩니다.
7220 단어 HULFTWindowsServer2008R2AWSr2
1. 구조도
2. 사전 확인
3. Hulft8 설치
4. HULFT8 시동&소통 확인
$path = [Environment]::GetEnvironmentVariable('PATH', 'Machine')
$path += ";" + "C:\HULFT Family\hulft8\bin"
[Environment]::SetEnvironmentVariable('PATH', $path, 'Machine')
utlhulversion 명령을 실행한 후 버전 정보 등을 표시하면 됩니다.PS C:\Users\Administrator> utlhulversion
HULFT8 for Windows-Server
Version Information [V08L01R03]
License Type [Trial version]
Serial Number [408-xxxx-xxxxxx]
Product Key [QSVDC-xxxxx-xxxxx-xxxxx-xxxxx]
Date of Installation [2017/xx/xx]
Environment Information [Windows Server 2012 Standard(full installation) , 64bit]
Hostname [CM-WIN2012-SV]
Cipher Option(AES) [V08L01R03]
PS C:\Users\Administrator>
HULFT는 모든 단계에 따라 시작 및 중지할 수 있습니다.[Process Controller] 메뉴 시작
[시작] 버튼을 누르면 관련 프로그램을 시작합니다.
끝맺다
또한 HULFT는 명령줄을 기반으로 작업할 수도 있습니다.
PS C:\Users\Administrator> utlsvcctl -c start
サービスが開始されました。
PS C:\Users\Administrator> utlsvcctl -c stop
サービスが停止されました。
PS C:\Users\Administrator>
기계 이름 재설정 → 재부팅 후hostname 명령을 사용하여 내용을 확인합니다.
Windows PowerShell
Copyright (C) 2014 Microsoft Corporation. All rights reserved.
PS C:\Users\Administrator> hostname
CM-HULFT-RCV
PS C:\Users\Administrator>
또한 이 환경에서 다른 EIP를 할당했습니다.기계명'CM-HULFT-CRCV'와 EIP의 정보는 상대방이 식별하고 접근할 수 있도록 해야 한다.또한 이번에 제작된 환경과 다른 환경(Windows Server 2008)을 준비하여 다음과 같은 형식으로hosts 파일에 정보를 기록합니다.# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
34.226.xxx.xxx CM-HULFT-RCV
연결 포트의 소통을 확인할 때PortQry라는 도구를 사용해 보세요.
PortQry Command Line Port Scanner Version 2.0
PortQry version 2.0 - TCP/UDP Port Check / Port Scan
위 공식 사이트에서 설치 프로그램을 해제하고 임의의 폴더에 설치한 후 환경 변수Path의 경로를 통과한다.
$path = [Environment]::GetEnvironmentVariable('PATH', 'Machine')
$path += ";" + "C:\tools\PortQryV2"
[Environment]::SetEnvironmentVariable('PATH', $path, 'Machine')
위에서 설명한 것과 다른 Windows 환경에서 이번 제작 환경(CM-HULFT-CRCV)을 연결하여 확인합니다.문제 없을 것 같습니다.Windows PowerShell
Copyright (C) 2014 Microsoft Corporation. All rights reserved.
PS C:\Users\Administrator> portqry -n CM-HULFT-RCV -p tcp -e 30000
Querying target system called:
CM-HULFT-RCV
Attempting to resolve name to IP address...
Name resolved to 34.226.xxx.xxx
querying...
TCP port 30000 (unknown service): LISTENING
PS C:\Users\Administrator>
PS C:\Users\Administrator> portqry -n CM-HULFT-RCV -p tcp -e 31000
Querying target system called:
CM-HULFT-RCV
Attempting to resolve name to IP address...
Name resolved to 34.226.xxx.xxx
querying...
TCP port 31000 (unknown service): LISTENING
PS C:\Users\Administrator>
또 다음 명령을 통해 생존 감시를 할 수도 있다.
Reference
이 문제에 관하여(HULFT8은 Windows Server 2008용 AWS로 구축됩니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/pythontjlc/items/6ac5b57a9427c8f518c2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)