SlideShare ist ein Scribd-Unternehmen logo
1 von 21
Downloaden Sie, um offline zu lesen
Floating license system installation for ZEdit
Pro 1.0 program




                      1
Index
Floating license system installation for ZEdit Pro 1.0 program...........................................1
About this document............................................................................................................ 3
Requirements....................................................................................................................... 3
Terminology.........................................................................................................................4
Installing the license server.................................................................................................. 5
Getting the hostid number and hostname for the license......................................................7
Installing the license............................................................................................................ 9
Starting the license server...................................................................................................10
Checking the license server status...................................................................................... 11
Shutting down the license server........................................................................................ 12
Running the license server as a Windows service...............................................................13
   Installing rlm as a Windows service...........................................................................................14
   Starting rlm service.....................................................................................................................15
   Stopping rlm service................................................................................................................... 16
   Deleting rlm service.................................................................................................................... 17
   The rlm license server log file..................................................................................................... 18
   Additional information............................................................................................................... 18
Floating license client configuration in ZEdit Pro............................................................. 19




                                                                    2
About this document

This document explains the operations needed to configure the ZEdit Pro program to use the Reprise
License Manager (RLM) floating license system, instead of the default DeskArtes nodelocked licenses.

The instructions in this document are written for the ZEdit Pro version 1.0 installation package,
containing Reprise RLM version 3 license server and tools.

For further information about the Reprise RLM system you can check the Reprise end user manual at
their web-site (http://www.reprisesoftware.com/RLM_Enduser.html).



Requirements

The machines running the ZEdit Pro with the Reprise RLM floating license system have to be
connected to the machine running the license server with a network using the TCP/IP protocol.

The user account doing the installation must have the administrative rights.




                                                   3
Terminology

The Reprise RLM floating license system for ZEdit Pro consists of the parts illustrated in the following
figure.



                                 License server machine

                                 -license manager (rlm.exe)
                                 -vendor daemon (deskartes.exe)
                                 -license file (deskartes.lic)




    License client                      License client                    License client
    machine                             machine                           machine

    - ZEdit Pro                         - ZEdit Pro                       - ZEdit Pro




License server machine                  The machine where the license manager is running.
License client machine                  A machine where ZEdit Pro is running, but not the license
                                        server.
License manager program                 The program (rlm.exe) controlling the license usage in the
                                        network, with help of vendor daemons.

License file                            A file containing the list of available licenses and vendor
                                        daemons.
Vendor daemon program                   The program controlling the licenses for the applications of one
                                        vendor (deskartes.exe for ZEdit Pro).




                                                      4
Installing the license server


Get the ZEdit Pro license server installation package (ZepLicenseServer.msi). It is found in the
"ZepLicenseServer" subdirectory of the ZEdit Pro installation directory (default: "C:Program FilesZEdit
ProZepLicenseServer").




Copy the installation package to the machine that you want to make a license server.

Run the installation package on the license server machine.




                                                   5
If you don't want to install the license server components to the default location, change the path in the
"Select Installation Folder" window.




When the installation is complete, just close the last installation window.




                                                    6
Getting the hostid number and hostname for the license


Open a Windows Command Prompt window. The Command Prompt is started from the following Start-
menu paths in different Windows versions.


Windows Vista                          Start->All Programs->Accessories->Command Prompt
Windows XP                             Start->All Programs->Accessories->Command Prompt
Windows 2000                           Start->Programs->Accessories->Command Prompt




Change current working directory to the license server installation directory (default: "C:Program
FilesZEdit Pro License Server") using the "cd" command.




                                                   7
Run the command "rlmhostid" to get the hostid number for creating the license.




Run the command "hostname" to get the hostname of the license server machine.




Send the Hostid number and Hostname to your ZCorp reseller, or register through the ZEdit Pro
registration page, to get the license.

Indicate if you need a license for the Import Package too. A separate key is required, please see Import
Package licenses.




                                                  8
Installing the license

When receiving the license file (deskartes.lic), copy it to the license server installation directory (default:
"C:Program FilesZEdit Pro License Server").




                                                     9
Starting the license server


Start the license server with command ".rlm".




Note: You need to let the Command Prompt window exist as long as you want the license server to
run. Closing the window will end the license server process. In this default configuration the license
server also writes its log information to the same Command Prompt window. If you want to get the
license server survive closing the Command Prompt, user logout etc. see the “Running the license
server as a Windows service” section below.




                                                   10
Checking the license server status

The license server has an internal www-server waiting for connections at IP port 9000. So you can view
the license server status information by connecting to that server with any web-browser (Internet
Explorer, Firefox, Opera etc.). If running the browser at the license server machine the correct URL for
the license server is

http://localhost:9000




                                                  11
Shutting down the license server

To shut down the license server, run the command ".rlmdown RLM -q" in another Windows Command
Prompt window.




In the Command Prompt window where you started the server, you can now see also the shutdown
messages.




                                              12
Running the license server as a Windows service

If you need to be able to get the license server to survive closing the Command Prompt, user logout etc.
it is possible by defining the license server to run as a Windows service.

When running the license server through the Windows service mechanism the space characters in the
directory paths cause problems. Therefore you must first create a new directory that does not have any
space characters in its path (for example: “c:reprise”) and copy all the license server components from
the default installation directory ("C:Program FilesZEdit Pro License Server") there. Then do the
installation from that directory.

In the license file you need to change the following:
          .
     •    Add the path of the vendor daemon to the ISV line of the license file.

The following changes are needed in the rlm startup command:

    •    Add "-install_service" option to the rlm startup command.
    •    Add a service name to the rlm startup command using the “-service_name” option.
    •    Add the full path of the log file to the rlm startup command using "-dlog" option.
    •    Add the full path of the license file to the rlm startup command using "-c" option.

When the “-install_service” option is included in the rlm startup command, the command does not start
the license server. It just adds a new service to the Windows service list. The installed service has to be
separately started via the Windows Services control panel.

The installed rlm service can also be removed from the Windows service list using the “-delete_service”
option of the rlm command. The service has to be stopped via the Windows Services control panel
before it can be removed.




                                                    13
Installing rlm as a Windows service

For example if you have the vendor daemon (deskartes.exe) and the license file (deskartes.lic) in the
directory “c:reprise”, want the logfile (repriselog.txt) to be written in the same directory and the service to
be called “rlm-zep”, you need to do the following:

First change the ISV line in the license file to contain the path of the vendor daemon.

ISV deskartes c:reprisedeskartes

Then run the rlm startup command in the Windows command prompt.

rlm -install_service -service_name rlm-zep -dlog c:repriserepriselog.txt
-c c:reprisedeskartes.lic




                                                      14
Starting rlm service

Open the Windows Services control panel. In different versions of Windows it is found in slightly
different paths.

Windows Vista:
“Start->Control Panel (Classic View): Administrative Tools: Services”

Windows XP:
“Start->Control Panel: Administrative Tools: Services”

Windows 2000:
“Start->Settings->Control Panel: Administrative Tools: Services”


The “rlm-zep” service is now found in the list of services.

Select the “rlm-zep” service and run the command “Start” from the “Action” menu.

The status of the service is then changed to “Started” and the rlm license server is running.




                                                    15
Stopping rlm service

The rlm service is stopped via the Windows Services control panel in the same way as it was started.

Open the Windows Services control panel.

Select the “rlm-zep” service in the list and run the command “Stop” from the “Action” menu.

The “Started” string then disappears from the “Status” field and the rlm license server is stopped.




                                                   16
Deleting rlm service

To remove the rlm service from the Windows service list run the following command in the Windows
command prompt.

rlm -delete_service -service_name rlm-zep




The “rlm-zep” has then disappeared from the services list in the Windows Services control panel.




                                                 17
The rlm license server log file

When running the rlm license server as a Windows service, it writes its log information to the file defined
in the rlm startup command (for example: “c:repriserepriselog.txt”). The log file contains the similar
information that is shown in the startup command prompt in the default configuration.

The information in the log file is useful especially when trying to resolve problems in running the rlm
license server.


Additional information

For further details see "Running the rlm server as a service on Windows" in "The License Server"
section, and the ISV line description in the "The License File" section, of the Reprise end user manual
(http://www.reprisesoftware.com/RLM_Enduser.html).




                                                    18
Floating license client configuration in ZEdit Pro

The license system settings can be changed in ZEdit Pro by selecting the "Edit->Preferences" in the
program menus.

Choose the "Licensing" category in the Preferences window.




Select the "Reprise floating license" as the License type and the "Use the license file path" in the
Floating license file setting.

Fill in the path to the license server in the corresponding text field.

The path is of format "<IP-port>@<lic-server-hostname>, where <IP-port> is the port number of the
license server (default: 2764) and the <lic-server-hostname> is the host name of the license server
machine in the network.

The correct port number and the hostname can be also checked from the HOST line of the license file
(second and fourth field)




                                                      19
or in the license server startup messages (lines: "License server started on ..." and "Using TCP/IP port
...").




                                                   20
Press "OK"




When the program reminds you about need to restart the program, exit the ZEdit Pro and start it again.




                                                 21

Weitere ähnliche Inhalte

Was ist angesagt?

Oracle ebs-r12-1-3installationlinux64bit
Oracle ebs-r12-1-3installationlinux64bitOracle ebs-r12-1-3installationlinux64bit
Oracle ebs-r12-1-3installationlinux64bitRavi Kumar Lanke
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installationfranbow
 
Oracle database 12c client quick installation guide 8
Oracle database 12c client quick installation guide 8Oracle database 12c client quick installation guide 8
Oracle database 12c client quick installation guide 8bupbechanhgmail
 
Document Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSDocument Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSSiddharth Ram Dinesh
 
LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7VCP Muthukrishna
 
Cara upgrade dan downgrade tcu
Cara upgrade dan downgrade tcuCara upgrade dan downgrade tcu
Cara upgrade dan downgrade tcuBayu Rosdiansyah
 
Dating Pro Installation Instructions
Dating Pro Installation InstructionsDating Pro Installation Instructions
Dating Pro Installation InstructionsPilot Group Ltd
 
Shutdown agent for_v_mware_esx
Shutdown agent for_v_mware_esxShutdown agent for_v_mware_esx
Shutdown agent for_v_mware_esxmoy725
 
Information on PHP Handlers
Information on PHP HandlersInformation on PHP Handlers
Information on PHP HandlersHTS Hosting
 
Controlling processor c-state_usage_in_linux_nov2012
Controlling processor c-state_usage_in_linux_nov2012Controlling processor c-state_usage_in_linux_nov2012
Controlling processor c-state_usage_in_linux_nov2012sprdd
 
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...mfrancis
 
Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0Fabian Vandendyck
 
Powervc upgrade from_1.3.0.2_to_1.3.2.0
Powervc upgrade from_1.3.0.2_to_1.3.2.0Powervc upgrade from_1.3.0.2_to_1.3.2.0
Powervc upgrade from_1.3.0.2_to_1.3.2.0Gobinath Panchavarnam
 
How to secure ubuntu 12.04
How to secure ubuntu 12.04 How to secure ubuntu 12.04
How to secure ubuntu 12.04 John Richard
 
Linux Basic Administration Commands Guide
Linux Basic Administration Commands GuideLinux Basic Administration Commands Guide
Linux Basic Administration Commands GuideVCP Muthukrishna
 
Comprehensive Information on Tomcat
Comprehensive Information on TomcatComprehensive Information on Tomcat
Comprehensive Information on TomcatHTS Hosting
 

Was ist angesagt? (20)

Oracle ebs-r12-1-3installationlinux64bit
Oracle ebs-r12-1-3installationlinux64bitOracle ebs-r12-1-3installationlinux64bit
Oracle ebs-r12-1-3installationlinux64bit
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installation
 
Oracle database 12c client quick installation guide 8
Oracle database 12c client quick installation guide 8Oracle database 12c client quick installation guide 8
Oracle database 12c client quick installation guide 8
 
Boot prom basics
Boot prom basicsBoot prom basics
Boot prom basics
 
Document Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OSDocument Management: Opendocman and LAMP installation on Cent OS
Document Management: Opendocman and LAMP installation on Cent OS
 
LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7LSOF Command Usage on RHEL 7
LSOF Command Usage on RHEL 7
 
Plesk Training Level 1
Plesk Training Level 1Plesk Training Level 1
Plesk Training Level 1
 
Cara upgrade dan downgrade tcu
Cara upgrade dan downgrade tcuCara upgrade dan downgrade tcu
Cara upgrade dan downgrade tcu
 
Dating Pro Installation Instructions
Dating Pro Installation InstructionsDating Pro Installation Instructions
Dating Pro Installation Instructions
 
Shutdown agent for_v_mware_esx
Shutdown agent for_v_mware_esxShutdown agent for_v_mware_esx
Shutdown agent for_v_mware_esx
 
Information on PHP Handlers
Information on PHP HandlersInformation on PHP Handlers
Information on PHP Handlers
 
Controlling processor c-state_usage_in_linux_nov2012
Controlling processor c-state_usage_in_linux_nov2012Controlling processor c-state_usage_in_linux_nov2012
Controlling processor c-state_usage_in_linux_nov2012
 
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...
OSGi provisioning deep dive and demo (Subsystems, Repository, Contracts and m...
 
Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0
 
Powervc upgrade from_1.3.0.2_to_1.3.2.0
Powervc upgrade from_1.3.0.2_to_1.3.2.0Powervc upgrade from_1.3.0.2_to_1.3.2.0
Powervc upgrade from_1.3.0.2_to_1.3.2.0
 
How to secure ubuntu 12.04
How to secure ubuntu 12.04 How to secure ubuntu 12.04
How to secure ubuntu 12.04
 
Linux Basic Administration Commands Guide
Linux Basic Administration Commands GuideLinux Basic Administration Commands Guide
Linux Basic Administration Commands Guide
 
Ww
WwWw
Ww
 
Comprehensive Information on Tomcat
Comprehensive Information on TomcatComprehensive Information on Tomcat
Comprehensive Information on Tomcat
 
Android Custom Kernel/ROM design
Android Custom Kernel/ROM designAndroid Custom Kernel/ROM design
Android Custom Kernel/ROM design
 

Andere mochten auch

Andere mochten auch (7)

Six secrets of career changers
Six secrets of career changersSix secrets of career changers
Six secrets of career changers
 
XHTML wellformness validation with Prolog
XHTML wellformness validation with PrologXHTML wellformness validation with Prolog
XHTML wellformness validation with Prolog
 
Industrial Revolution 7th Grade
Industrial Revolution 7th Grade Industrial Revolution 7th Grade
Industrial Revolution 7th Grade
 
game download
game downloadgame download
game download
 
Start a Business Weekend
Start a Business WeekendStart a Business Weekend
Start a Business Weekend
 
Intro to music video
Intro to music videoIntro to music video
Intro to music video
 
Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)
 

Ähnlich wie repriseZEP

SPSS Statistics Concurrent License Administrator’s guide
SPSS Statistics Concurrent License Administrator’s guideSPSS Statistics Concurrent License Administrator’s guide
SPSS Statistics Concurrent License Administrator’s guideLuciano Saia
 
Installing license server
Installing license serverInstalling license server
Installing license serverKang YAyan
 
App note running-amd_app_apps_remotely
App note running-amd_app_apps_remotelyApp note running-amd_app_apps_remotely
App note running-amd_app_apps_remotelyRuby Tsai
 
Floating License Server User Guide
Floating License Server User GuideFloating License Server User Guide
Floating License Server User GuideMehmet Yilmaz
 
Floating License Server User Guide
Floating License Server User GuideFloating License Server User Guide
Floating License Server User GuideAli Erturk
 
Squid proxy-configuration-guide
Squid proxy-configuration-guideSquid proxy-configuration-guide
Squid proxy-configuration-guidejasembo
 
System Client Details
System Client DetailsSystem Client Details
System Client DetailsSyAM Software
 
Sap_Install_Instructions.pdf
Sap_Install_Instructions.pdfSap_Install_Instructions.pdf
Sap_Install_Instructions.pdfAngelaMendivelso4
 
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]Krisman Tarigan
 
Presentation Progress TA
Presentation Progress TA Presentation Progress TA
Presentation Progress TA Arif Wahyudi
 
EMC Documentum - xCP 2.x Troubleshooting
EMC Documentum - xCP 2.x TroubleshootingEMC Documentum - xCP 2.x Troubleshooting
EMC Documentum - xCP 2.x TroubleshootingHaytham Ghandour
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guidevjvarenya
 
12.+Managing+Containers.pdf
12.+Managing+Containers.pdf12.+Managing+Containers.pdf
12.+Managing+Containers.pdfVikrantSChohaan
 
Android internals By Rajesh Khetan
Android internals By Rajesh KhetanAndroid internals By Rajesh Khetan
Android internals By Rajesh KhetanRajesh Khetan
 
Install websphere message broker 8 RHEL 6 64 bits
Install websphere message broker 8 RHEL 6 64 bitsInstall websphere message broker 8 RHEL 6 64 bits
Install websphere message broker 8 RHEL 6 64 bitsManuel Vega
 

Ähnlich wie repriseZEP (20)

SPSS Statistics Concurrent License Administrator’s guide
SPSS Statistics Concurrent License Administrator’s guideSPSS Statistics Concurrent License Administrator’s guide
SPSS Statistics Concurrent License Administrator’s guide
 
Installing license server
Installing license serverInstalling license server
Installing license server
 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
 
App note running-amd_app_apps_remotely
App note running-amd_app_apps_remotelyApp note running-amd_app_apps_remotely
App note running-amd_app_apps_remotely
 
Floating License Server User Guide
Floating License Server User GuideFloating License Server User Guide
Floating License Server User Guide
 
Floating License Server User Guide
Floating License Server User GuideFloating License Server User Guide
Floating License Server User Guide
 
Squid proxy-configuration-guide
Squid proxy-configuration-guideSquid proxy-configuration-guide
Squid proxy-configuration-guide
 
System Client Details
System Client DetailsSystem Client Details
System Client Details
 
Sap_Install_Instructions.pdf
Sap_Install_Instructions.pdfSap_Install_Instructions.pdf
Sap_Install_Instructions.pdf
 
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]
18587936 squid-proxy-configuration-guide - [the-xp.blogspot.com]
 
Presentation Progress TA
Presentation Progress TA Presentation Progress TA
Presentation Progress TA
 
Readme1st
Readme1stReadme1st
Readme1st
 
EMC Documentum - xCP 2.x Troubleshooting
EMC Documentum - xCP 2.x TroubleshootingEMC Documentum - xCP 2.x Troubleshooting
EMC Documentum - xCP 2.x Troubleshooting
 
Prizm Installation Guide
Prizm Installation GuidePrizm Installation Guide
Prizm Installation Guide
 
Android Architecture
Android ArchitectureAndroid Architecture
Android Architecture
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
 
12.+Managing+Containers.pdf
12.+Managing+Containers.pdf12.+Managing+Containers.pdf
12.+Managing+Containers.pdf
 
Android internals By Rajesh Khetan
Android internals By Rajesh KhetanAndroid internals By Rajesh Khetan
Android internals By Rajesh Khetan
 
Backtrack Manual Part4
Backtrack Manual Part4Backtrack Manual Part4
Backtrack Manual Part4
 
Install websphere message broker 8 RHEL 6 64 bits
Install websphere message broker 8 RHEL 6 64 bitsInstall websphere message broker 8 RHEL 6 64 bits
Install websphere message broker 8 RHEL 6 64 bits
 

Mehr von Chandra Pr. Singh

Mehr von Chandra Pr. Singh (12)

Sip basic KT
Sip basic KTSip basic KT
Sip basic KT
 
Hacks
HacksHacks
Hacks
 
Hacking for Dummies 2
Hacking for Dummies 2Hacking for Dummies 2
Hacking for Dummies 2
 
Web History
Web HistoryWeb History
Web History
 
Windows XP Registry Guide
Windows XP Registry GuideWindows XP Registry Guide
Windows XP Registry Guide
 
Artificial intelligence
Artificial intelligenceArtificial intelligence
Artificial intelligence
 
Ankit Phadia Hacking tools (1)
Ankit Phadia Hacking tools (1)Ankit Phadia Hacking tools (1)
Ankit Phadia Hacking tools (1)
 
Ankit Phadia Hacking tools
Ankit Phadia Hacking toolsAnkit Phadia Hacking tools
Ankit Phadia Hacking tools
 
www.indonezia.net Hacking Windows Registry
www.indonezia.net Hacking Windows Registrywww.indonezia.net Hacking Windows Registry
www.indonezia.net Hacking Windows Registry
 
Convert a user account into an Administrator
Convert a user account into an AdministratorConvert a user account into an Administrator
Convert a user account into an Administrator
 
CMD Command
CMD CommandCMD Command
CMD Command
 
hacking into computer systems - a beginners guid
hacking into computer systems - a beginners guidhacking into computer systems - a beginners guid
hacking into computer systems - a beginners guid
 

Kürzlich hochgeladen

The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 

Kürzlich hochgeladen (20)

The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 

repriseZEP

  • 1. Floating license system installation for ZEdit Pro 1.0 program 1
  • 2. Index Floating license system installation for ZEdit Pro 1.0 program...........................................1 About this document............................................................................................................ 3 Requirements....................................................................................................................... 3 Terminology.........................................................................................................................4 Installing the license server.................................................................................................. 5 Getting the hostid number and hostname for the license......................................................7 Installing the license............................................................................................................ 9 Starting the license server...................................................................................................10 Checking the license server status...................................................................................... 11 Shutting down the license server........................................................................................ 12 Running the license server as a Windows service...............................................................13 Installing rlm as a Windows service...........................................................................................14 Starting rlm service.....................................................................................................................15 Stopping rlm service................................................................................................................... 16 Deleting rlm service.................................................................................................................... 17 The rlm license server log file..................................................................................................... 18 Additional information............................................................................................................... 18 Floating license client configuration in ZEdit Pro............................................................. 19 2
  • 3. About this document This document explains the operations needed to configure the ZEdit Pro program to use the Reprise License Manager (RLM) floating license system, instead of the default DeskArtes nodelocked licenses. The instructions in this document are written for the ZEdit Pro version 1.0 installation package, containing Reprise RLM version 3 license server and tools. For further information about the Reprise RLM system you can check the Reprise end user manual at their web-site (http://www.reprisesoftware.com/RLM_Enduser.html). Requirements The machines running the ZEdit Pro with the Reprise RLM floating license system have to be connected to the machine running the license server with a network using the TCP/IP protocol. The user account doing the installation must have the administrative rights. 3
  • 4. Terminology The Reprise RLM floating license system for ZEdit Pro consists of the parts illustrated in the following figure. License server machine -license manager (rlm.exe) -vendor daemon (deskartes.exe) -license file (deskartes.lic) License client License client License client machine machine machine - ZEdit Pro - ZEdit Pro - ZEdit Pro License server machine The machine where the license manager is running. License client machine A machine where ZEdit Pro is running, but not the license server. License manager program The program (rlm.exe) controlling the license usage in the network, with help of vendor daemons. License file A file containing the list of available licenses and vendor daemons. Vendor daemon program The program controlling the licenses for the applications of one vendor (deskartes.exe for ZEdit Pro). 4
  • 5. Installing the license server Get the ZEdit Pro license server installation package (ZepLicenseServer.msi). It is found in the "ZepLicenseServer" subdirectory of the ZEdit Pro installation directory (default: "C:Program FilesZEdit ProZepLicenseServer"). Copy the installation package to the machine that you want to make a license server. Run the installation package on the license server machine. 5
  • 6. If you don't want to install the license server components to the default location, change the path in the "Select Installation Folder" window. When the installation is complete, just close the last installation window. 6
  • 7. Getting the hostid number and hostname for the license Open a Windows Command Prompt window. The Command Prompt is started from the following Start- menu paths in different Windows versions. Windows Vista Start->All Programs->Accessories->Command Prompt Windows XP Start->All Programs->Accessories->Command Prompt Windows 2000 Start->Programs->Accessories->Command Prompt Change current working directory to the license server installation directory (default: "C:Program FilesZEdit Pro License Server") using the "cd" command. 7
  • 8. Run the command "rlmhostid" to get the hostid number for creating the license. Run the command "hostname" to get the hostname of the license server machine. Send the Hostid number and Hostname to your ZCorp reseller, or register through the ZEdit Pro registration page, to get the license. Indicate if you need a license for the Import Package too. A separate key is required, please see Import Package licenses. 8
  • 9. Installing the license When receiving the license file (deskartes.lic), copy it to the license server installation directory (default: "C:Program FilesZEdit Pro License Server"). 9
  • 10. Starting the license server Start the license server with command ".rlm". Note: You need to let the Command Prompt window exist as long as you want the license server to run. Closing the window will end the license server process. In this default configuration the license server also writes its log information to the same Command Prompt window. If you want to get the license server survive closing the Command Prompt, user logout etc. see the “Running the license server as a Windows service” section below. 10
  • 11. Checking the license server status The license server has an internal www-server waiting for connections at IP port 9000. So you can view the license server status information by connecting to that server with any web-browser (Internet Explorer, Firefox, Opera etc.). If running the browser at the license server machine the correct URL for the license server is http://localhost:9000 11
  • 12. Shutting down the license server To shut down the license server, run the command ".rlmdown RLM -q" in another Windows Command Prompt window. In the Command Prompt window where you started the server, you can now see also the shutdown messages. 12
  • 13. Running the license server as a Windows service If you need to be able to get the license server to survive closing the Command Prompt, user logout etc. it is possible by defining the license server to run as a Windows service. When running the license server through the Windows service mechanism the space characters in the directory paths cause problems. Therefore you must first create a new directory that does not have any space characters in its path (for example: “c:reprise”) and copy all the license server components from the default installation directory ("C:Program FilesZEdit Pro License Server") there. Then do the installation from that directory. In the license file you need to change the following: . • Add the path of the vendor daemon to the ISV line of the license file. The following changes are needed in the rlm startup command: • Add "-install_service" option to the rlm startup command. • Add a service name to the rlm startup command using the “-service_name” option. • Add the full path of the log file to the rlm startup command using "-dlog" option. • Add the full path of the license file to the rlm startup command using "-c" option. When the “-install_service” option is included in the rlm startup command, the command does not start the license server. It just adds a new service to the Windows service list. The installed service has to be separately started via the Windows Services control panel. The installed rlm service can also be removed from the Windows service list using the “-delete_service” option of the rlm command. The service has to be stopped via the Windows Services control panel before it can be removed. 13
  • 14. Installing rlm as a Windows service For example if you have the vendor daemon (deskartes.exe) and the license file (deskartes.lic) in the directory “c:reprise”, want the logfile (repriselog.txt) to be written in the same directory and the service to be called “rlm-zep”, you need to do the following: First change the ISV line in the license file to contain the path of the vendor daemon. ISV deskartes c:reprisedeskartes Then run the rlm startup command in the Windows command prompt. rlm -install_service -service_name rlm-zep -dlog c:repriserepriselog.txt -c c:reprisedeskartes.lic 14
  • 15. Starting rlm service Open the Windows Services control panel. In different versions of Windows it is found in slightly different paths. Windows Vista: “Start->Control Panel (Classic View): Administrative Tools: Services” Windows XP: “Start->Control Panel: Administrative Tools: Services” Windows 2000: “Start->Settings->Control Panel: Administrative Tools: Services” The “rlm-zep” service is now found in the list of services. Select the “rlm-zep” service and run the command “Start” from the “Action” menu. The status of the service is then changed to “Started” and the rlm license server is running. 15
  • 16. Stopping rlm service The rlm service is stopped via the Windows Services control panel in the same way as it was started. Open the Windows Services control panel. Select the “rlm-zep” service in the list and run the command “Stop” from the “Action” menu. The “Started” string then disappears from the “Status” field and the rlm license server is stopped. 16
  • 17. Deleting rlm service To remove the rlm service from the Windows service list run the following command in the Windows command prompt. rlm -delete_service -service_name rlm-zep The “rlm-zep” has then disappeared from the services list in the Windows Services control panel. 17
  • 18. The rlm license server log file When running the rlm license server as a Windows service, it writes its log information to the file defined in the rlm startup command (for example: “c:repriserepriselog.txt”). The log file contains the similar information that is shown in the startup command prompt in the default configuration. The information in the log file is useful especially when trying to resolve problems in running the rlm license server. Additional information For further details see "Running the rlm server as a service on Windows" in "The License Server" section, and the ISV line description in the "The License File" section, of the Reprise end user manual (http://www.reprisesoftware.com/RLM_Enduser.html). 18
  • 19. Floating license client configuration in ZEdit Pro The license system settings can be changed in ZEdit Pro by selecting the "Edit->Preferences" in the program menus. Choose the "Licensing" category in the Preferences window. Select the "Reprise floating license" as the License type and the "Use the license file path" in the Floating license file setting. Fill in the path to the license server in the corresponding text field. The path is of format "<IP-port>@<lic-server-hostname>, where <IP-port> is the port number of the license server (default: 2764) and the <lic-server-hostname> is the host name of the license server machine in the network. The correct port number and the hostname can be also checked from the HOST line of the license file (second and fourth field) 19
  • 20. or in the license server startup messages (lines: "License server started on ..." and "Using TCP/IP port ..."). 20
  • 21. Press "OK" When the program reminds you about need to restart the program, exit the ZEdit Pro and start it again. 21