You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wrapper.conf 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Path to JVM executable. By default it must be available in PATH.
  2. # Can be an absolute path, for example:
  3. #wrapper.java.command=/path/to/my/jdk/bin/java
  4. wrapper.java.command=java
  5. #
  6. # DO NOT EDIT THE FOLLOWING SECTIONS
  7. #
  8. #********************************************************************
  9. # Wrapper Java
  10. #********************************************************************
  11. wrapper.java.additional.1=-Dsonar.wrapped=true
  12. wrapper.java.additional.2=-Djava.awt.headless=true
  13. wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
  14. wrapper.java.classpath.1=../../lib/sonar-application-@sqversion@.jar
  15. wrapper.java.classpath.2=../../lib/jsw/wrapper-3.2.3.jar
  16. wrapper.java.classpath.3=../../lib/sonar-shutdowner-@sqversion@.jar
  17. wrapper.java.library.path.1=./lib
  18. wrapper.app.parameter.1=org.sonar.application.App
  19. wrapper.java.initmemory=8
  20. wrapper.java.maxmemory=32
  21. #********************************************************************
  22. # Wrapper Logs
  23. #********************************************************************
  24. wrapper.console.format=PM
  25. wrapper.console.loglevel=INFO
  26. wrapper.logfile.format=M
  27. wrapper.logfile.loglevel=INFO
  28. wrapper.logfile.rollmode=DATE
  29. wrapper.logfile=../../logs/sonar.YYYYMMDD.log
  30. # Maximum size that the log file will be allowed to grow to before
  31. # the log is rolled. Size is specified in bytes. The default value
  32. # of 0, disables log rolling. May abbreviate with the 'k' (kb) or
  33. # 'm' (mb) suffix. For example: 10m = 10 megabytes.
  34. #wrapper.logfile.maxsize=0
  35. # Maximum number of rolled log files which will be allowed before old
  36. # files are deleted. The default value of 0 implies no limit.
  37. wrapper.logfile.maxfiles=7
  38. # Log Level for sys/event log output. (See docs for log levels)
  39. wrapper.syslog.loglevel=NONE
  40. #********************************************************************
  41. # Wrapper Windows Properties
  42. #********************************************************************
  43. # Title to use when running as a console
  44. wrapper.console.title=SonarQube
  45. # Disallow start of multiple instances of an application at the same time on Windows
  46. wrapper.single_invocation=true
  47. #********************************************************************
  48. # Wrapper Windows NT/2000/XP Service Properties
  49. #********************************************************************
  50. # WARNING - Do not modify any of these properties when an application
  51. # using this configuration file has been installed as a service.
  52. # Please uninstall the service before modifying this section. The
  53. # service can then be reinstalled.
  54. # Name of the service
  55. wrapper.ntservice.name=SonarQube
  56. # Display name of the service
  57. wrapper.ntservice.displayname=SonarQube
  58. # Description of the service
  59. wrapper.ntservice.description=SonarQube
  60. # Service dependencies. Add dependencies as needed starting from 1
  61. wrapper.ntservice.dependency.1=
  62. # Mode in which the service is installed. AUTO_START or DEMAND_START
  63. wrapper.ntservice.starttype=AUTO_START
  64. # Allow the service to interact with the desktop.
  65. wrapper.ntservice.interactive=false
  66. #********************************************************************
  67. # Forking Properties
  68. #********************************************************************
  69. wrapper.disable_restarts=TRUE
  70. wrapper.ping.timeout=0
  71. wrapper.shutdown.timeout=0
  72. wrapper.jvm_exit.timeout=0