08-04-2009 09:45 AM
08-11-2009 04:14 AM
http://forums.alfresco.com/en/viewtopic.php?f=8&t=20852
08-11-2009 07:42 AM
What I am not 100% sure of is what version this is
09-22-2009 11:10 AM
09-22-2009 11:56 AM
10-04-2009 08:48 AM
Hi thereHello,
Just saw your post about installing Alfresco 3 in Ubuntu. I have installed mine, Alfresco 3.0, in Ubuntu 8. It works fine, (just installed Alfresco, not Studio nor Shared). However I have a problem everytime I need to stop and restart Alfresco for backups.
After stoping Alfresco, the only way to get it to work again, is restarting the machine again.
Did you have the same problem?, if so can you explain me how you solved it?
I have created another post with more details about thishttp://forums.alfresco.com/en/viewtopic.php?f=8&t=20852
Thanks a lot in advance!!
#!/bin/bash
PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin
# USER VARIABLES
MYSQLUSER=xxxx
MYSQLPWD=xxxxxxx
MYSQLHOST=localhost
MYSQLBACKUPDIR=/root/mysql_backup
# PATH VARIABLES
MK=/bin/mkdir;
RM=/bin/rm;
GREP=/bin/grep;
MYSQL=/usr/bin/mysql;
MYSQLDUMP=/usr/bin/mysqldump;
# CREATE MYSQL BACKUP
# Remove existing backup dir
$RM -Rf $MYSQLBACKUPDIR
# Create new backup dir
$MK $MYSQLBACKUPDIR
#Dump new files
for i in $(echo 'SHOW DATABASES;' | $MYSQL -u$MYSQLUSER -p$MYSQLPWD -h$MYSQLHOST|$GREP -v '^Database$'); do
$MYSQLDUMP \
-u$MYSQLUSER -p$MYSQLPWD -h$MYSQLHOST \
-Q -c -C –add-drop-table –add-locks –quick –lock-tables \
$i > $MYSQLBACKUPDIR/$i.sql;
done;
10-21-2009 01:18 PM
12-11-2009 01:04 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.