Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
mixconfigurationproperties [2022/09/22 22:01] wikiadmin created |
mixconfigurationproperties [2022/09/26 18:23] (current) wikiadmin [mix.port] |
||
---|---|---|---|
Line 13: | Line 13: | ||
</ | </ | ||
- | There are a set of common | + | The MIX runtime configuration has traditionally been named " |
+ | |||
+ | <code properties> | ||
+ | #MIX properties | ||
+ | # | ||
+ | # remember that you MUST put a UnlockSever in the VIB Logic | ||
+ | # if you use a non-zero synclock time | ||
+ | synclock.timeout = 0 | ||
+ | # | ||
+ | debug.level = 0 | ||
+ | mix.port=7226 | ||
+ | # | ||
+ | ntp.setter=date | ||
+ | ntp.pollinterval=3600 | ||
+ | ntp.dateformat=MMddHHmmyyyy.ss | ||
+ | # | ||
+ | |||
+ | # the parameter below is an example of setting a non-default OPC Gateway port (other than port 5223) | ||
+ | # | ||
+ | |||
+ | #setting this tells all opc beans to simulate | ||
+ | # | ||
+ | |||
+ | #for OPCUA | ||
+ | exported.only=true | ||
+ | # | ||
+ | export.classpath=./ | ||
+ | |||
+ | #simulate all devices | ||
+ | # | ||
+ | |||
+ | # The root of the web server | ||
+ | htmlroot.dir=./ | ||
+ | # The default project. | ||
+ | mix.project=mix | ||
+ | # The disk directory as used by HSQLDB and others. | ||
+ | diskdir=./ | ||
+ | </ | ||
+ | |||
+ | ====More Information and Options==== | ||
+ | |||
+ | ===authenticate=== | ||
+ | |||
+ | The authenticate property defaults to true but can be set to false to avoid the login panel for the MIX web view. | ||
+ | |||
+ | ===mix.port=== | ||
+ | |||
+ | By default MIX runs on port 7226. You can change this port to a different value and restart MIX. The URL to access the web view will change from < | ||