installing Funambol on ubuntu 9.10 x86_64 using MySQL as a backend

13 Feb

NOTE: this posting is still very incomplete!! make sure the 32-bit variants of Java and the corresponding MySQL-connector are installed: sudo aptitude install ia32-sun-java6-bin libmysql-java then, adjust the install.properties to use MySQL: —- ds-server/install.properties.orig 2010-02-13 16:54:13.000000000 +0100 +++ ds-server/install.properties 2010-02-13 … Read More »

MySQL backup user

20 Jan

to create a user for doing automated backups of a MySQL installation that doesn’t have more than the necessary privileges, use the following statement: GRANT RELOAD, SELECT, LOCK TABLES ON . TO ‘backup’@‘localhost’ IDENTIFIED BY ‘some_reasonable_password’;