Soren Hansen wrote:

> Alright then. I've added a "resetpasswd" option to /etc/init.d/mysql
> which asks for a new password (using whiptail) and sets it accordingly.

Well, we have postfix which asks questions on installation, so adding 
questions to mysql shouldn't be a big problem.

But, we should avoid that always, if we can. I think we can with mysql - 
don't start it if password is not set.

For example, init script, start function:

if [ -e /etc/mysql/dont_start ]; then
        echo "Set MySQL root password or delete /etc/mysql/dont_start"
        exit 1
fi

Then provide easy to use tool to change password.

This gives an option of securing mysql or using it without password.

-- 
Root password policy for mysql
https://bugs.launchpad.net/bugs/119075
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to