abhishekkuamr

Wrapper.conf file

Oct 12th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. #********************************************************************
  2. # Bamboo Service Wrapper Properties
  3. #
  4. #********************************************************************
  5.  
  6. wrapper.app.parameter.1=com.atlassian.bamboo.server.Server
  7.  
  8. # The Bamboo port number - this is the port number the Bamboo web server listens on.
  9. #
  10. wrapper.app.parameter.2=8085
  11.  
  12. # The location of the Bamboo web application files
  13. #
  14. wrapper.app.parameter.3=../webapp
  15.  
  16. # The webapp context path. Which must be of form / or /your-context
  17. #
  18. wrapper.app.parameter.4=/
  19.  
  20. # Specify which version of java you use to run Bamboo
  21. #
  22. wrapper.java.command=java
  23.  
  24. wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp
  25.  
  26. wrapper.java.classpath.1=lib/*.jar
  27. wrapper.java.classpath.2=../lib
  28. # Bamboo classes
  29. wrapper.java.classpath.3=../webapp/WEB-INF/classes
  30. # Bamboo library jars
  31. wrapper.java.classpath.4=../webapp/WEB-INF/lib/commons-lang-*.jar
  32. wrapper.java.classpath.5=../webapp/WEB-INF/lib/servlet-api-2.5*.jar
  33. wrapper.java.classpath.6=../webapp/WEB-INF/lib/jetty-*.jar
  34. wrapper.java.classpath.7=../webapp/WEB-INF/lib/mail-*.jar
  35.  
  36.  
  37. wrapper.java.library.path.1=lib
  38. wrapper.java.additional.1=-server
  39. wrapper.java.additional.2=-Dorg.eclipse.jetty.xml.XmlParser.Validating=false
  40. wrapper.java.additional.3=-Xms256m
  41. wrapper.java.additional.4=-Xmx812m
  42. wrapper.java.additional.5=-XX:MaxPermSize=256m
  43. wrapper.java.additional.6=-Djava.awt.headless=true
  44.  
  45. wrapper.working.dir=.
  46.  
  47. #********************************************************************
  48. # JDK 1.5 Additional Parameters for jmx
  49. #
  50. # Uncomment lines "wrapper.java.additional.2" to "wrapper.java.additional.7"
  51. # to enable JMX remove monitoring of the Bamboo Server. ** DONT FORGET
  52. # to define authentication passwords in the conf/jmxremote.password **
  53. #********************************************************************
  54. #wrapper.java.additional.2=-Dcom.sun.management.jmxremote
  55. #wrapper.java.additional.3=-Dcom.sun.management.jmxremote.port=4242
  56. #wrapper.java.additional.4=-Dcom.sun.management.jmxremote.authenticate=true
  57. #wrapper.java.additional.5=-Dcom.sun.management.jmxremote.ssl=false
  58. #wrapper.java.additional.6=-Dcom.sun.management.jmxremote.password.file=conf/jmxremote.password
  59. #wrapper.java.additional.7=-Dwrapper.mbean.name="wrapper:type=Java Service Wrapper Control"
  60.  
  61. #********************************************************************
  62. # Wrapper Logging Properties
  63. #********************************************************************
  64.  
  65. wrapper.console.format=PM
  66. wrapper.console.loglevel=INFO
  67. wrapper.logfile=../logs/bamboo.log
  68. wrapper.logfile.format=LPTM
  69. wrapper.logfile.loglevel=INFO
  70. wrapper.logfile.maxsize=10m
  71. wrapper.logfile.maxfiles=10
  72. wrapper.syslog.loglevel=NONE
  73.  
  74. #********************************************************************
  75. # Wrapper Windows Properties
  76. #********************************************************************
  77. # Title to use when running as a console
  78. wrapper.console.title=Bamboo
  79.  
  80. #********************************************************************
  81. # Wrapper Windows NT/2000/XP Service Properties
  82. #********************************************************************
  83. # WARNING - Do not modify any of these properties when an application
  84. # using this configuration file has been installed as a service.
  85. # Please uninstall the service before modifying this section. The
  86. # service can then be reinstalled.
  87.  
  88. # Name of the service
  89. wrapper.ntservice.name=bamboo
  90.  
  91. # Display name of the service
  92. wrapper.ntservice.displayname=Bamboo build server
  93.  
  94. # Description of the service
  95. wrapper.ntservice.description=A Continuous Integration Server
  96.  
  97. # Service dependencies. Add dependencies as needed starting from 1
  98. wrapper.ntservice.dependency.1=
  99.  
  100. # Mode in which the service is installed. AUTO_START or DEMAND_START
  101. wrapper.ntservice.starttype=AUTO_START
  102.  
  103. # Allow the service to interact with the desktop.
  104. wrapper.ntservice.interactive=false
Advertisement
Add Comment
Please, Sign In to add comment