RPA 2020.11 all in one 安裝

計劃

1.1 安裝組件

Capability

Description

版本

RPA Central

RPA 任務執行中心

2020.11

RPA Designer

RPA Workflow設計器

2020.11

RPA Robot

RPA Robot

2020.11

RPA Recorder

RPA UI錄屏工具(UFT)

2020.11

RPA Self Service

RPA 自服務工具

2020.11

1.2 安裝環境

本文檔內容包含一些格式和說明約定。

組件

Configuration

OS

數量

IP

RPA Central

4CPU 24G RAM

Windows server 2016

1

10.0.0.4

RPA Designer

4CPU 24G RAM

Windows server 2016

1

10.0.0.4

RPA Recorder

4CPU 24G RAM

Windows server 2016

1

10.0.0.4

RPA Robot

4CPU 24G RAM

Windows server 2016

1

10.0.0.4

RPA Self Service

4CPU 24G RAM

Windows server 2016

1

10.0.0.4

安裝準備

1.3 安裝 Visual C++ 2010

下載並安裝Visual C++2010,如下:

http://www.microsoft.com/en-us/download/confirmation.aspx?id=5555

Microsoft Visual C++ 2010 Redistributable Package

1.4 安裝與設置PostgreSQL 11.4

https://get.enterprisedb.com/postgresql/postgresql-11.10-1-windows-x64-binaries.zip

選在 Postgres 11.10版本

解壓縮到 C:\Micro_Focus\pgsql

設置環境變量如下:

  set PGHOME= C:\Micro_Focus\pgsql
    set PGDATA=%PGHOME%\data
    set PGLIB=%PGHOME%\lib
    set PGHOST=localhost
    set PATH=%PGHOME%\bin;%PATH%



1.4.1 初始化數據庫

創建Windows用戶

net user postgres postgres /add

創建postgresdb

C:\Users\Administrator>initdb --locale=CHS -E UTF8 --pgdata=C:\Micro_Focus\pgsql\data -U postgres

The files belonging to this database system will be owned by user "Administrator".

This user must also own the server process.

The database cluster will be initialized with locale "Chinese_China.936".

initdb: could not find suitable text search configuration for locale "Chinese_China.936"

The default text search configuration will be set to "simple".

Data page checksums are disabled.

fixing permissions on existing directory C:/Micro_Focus/pgsql/data ... ok

creating subdirectories ... ok

selecting default max_connections ... 100

selecting default shared_buffers ... 128MB

selecting default timezone ... Asia/Hong_Kong

selecting dynamic shared memory implementation ... windows

creating configuration files ... ok

running bootstrap script ... ok

performing post-bootstrap initialization ... ok

syncing data to disk ... ok

WARNING: enabling "trust" authentication for local connections

You can change this by editing pg_hba.conf or using the option -A, or

--auth-local and --auth-host, the next time you run initdb.

Success. You can now start the database server using:

1.4.2 註冊Windows服務

還是在bin目錄下進行dos窗口:

pg_ctl.exe register -N "pgsql" -D C:/Micro_Focus/pgsql/data

手工啓動

pg_ctl -D "C:\Micro_Focus\pgsql\data" -l logfile start

1.4.3 修改postgresql.conf(可選)

基本設置:

listen_addresses = '*'

調優設置:

work_mem = 1GB

effective_cache_size = 32GB

maintenance_work_mem=1GB

max_connections=2000

shared_buffers=8GB

work_mem=8MB

1.4.4 修改pg_hba.conf (可選)

# IPv4 local connections:

host all all * trust

# IPv4 local connections:

host postgres maas_admin 0.0.0.0/0 md

打開SMA數據庫訪問

host bo_ats bo_db_user 0.0.0.0/0 md5

host bo_user bo_db_user 0.0.0.0/0 md5

host bo_config bo_db_user 0.0.0.0/0 md5

host bo_license bo_db_user 0.0.0.0/0 md5

host smartadb smarta 0.0.0.0/0 md5

host xservices_ems maas_admin 0.0.0.0/0 md5

host xservices_mng maas_admin 0.0.0.0/0 md5

host xservices_rms maas_admin 0.0.0.0/0 md5

host maas_admin maas_admin 0.0.0.0/0 md5

host maas_template maas_admin 0.0.0.0/0 md5

host idm idm 0.0.0.0/0 md5

host autopassdb autopass 0.0.0.0/0 md5

host bo_ats postgres 0.0.0.0/0 md5

host bo_user postgres 0.0.0.0/0 md5

host bo_config postgres 0.0.0.0/0 md5

host bo_license postgres 0.0.0.0/0 md5

host smartadb postgres 0.0.0.0/0 md5

host xservices_ems postgres 0.0.0.0/0 md5

host xservices_mng postgres 0.0.0.0/0 md5

host xservices_rms postgres 0.0.0.0/0 md5

host maas_admin postgres 0.0.0.0/0 md5

host maas_template postgres 0.0.0.0/0 md5

host idm postgres 0.0.0.0/0 md5

host autopassdb postgres 0.0.0.0/0 md5

host postgres postgres 0.0.0.0/0 md

1.4.5 重啓數據庫

1.5 安裝與設置RabbitMQ

1.5.1 安裝Erlang 22.0

Erlang下載地址:http://www.erlang.org/downloads

介質如下:

otp_win64_22.0.exe

點擊next到底,

1.5.2 安裝rabbitmq 3.7.15

下載rabbitmq-server-3.7.15.exe

rabbitmq-server-3.7.15

https://www.rabbitmq.com/download.html

clip_image002

1.5.3 安裝rabbitmq plugins

配置ErLang環境變量

C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Micro_Focus\pgsql\bin;C:\Program Files\erl10.4\bin;C:\Users\baison\AppData\Local\Microsoft\WindowsApps;

確保已切換到RabbitMQ安裝目錄的sbin目錄下,再使用操作命令
(如:C:\Micro_Focus\RabbitMQ Server\rabbitmq_server-3.7.15\sbin)

# 開啓RabbitMQ節點

rabbitmqctl start_app

# 開啓RabbitMQ管理模塊的插件,並配置到RabbitMQ節點上

rabbitmq-plugins enable rabbitmq_management

# 關閉RabbitMQ節點

rabbitmqctl stop

clip_image003

1.5.4 配置User及Virtual Host

配置Virtual Host

clip_image005

配置用戶:

clip_image007

安裝RPA 2020.11

1.6 安裝RPA Designer

解壓縮需要一點時間,請耐心等待:

clip_image009

clip_image011

clip_image013

clip_image015

clip_image017

clip_image019

clip_image021

clip_image023

clip_image025

1.7 安裝RPA Central

clip_image027

clip_image029

clip_image031

clip_image033

clip_image035

clip_image037

clip_image039

clip_image041

clip_image043

clip_image045

1.7.1 爲RPA Central創建用戶

創建用戶如下:

clip_image047

修改認證步驟如下:

clip_image049

1.8 安裝RPA Recorder

clip_image051

clip_image053

clip_image055

clip_image057

clip_image059

clip_image061

其中第一步UFT安裝需要一點時間,請耐心等待:

clip_image063

1.9 安裝RPA Robot

clip_image065

clip_image067

clip_image069

clip_image071

clip_image073

1.10 安裝RPA Self service

clip_image075

clip_image077

clip_image079

clip_image081

clip_image083

clip_image085

clip_image087

檢查RPA 2020.11

1.11 檢查RPA Designer

https://rpa-cs:8445/oo-designer/

administrator Admin@123

1.12 檢查RPA Central

https://rpa-cs:8443/oo

administrator Admin@123

1.13 檢查RPA Self Service

https://localhost:8446/oo-ssx

administrator Admin@123

後續步驟

RPA安裝成功後,默認rpa central內容包都是空的,如下:

clip_image089

重要的content pack如下:

clip_image091

可以從Micro Focus Marketplace下載如下:

OO CONTENTPACK

https://marketplace.microfocus.com/itom/category/all?product=Operations-Orchestration

RPA CONTENTPACK

https://marketplace.microfocus.com/itom/category/robotic-process-automation

備註

1.14 安裝 Postgresql報錯

安裝postgres db做成中,如果遇到以下錯誤:

缺少MSVCP140.dll VCRUNTIME140.dll

下載並安裝Visual C++2015 x64,如下:

https://www.microsoft.com/zh-cn/download/confirmation.aspx?id=48145&6B49FDFB-8E5B-4B07-BC31-15695C5A2143=1

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章