void-packages/srcpkgs/mysql/INSTALL
Juan RP 1534f5be21 Added mysql-5.1.14 build template.
--HG--
extra : convert_revision : 7414719ac4625fd2f8805d18fbd71096cba41eb6
2010-03-04 13:50:13 +01:00

34 lines
870 B
Plaintext

# *-*-shell-*-*
#
case ${ACTION} in
post)
cat << _EOF
==========================================================================
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER
To do so, start the server with:
$ /etc/init.d/mysqld start
and then issue the following commands:
$ mysqladmin -u root password 'new-password'
$ mysqladmin -u root -h $hostname password 'new-password'
Alternatively you can run:
$ mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
Don't forget that you should also tweak /etc/mysql/my.cnf
for server settings. Additional configuration files are available
in the /usr/share/mysql/my-*.cnf files.
==========================================================================
_EOF
;;
esac