Skip to content

Instantly share code, notes, and snippets.

@kazuhisa
Created July 9, 2015 09:29
Show Gist options
  • Save kazuhisa/33a909b20d651d0caa95 to your computer and use it in GitHub Desktop.
Save kazuhisa/33a909b20d651d0caa95 to your computer and use it in GitHub Desktop.
# Installing Xymon
ADD ./xymon-4.3.21.tar.gz /usr/local/src/
RUN cd /usr/local/src/xymon-4.3.21 && ls -l
RUN cd /usr/local/src/xymon-4.3.21 && ./configure --server #ここで落ちる
RUN cd /usr/local/src/xymon-4.3.21 && make && make install
# 次のように変更
ADD ./xymon-4.3.21.tar.gz /usr/local/src/
RUN cd /usr/local/src/xymon-4.3.21 && ls -l
RUN /usr/local/src/xymon-4.3.21/configure --server #変更
RUN cd /usr/local/src/xymon-4.3.21 && make && make install
@kazuhisa
Copy link
Author

kazuhisa commented Jul 9, 2015

Step 10 : RUN /usr/local/src/xymon-4.3.21/configure --server
 ---> Running in 9d0b8af221c9
/usr/local/src/xymon-4.3.21/configure: /usr/local/src/xymon-4.3.21/configure.server: /bin/sh: bad interpreter: Text file busy
/usr/local/src/xymon-4.3.21/configure: line 21: /usr/local/src/xymon-4.3.21/configure.server: Success
The command '/bin/sh -c /usr/local/src/xymon-4.3.21/configure --server' returned a non-zero code: 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment