Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Narcis Garcia

Pages: [1]
1
Installation and Upgrades / Re: MYSQL password for Zentyal 2.0
« on: August 20, 2012, 12:26:40 pm »
My workaround before reinstall/reconfigure:

Code: [Select]
cat /etc/zentyal/logs.conf | grep -ie "_db"
echo $(sudo cat /var/lib/*/conf/*-mysql.passwd)
mysql -u root -p
CREATE DATABASE dbname;
GRANT ALL ON dbname.* TO dbuser@localhost IDENTIFIED BY "dbpasswd";
FLUSH PRIVILEGES;
QUIT;

Pages: [1]