云计算课程实验
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.

59 lines
1.6 KiB

  1. #!/bin/bash
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License. See accompanying LICENSE file.
  14. #
  15. # Set kms specific environment variables here.
  16. # Settings for the Embedded Tomcat that runs KMS
  17. # Java System properties for KMS should be specified in this variable
  18. #
  19. # export CATALINA_OPTS=
  20. # KMS logs directory
  21. #
  22. # export KMS_LOG=${KMS_HOME}/logs
  23. # KMS temporary directory
  24. #
  25. # export KMS_TEMP=${KMS_HOME}/temp
  26. # The HTTP port used by KMS
  27. #
  28. # export KMS_HTTP_PORT=16000
  29. # The Admin port used by KMS
  30. #
  31. # export KMS_ADMIN_PORT=`expr ${KMS_HTTP_PORT} + 1`
  32. # The maximum number of Tomcat handler threads
  33. #
  34. # export KMS_MAX_THREADS=1000
  35. # The maximum size of Tomcat HTTP header
  36. #
  37. # export KMS_MAX_HTTP_HEADER_SIZE=65536
  38. # The location of the SSL keystore if using SSL
  39. #
  40. # export KMS_SSL_KEYSTORE_FILE=${HOME}/.keystore
  41. # The password of the SSL keystore if using SSL
  42. #
  43. # export KMS_SSL_KEYSTORE_PASS=password
  44. # The full path to any native libraries that need to be loaded
  45. # (For eg. location of natively compiled tomcat Apache portable
  46. # runtime (APR) libraries
  47. #
  48. # export JAVA_LIBRARY_PATH=${HOME}/lib/native