BUG-19351: Zookeeper does not have shell access on Ubuntu and Debian Hosts.
Description: The /etc/passwd file has no shell access for Zookeeper:
zookeeper:x:108:115:ZooKeeper User,,,:/var/lib/zookeeper:/bin/false
Workaround: Modify the zookeeper user to have shell access. For example:
usermod zookeeper -s /bin/bash
BUG-28102: Update to headers needed for
/etc/init.d/ranger-admin
and/etc/init.d/ranger-usersyncscripts
after Ranger install on Debian 6.Problem: The init scripts installed by Ranger for admin and usersync are missing a comment block at the beginning (details https://wiki.debian.org/LSBInitScripts/), resulting in error messages.
Workaround: Add the following header to these scripts:
### BEGIN INIT INFO # Provides: scriptname # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start daemon at boot time # Description: Enable service provided by daemon. ### END INIT INFO