[Neo4j] Online-backup error

2011-08-31 Thread sometime
I use
bin/neo4j-backup -full -from single://192.168.11.88:7474 -to
/home/sometime/backup

output from console:
Performing full backup from 'single://192.168.11.88:7474'
Couldn't connect to 'single://192.168.11.88:7474',
org.neo4j.com.ComException: Channel has been closed

strange... 
any idea?

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/Online-backup-error-tp3298211p3298211.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Online-backup error

2011-08-31 Thread Chris Gioran
Hi,

though the command syntax seems ok, i find it strange that you try to
backup from the webadmin port (7474). Have you actually changed the
configuration to enable backup from port 7474? If not, and provided
you have not explicitly set the backup port to something different,
try as

bin/neo4j-backup -full -from single://192.168.11.88 -to
/home/sometime/backup

since the client defaults to 6362, which is where the backup server
listens to by default.

If, for some reason, you need to change the backup port, change in
conf/neo4j.properties the line

enable_online_backup=true

to

enable_online_backup=port=your_port

and the command to

bin/neo4j-backup -full -from single://192.168.11.88:your_port -to
/home/sometime/backup

and you should be fine.

hope that helps,
CG

On Wed, Aug 31, 2011 at 3:43 PM, sometime dons...@gmail.com wrote:
 I use
 bin/neo4j-backup -full -from single://192.168.11.88:7474 -to
 /home/sometime/backup

 output from console:
 Performing full backup from 'single://192.168.11.88:7474'
 Couldn't connect to 'single://192.168.11.88:7474',
 org.neo4j.com.ComException: Channel has been closed

 strange...
 any idea?

 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/Online-backup-error-tp3298211p3298211.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


Re: [Neo4j] Online-backup error

2011-08-31 Thread sometime
Thenak you!
But now error:


Performing full backup from 'single://192.168.11.88'
org.neo4j.com.ComException:
org.jboss.netty.handler.queue.BlockingReadTimeoutException
at
org.neo4j.com.DechunkingChannelBuffer.readNext(DechunkingChannelBuffer.java:61)
at org.neo4j.com.Client$2.readNext(Client.java:166)
at
org.neo4j.com.DechunkingChannelBuffer.readNextChunk(DechunkingChannelBuffer.java:79)
at
org.neo4j.com.DechunkingChannelBuffer.readNextChunkIfNeeded(DechunkingChannelBuffer.java:73)
at
org.neo4j.com.DechunkingChannelBuffer.readUnsignedByte(DechunkingChannelBuffer.java:443)
at
org.neo4j.com.BlockLogReader.readNextBlock(BlockLogReader.java:43)
at
org.neo4j.com.BlockLogReader.readAsMuchAsPossible(BlockLogReader.java:85)
at org.neo4j.com.BlockLogReader.read(BlockLogReader.java:70)
at org.neo4j.com.ToFileStoreWriter.write(ToFileStoreWriter.java:53)
at
org.neo4j.com.Protocol$FileStreamsDeserializer.read(Protocol.java:95)
at
org.neo4j.com.Protocol$FileStreamsDeserializer.read(Protocol.java:78)
at org.neo4j.com.Client.sendRequest(Client.java:175)
at org.neo4j.backup.BackupClient.fullBackup(BackupClient.java:43)
at org.neo4j.backup.OnlineBackup.full(OnlineBackup.java:76)
at org.neo4j.backup.BackupTool.doBackup(BackupTool.java:119)
at org.neo4j.backup.BackupTool.main(BackupTool.java:83)
Caused by: org.jboss.netty.handler.queue.BlockingReadTimeoutException
at
org.jboss.netty.handler.queue.BlockingReadHandler.readEvent(BlockingReadHandler.java:236)
at
org.jboss.netty.handler.queue.BlockingReadHandler.read(BlockingReadHandler.java:167)
at
org.neo4j.com.DechunkingChannelBuffer.readNext(DechunkingChannelBuffer.java:57)
... 15 more
Couldn't connect to 'single://192.168.11.88', java.io.IOException:
org.neo4j.com.ComException:
org.jboss.netty.handler.queue.BlockingReadTimeoutException


--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/Online-backup-error-tp3298211p3298318.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user