vm.args 968 B

12345678910111213141516171819202122232425262728
  1. # Licensed under the Apache License, Version 2.0 (the "License"); you may not
  2. # use this file except in compliance with the License. You may obtain a copy of
  3. # the License at
  4. #
  5. # http://www.apache.org/licenses/LICENSE-2.0
  6. #
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  9. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  10. # License for the specific language governing permissions and limitations under
  11. # the License.
  12. # Ensure that the Erlang VM listens on a known port
  13. -kernel inet_dist_listen_min 9100
  14. -kernel inet_dist_listen_max 9100
  15. # Tell kernel and SASL not to log anything
  16. -kernel error_logger silent
  17. -sasl sasl_error_logger false
  18. # Use kernel poll functionality if supported by emulator
  19. +K true
  20. # Start a pool of asynchronous IO threads
  21. +A 16
  22. # Comment this line out to enable the interactive Erlang shell on startup
  23. +Bd -noinput