Quote:
Originally Posted by drewb0y
when I first ran back-res to test it out I got
Code:
/etc/back-res: line 229: /tmp/tmpbck/maildata: No such file or directory
/etc/back-res: line 235: /tmp/tmpbck/maildata: No such file or directory
/etc/back-res: line 220: /tmp/tmpbck/maildata: No such file or directory
/etc/back-res: line 220: /tmp/tmpbck/maildata: No such file or directory
/etc/back-res: line 220: /tmp/tmpbck/maildata: No such file or directory
|
Solved by deleting the backup directory that I manually created instead of just letting the script do it.
Quote:
Code:
mysqlcheck: Got error: 1045: Access denied for user 'root'@'localhost' (using password: YES) when trying to connect
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
|
Solved: my password had some characters init that confused it I guess, it was 15 characters long with mixed Upper and lower case characters, numbers and 2 special characters, an @ and a $. Not sure which messed it up, but changing
Code:
dbpassword="mypassword"
to
Code:
dbpassword='mypassword'
(single quotes on either side instead of double) seems to have fixed that.
After that - just a few errors for the default script trying to back up non existent directories such as
Code:
/bin/tar: /lib64: Cannot stat: No such file or directory
Just a little more modifying and I think I am good to go.
For
go0ogl3 :
What is your OS version? Just curious.. Thanks for the great work!