Go to documentation repository
You can use the ngpsh.exe utility and json commands to back up and restore your system configuration유틸리티와 json 명령을 사용하여 시스템 구성을 백업하고 복원할 수 있습니다.
Note | ||
---|---|---|
| ||
These configuration backups are incompatible with those created with the Backup and configuration recovery utility, and vice versa. |
...
이러한 구성 백업은 백업 및 구성 복구 유틸리티를 사용하여 만든 백업과 호환되지 않으며 그 반대의 경우도 마찬가지입니다. |
구성 백업을 생성하려면:
Execute the following command:다음 명령을 실행하세요.
No Format |
---|
ngpsh.exe backup backupJson [path_to_backup_folder] [node_name] [local] [shared] [license] [tickets] |
Where
매개변수 | Description설명 |
path_to_backup_folder | 필수 매개변수 구성 백업을 저장할 폴더를 지정하세요. 경로에 두 개의 "\" 문자를 사용해야 합니다 Required parameter. Specify a folder to save the configuration backup to. You have to use two "\" characters in the path. |
node_name | Required parameter. Name of a Server whose configuration you want to save. |
local | Add it, if you need to save the local configuration for this Server: all created objects along with their parameters, links and changes' histories. |
shared | Add it, if you need to save the global configuration for an Axxon domain: users, layouts, etc. |
license | Add it, if you need to save a license. |
tickets | Add it, if you need to save the Axxon domain structure. |
필수 매개변수 구성을 저장하려는 서버의 이름입니다. | |
local | 이 서버의 로컬 구성을 저장해야 하는 경우 이를 추가하세요: 모든 생성된 개체와 해당 매개변수, 링크 및 변경 내역 |
shared | Axxon 도메인의 글로벌 구성(사용자, 레이아웃 등)을 저장해야 하는 경우 이를 추가하세요. |
license | 라이선스를 저장해야 하는 경우 추가하세요. |
tickets | Axxon 도메인 구조를 저장해야 하는 경우 추가하세요. |
예An example:
No Format |
---|
ngpsh.exe backup backupJson c:\\backups Server1 local |
To restore a configuration from a backup백업에서 구성을 복원하려면:
No Format |
---|
ngpsh.exe backup restoreJson [path_to_backup_file] [node_name] [local] [shared] [license] [tickets] [deleteLocal] [deleteShared] |
Where
매개변수 | Description설명 |
deleteLocal | Add it, if you need to clear the local configuration from objects not present in the backup copy. |
deleteShared | Add it, if you need to clear the global configuration from objects not present in the backup copy. |
백업 사본에 없는 객체의 로컬 구성을 지워야 하는 경우 이를 추가하세요. | |
deleteShared | 백업 사본에 없는 객체의 글로벌 구성을 지워야 하는 경우 이를 추가하세요. |
예An example:
No Format |
---|
ngpsh.exe backup restoreJson c:\\backups\Server1.json local |
...