<div dir="ltr">Hi list,<br><br>Today I tried to install rabbitmq-server on a debian chroot running on fedora and it crashed during package installation.<br><br>This was due to the fact that my chroot did not have its /proc mounted. After mouting the host /proc to the chroot /proc I could install rabbitmq-server just fine.<br>Before getting to this conclusion it took me a moment, not having any helpful information from the stack trace.<br><br>I was wondering if this situation could be improved, by checking if /proc is mounted else reporting that it should be mounted ?<br><br>#<br># For reproduction purpose<br>#<br>root@fedora:/ # mkdir /tmp/debian && cd /tmp <br>root@fedora:/tmp # debootstrap --no-check-gpg --arch ${ARCH:=amd64} --variant=minbase wheezy debian/ http://http.debian.net/debian<br>root@fedora:/tmp # chroot debian<br>root@debian:/ # apt-get install rabbitmq-server<br>...<br>Starting message broker: rabbitmq-serverFAILED - check /var/log/rabbitmq/startup_\{log, _err\} ... (warning).<br> failed!<br>...<br>root@debian:/ # exit<br>root@fedora:/tmp # mount -t proc proc debian/proc<br>root@debian:/ # apt-get install rabbitmq-server<br>...<br>Starting message broker: rabbitmq-server.<br>root@debian:/ #<br><br>Hope it helps,<br><br>--<br>Yanis Guenane<br></div>