Linux에서 Control Room 자동 설치 수행
- 최종 업데이트2025/04/09
무인 설치라고도 하는 자동 Control Room 설치는 비즈니스 요구 사항에 맞는 매개변수가 포함된 사용자 정의 스크립트를 사용합니다. 사용자 상호 작용이나 메시지 표시 없이 백그라운드에서 전체 설치 프로세스가 실행됩니다.
전제 조건
- Automation 360 온프레미스 선행조건 항목을 완료했는지 확인합니다.
- 다음이 있는지 확인합니다.
- Automation Anywhere Control Room 설치 파일
- SSL 인증서
- 라이선스 파일
- Yum 업데이트를 사용하여 Linux 커널 파일 및 OS 라이브러리를 업데이트하려면 설치 서버에 인터넷 액세스 권한이 있는지 확인합니다. 아니면, 네트워크에 로컬 리포지토리를 사용하여 설치 서버에서 /etc/yum.conf를 구성합니다. 리포지토리는 설치를 시작하기 전에 최신 상태여야 합니다.
두 개의 스크립트가 Linux 자동 설치를 실행합니다.
- LinuxInstaller.sh: 이 스크립트에는 설치 중에 적용할 설치 매개변수가 포함되어 있습니다.
- CallLinuxScript.sh: 이 스크립트는 첫 번째 스크립트를 실행합니다.
Linux 쉘에서 스크립트를 실행합니다.
프로시저
다음 단계
재해 복구 설치
다음 스크립트를 사용해 기존 데이터베이스에 대해
재해 복구를 실행할 수 있습니다.
echo "Starting Installation"
# Variables to simplify customization
INSTALLER_PATH="/Automation360_Build_<build-number>" # Change to the path of your installer
INSTALL_SERVER="172.x.x.x" # Change to your Automation Anywhere install server
SQL_PORT="0000" # Change to your SQL Server port if different
DATABASE_NAME="Automation360-Database" # Replace with your database name
SQL_ADMIN="aa" # Replace with your SQL Server admin ID
SQL_PASSWORD="xxxxxxxxxx" # Replace with your SQL Server admin password
ES_Password="xxxxxxxx"
# Ensure the installer is executable
sudo chmod a+x "$INSTALLER_PATH"
# Run the installer
sudo "$INSTALLER_PATH" << EOF
1
\n
0
Y
80
443
1
1
1
1
$INSTALL_SERVER
$SQL_PORT
$DATABASE_NAME
$SQL_ADMIN
$SQL_PASSWORD
1
2
\n
\n
\n
EOF