Я не очень знаком с vagrant и у меня есть образ для Ubuntu 16.04 с откликовым скриптом, который устанавливает и запускает приложение сервера tomcat8.Я пошел, чтобы установить его на хосте Windows, и служба tomcat не запускается каждый раз.
В результате запуска ANSIBLE Playbook:
TASK [Restart tomcat] **********************************************************
fatal: [localhost]: FAILED! => {"changed": true, "cmd": "service tomcat8 restart", "delta": "0:00:00.046020", "end": "2019-02-02 17:55:28.417905", "failed": true, "rc": 1, "start": "2019-02-02 17:55:28.371885", "stderr": "Job for tomcat8.service failed because the control process exited with error code. See \"systemctl status tomcat8.service\" and \"journalctl -xe\" for details.", "stdout": "", "stdout_lines": [], "warnings": ["Consider using service module rather than running service"]}
Результат попыткиrun sudo service tomcat8 restart
is:
Job for tomcat8.service failed because the control process exited with error code. See "systemctl status tomcat8.service" and "journalctl -xe" for details.
Проверка состояния службы с помощью sudo service tomcat8 status
дает:
● tomcat8.service - LSB: Start Tomcat.
Loaded: loaded (/etc/init.d/tomcat8; bad; vendor preset: enabled)
Active: failed (Result: exit-code) since Mon 2019-02-04 16:15:19 UTC; 46s ago
Docs: man:systemd-sysv-generator(8)
Process: 10703 ExecStop=/etc/init.d/tomcat8 stop (code=exited, status=0/SUCCESS)
Process: 11859 ExecStart=/etc/init.d/tomcat8 start (code=exited, status=127)
Feb 04 16:15:19 vagrant systemd[1]: Starting LSB: Start Tomcat....
Feb 04 16:15:19 vagrant tomcat8[11859]: [58B blob data]
Feb 04 16:15:19 vagrant systemd[1]: tomcat8.service: Control process exited, code=exited status=127
Feb 04 16:15:19 vagrant systemd[1]: Failed to start LSB: Start Tomcat..
Feb 04 16:15:19 vagrant systemd[1]: tomcat8.service: Unit entered failed state.
Feb 04 16:15:19 vagrant systemd[1]: tomcat8.service: Failed with result 'exit-code'.
Я попытался переустановить tomcat8 с помощью apt-get, и это вызвало ошибки с prermи затем postinst, поэтому я удалил все файлы tomcat8.prerm, tomcat8.preinst, tomcat8.postinst и т. д. и попытался снова, но безуспешно.(Честно говоря, не помню точный результат этого - при необходимости я могу попробовать еще раз и обновить этот пост)
Я также пытался вручную установить tomcat8 перед запуском ANSIB Playbook, и произошло то же самое.
Мне просто кажется, что я только что получил дикие удары и не уверен, где на самом деле начать копать глубоко, поэтому любые идеи очень ценятся.
ОБНОВЛЕНИЕ: Оказывается, когда это работает на macOSхост, эта ошибка не возникает ..
ОБНОВЛЕНИЕ ЧАСТЬ 2: Я отследил проблемного потомка в книге игр:
- name: Configure tomcat memory
template:
src: /home/vagrant/shared/resources/tomcat8
dest: /etc/default/tomcat8
mode: 0640
force: True
Если я удаляю это из книги игр, эта ошибка не 'т происходит.Я не думаю, что это связано с содержимым файла tomcat8, потому что я попытался закомментировать все строки, чтобы вернуться к значениям по умолчанию, и все еще имел проблему.Я предполагаю, что это что-то, связанное с разрешениями, может быть?Тем не менее, вот что находится в файле, который он копирует:
# Run Tomcat as this user ID. Not setting this or leaving it blank will use the
# default of tomcat8.
TOMCAT8_USER=tomcat8
# Run Tomcat as this group ID. Not setting this or leaving it blank will use
# the default of tomcat8.
TOMCAT8_GROUP=tomcat8
# The home directory of the Java development kit (JDK). You need at least
# JDK version 7. If JAVA_HOME is not set, some common directories for
# OpenJDK and the Oracle JDK are tried.
#JAVA_HOME=/usr/lib/jvm/java-7-openjdk
# You may pass JVM startup parameters to Java here. If unset, the default
# options will be: -Djava.awt.headless=true -Xmx128m -XX:+UseConcMarkSweepGC
#
# Use "-XX:+UseConcMarkSweepGC" to enable the CMS garbage collector (improved
# response time). If you use that option and you run Tomcat on a machine with
# exactly one CPU chip that contains one or two cores, you should also add
# the "-XX:+CMSIncrementalMode" option.
#JAVA_OPTS="-Djava.awt.headless=true -Xmx128m -XX:+UseConcMarkSweepGC" # original setting
JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom -Djava.awt.headless=true -Xmx1024m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -Dapp.profile=vm"
# To enable remote debugging uncomment the following line.
# You will then be able to use a java debugger on port 8000.
JAVA_OPTS="${JAVA_OPTS} -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"
# Java compiler to use for translating JavaServer Pages (JSPs). You can use all
# compilers that are accepted by Ant's build.compiler property.
#JSP_COMPILER=javac
# Use the Java security manager? (yes/no, default: no)
#TOMCAT8_SECURITY=no
# Number of days to keep logfiles in /var/log/tomcat8. Default is 14 days.
#LOGFILE_DAYS=14
# Whether to compress logfiles older than today's
#LOGFILE_COMPRESS=1
# Location of the JVM temporary directory
# WARNING: This directory will be destroyed and recreated at every startup !
#JVM_TMP=/tmp/tomcat8-temp
# If you run Tomcat on port numbers that are all higher than 1023, then you
# do not need authbind. It is used for binding Tomcat to lower port numbers.
# (yes/no, default: no)
#AUTHBIND=no
#GEOSERVER_DATA_DIR=/efs/geoserver_data