Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
startwindowsmixasservice [2022/03/24 16:22] wikiadmin |
startwindowsmixasservice [2025/03/24 11:05] (current) amyw [Setting up MIX as a Service on Windows] |
||
---|---|---|---|
Line 1: | Line 1: | ||
=====Setting up MIX as a Service on Windows===== | =====Setting up MIX as a Service on Windows===== | ||
- | This article provides instructions on how to set up MIX as a service on Windows. As a service you can use the Windows Service manager panel to stop and start MIX, and to set it to run automatically when Windows starts. | + | This article provides instructions on how to set up MIX as a service on Windows. As a service you can use the Windows Service manager panel to stop and start MIX, and to set it to run automatically when Windows starts. |
These instructions use the service wrapper (WinSW) from https:// | These instructions use the service wrapper (WinSW) from https:// | ||
Line 13: | Line 13: | ||
====Get the Service Wrapper Files==== | ====Get the Service Wrapper Files==== | ||
- | The first step to setting up the wrapper for MIX is to download the main executable and a configuration from https:// | + | The first step to setting up the wrapper for MIX is to download the main executable and a configuration from https:// |
WinSW can be set up on x86 (32-bit) or x64 (64-bit) and the executable you select to download will depend on the MIX deployment Windows version and architecture. The most straightforward setup is for Windows 10+ which has .net 4.61+ installed (it will be by default on Windows 10+ systems). Download the current release (not the beta release). As of the date of this article the current release is 2.11, and version 3 is in alpha phase and probably should not be used except for experimentation. The links below are for version 2.11 and you should check if there is a later version. | WinSW can be set up on x86 (32-bit) or x64 (64-bit) and the executable you select to download will depend on the MIX deployment Windows version and architecture. The most straightforward setup is for Windows 10+ which has .net 4.61+ installed (it will be by default on Windows 10+ systems). Download the current release (not the beta release). As of the date of this article the current release is 2.11, and version 3 is in alpha phase and probably should not be used except for experimentation. The links below are for version 2.11 and you should check if there is a later version. | ||
- | The executable to download for Windows 10 (and systems using .net 4.61 or newer) is https:// | + | The executable to download for Windows 10 (and systems using .net 4.61 or newer) is https:// |
- | Also download the simple configuration example (sample-minimal.xml) from https:// | + | Also download the simple configuration example (sample-minimal.xml) from https:// |
==== Copy the Wrapper for MIX==== | ==== Copy the Wrapper for MIX==== | ||
Line 139: | Line 139: | ||
</ | </ | ||
- | ====Final Setup: Copy the batch file to start MIX==== | + | ====Final Setup: Copy and edit the batch file to start MIX==== |
- | In the MIX directory is a subdirectory called " | + | In the MIX directory is a subdirectory called " |
<code batch> | <code batch> | ||
+ | set path=..\jre\bin; | ||
+ | java -version | ||
+ | set classpath=./ | ||
+ | rem ./ | ||
+ | rem java -Djava.io.tmpdir=C: | ||
+ | |||
+ | java -Dlog4j.configuration=log4j.console.xml -Xrunjdwp: | ||
</ | </ | ||
+ | |||
+ | change the line that says: | ||
+ | |||
+ | < | ||
+ | |||
+ | to | ||
+ | |||
+ | < | ||
+ | java -Dlog4j.configuration=log4j.xml -Xrunjdwp: | ||
+ | |||
+ | so that the log4j.xml file is changed from log4j.console.xml to log4j.xml. | ||
+ | |||
+ | ====Install the Service==== | ||
+ | |||
+ | Open a command shell in the mixruntime directory where you have been editing the files. | ||
+ | |||
+ | type this into the console window: | ||
+ | |||
+ | < | ||
+ | |||
+ | you should see some feedback in the console, similar to: | ||
+ | |||
+ | C: | ||
+ | 2022-03-24 15: | ||
+ | 2022-03-24 15: | ||
+ | |||
+ | ====Monitoring the Service==== | ||
+ | |||
+ | To see what you have accomplished, | ||
+ | |||
+ | When you run the Services panel you can find the " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | You can see that the service is set up to run automatically when Windows starts (more precisely, when the LocalSystem account starts). | ||
+ | |||
+ | if you ever need to uninstall the service, use mixruntime uninstall. | ||
+ | |||
+ | ====Starting the Service==== | ||
+ | |||
+ | You can start MIX by right clicking in the Status column of the Services panel for the MIXRuntime service and selecting Start. After you do this you will see that the service is running, so MIX is running. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | You can also start the service in the command shell (or write a batch file to do this) by typing " | ||
+ | |||
+ | ====Stopping the Service==== | ||
+ | |||
+ | The service can be stopped by right clicking on the " | ||
+ | |||
+ | |||
+ | |||
+ | |||