Replication - replicated dataset not in web GUI of REMOTE system

Status
Not open for further replies.

martijn

Dabbler
Joined
Jun 10, 2011
Messages
13
I'm using replication. After i installed FreeNAS 8.0.1 RC2 replications work for me.

I followed the manual at http://doc.freenas.org/index.php/Replication_Tasks.

The replicated dataset does not show in the web GUI of the REMOTE system?
Is this a feature or a bug?

The replicated dataset are displayed when i use the "df" or "zfs list" commands.

Dataset names that not show in the web GUI are "vm/windows_server" and "vm/dev04".
I checked "Initialize remote side for once." when creating the replication tasks on LOCAL.

[edit]

Snapshots are replicated to REMOTE and displayed in the web GUI.
So Replication is working.
 

taschaue

Cadet
Joined
Sep 30, 2011
Messages
1
Hello,

I have the same problem. If I enter a ssh command with putty, it will replicate the snapshot to the other server. But it doesn't work automatically.

Why did it start to work? What have you done?
 

martijn

Dabbler
Joined
Jun 10, 2011
Messages
13
Most important is that "SSH Key Based Authentication" is working?

is it?

I fixed it doing (on 8.0.1 RC2):
Code:
LOCAL = 192.168.100.200
REMOTE = 192.168.100.210

SSH to REMOTE:

freenas# ssh -i /data/ssh/replication 192.168.100.210

2 errors :
 - Could not create directory '/root/.ssh'.
 - Failed to add the host to the list of known hosts (/root/.ssh/known_hosts).
 
Fix:

LOCAL# mount -uw /
LOCAL# mkdir -p /root/.ssh/
LOCAL# chmod 700 /root/.ssh
LOCAL# nano /root/.ssh/known_hosts
LOCAL# ssh -i /data/ssh/replication 192.168.100.210

No errors like above on your display (hopefully)

REMOTE# exit
LOCAL# mount -ur /
 
Status
Not open for further replies.
Top