Hi all, I having this problem: ERROR: Stopped: Database already contains some tables. On my secoundry server . I type 'y' for 'Shall this server join...' and just hit enter for the default database name. Worked fine on my Virtual Mechines but in the real world it isn't working Thanks in advance, Marty PS Primary server is working fine...
The error means that there is already a database with that name on the slave server which contains database tables. Please delete that database on the slave before you install ispconfig on it. Also be sure that you have not accidently entered the login details for the master database when you got asked for the local mysql db. The details for the master are asked later after you selected to join a master server.
Thanks now im getting the following output, note im using a new user called 'remotesys' because i had problems with root remotly, i have granted remotesys all privilges Adding ISPConfig server record to database. ERROR: Unable to create database user in master database: ispcsrv2 Error: GRANT command denied to user 'remotesys'@'192.168.11.111' for table 'server'
Fixed it, the user needed to be able to GRANT: Code: mysql> GRANT ALL PRIVILEGES -> ON *.* -> TO [email protected] -> IDENTIFIED BY 'newpassword' -> WITH GRANT OPTION; Thanks for your help