1. #********************************************************************
  2. # Wrapper Properties
  3. #********************************************************************
  4. # Working Directory
  5. wrapper.working.dir=../../
  6. # Java Application
  7. # wrapper.java.command=java
  8. wrapper.java.command=C:\Program Files (x86)\Java\jdk7\bin\java
  9. # Tell the Wrapper to log the full generated Java command line.
  10. wrapper.java.command.loglevel=INF
  11. # Java Main class. This class must implement the WrapperListener interface
  12. # or guarantee that the WrapperManager class is initialized. Helper
  13. # classes are provided to do this for you. See the Integration section
  14. # of the documentation for details.
  15. wrapper.java.mainclass=com.cenqua.fisheye.FisheyeServiceWrapper
  16. # Java Classpath (include wrapper.jar) Add class path elements as
  17. # needed starting from 1 (add lib FIRST so that log4j config gets loaded first)
  18. wrapper.java.classpath.1=./fisheyeboot.jar
  19. wrapper.java.classpath.2=wrapper/lib/*.jar
  20. # Java Library Path (location of Wrapper.DLL or libwrapper.so)
  21. wrapper.java.library.path.1=wrapper/lib
  22. wrapper.java.library.path.2=lib/native/linux-i386
  23. wrapper.java.library.path.3=lib/native/osx-ppc
  24. wrapper.java.library.path.4=lib/native/solaris-sparc
  25. wrapper.java.library.path.5=lib/native/win32-x86
  26. # Java Additional Parameters
  27. wrapper.java.additional.1=-server
  28. wrapper.java.additional.2=-showversion
  29. wrapper.java.additional.3=-Djava.awt.headless=true
  30. # JDK 1.5 Additional Parameters for jmx
  31. wrapper.java.additional.4=-Dcom.sun.management.jmxremote
  32. wrapper.java.additional.5=-Dcom.sun.management.jmxremote.port=4242
  33. wrapper.java.additional.6=-Dcom.sun.management.jmxremote.authenticate=false
  34. wrapper.java.additional.7=-Dcom.sun.management.jmxremote.ssl=false
  35. wrapper.java.additional.8=-Dcom.sun.management.jmxremote.authenticate=false
  36. wrapper.java.additional.9=-Dcom.sun.management.jmxremote.password.file=./wrapper/jmxremote.password
  37. wrapper.java.additional.10=-Dwrapper.mbean.name="wrapper:type=Java Service Wrapper Control"
  38. wrapper.java.additional.11=-Dfisheye.inst="C:\Program Files\Atlassian\Application Data\FishEye\"
  39. wrapper.java.additional.12=-XX:MaxPermSize=128m
  40. wrapper.java.additional.13=-Xrs
  41. # Initial Java Heap Size (in MB)
  42. wrapper.java.initmemory=256
  43. # Maximum Java Heap Size (in MB)
  44. wrapper.java.maxmemory=1024
  45. # Application parameters. Add parameters as needed starting from 1
  46. # The first application parameter is the name of the class whose main
  47. # method is to be called when the application is launched. The class
  48. # name is followed by the number of parameters to be passed to its main
  49. # method. Then comes the actual parameters.
  50. wrapper.app.parameter.1=com.cenqua.fisheye.FishEyeCtl
  51. wrapper.app.parameter.2=1
  52. wrapper.app.parameter.3=start
  53. # The start parameters are followed by the name of the class whose main
  54. # method is to be called to stop the application. The stop class name
  55. # is followed by a flag which controls whether or not the Wrapper should
  56. # wait for all non daemon threads to complete before exiting the JVM.
  57. # The flag is followed by the number of parameters to be passed to the
  58. # stop class's main method. Finally comes the actual parameters.
  59. wrapper.app.parameter.4=com.cenqua.fisheye.FishEyeCtl
  60. wrapper.app.parameter.5=true
  61. wrapper.app.parameter.6=1
  62. wrapper.app.parameter.7=stop
  63. #********************************************************************
  64. # Wrapper Logging Properties
  65. #********************************************************************
  66. # Format of output for the console. (See docs for formats)
  67. wrapper.console.format=M
  68. # Log Level for console output. (See docs for log levels)
  69. wrapper.console.loglevel=INFO
  70. # Log file to use for wrapper output logging.
  71. wrapper.logfile=var/log/wrapper.log
  72. # Format of output for the log file. (See docs for formats)
  73. wrapper.logfile.format=LPTM
  74. # Log Level for log file output. (See docs for log levels)
  75. wrapper.logfile.loglevel=INFO
  76. # Maximum size that the log file will be allowed to grow to before
  77. # the log is rolled. Size is specified in bytes. The default value
  78. # of 0, disables log rolling. May abbreviate with the 'k' (kb) or
  79. # 'm' (mb) suffix. For example: 10m = 10 megabytes.
  80. wrapper.logfile.maxsize=50m
  81. # Maximum number of rolled log files which will be allowed before old
  82. # files are deleted. The default value of 0 implies no limit.
  83. wrapper.logfile.maxfiles=10
  84. # Log Level for sys/event log output. (See docs for log levels)
  85. wrapper.syslog.loglevel=NONE
  86. #********************************************************************
  87. # Wrapper Windows Properties
  88. #********************************************************************
  89. # Title to use when running as a console
  90. wrapper.console.title=Fisheye
  91. #********************************************************************
  92. # Wrapper Windows NT/2000/XP Service Properties
  93. #********************************************************************
  94. # WARNING - Do not modify any of these properties when an application
  95. # using this configuration file has been installed as a service.
  96. # Please uninstall the service before modifying this section. The
  97. # service can then be reinstalled.
  98. # Name of the service
  99. wrapper.ntservice.name=Fisheye
  100. # Display name of the service
  101. wrapper.ntservice.displayname=Fisheye
  102. # Description of the service
  103. wrapper.ntservice.description=Fisheye
  104. # Service dependencies. Add dependencies as needed starting from 1
  105. wrapper.ntservice.dependency.1=
  106. # Mode in which the service is installed. AUTO_START or DEMAND_START
  107. wrapper.ntservice.starttype=AUTO_START
  108. # Allow the service to interact with the desktop.
  109. wrapper.ntservice.interactive=false