Hi,
I created the two DSNs on two servers and tables on both (repl.tab) with replication schema on different hosts one is masterdsn and subdsn1 i saved in repschema.sql text file.
CREATE REPLICATION repl.repscheme
ELEMENT e TABLE repl.tab
MASTER masterds ON "APP1"
SUBSCRIBER newstore ON "APP2";
call ttRepStart;
ttIsql -f repschema.sql masterdsn; # on App1
ttIsql -f repschema.sql subdsn1; # on App2
replication agent was working on the servers but when i inserted the row in masterdsn its not getting updated in subdsn1 on App2 server.
when i tried to run this command its giving the error below;
% ttRepAdmin -dsn subdsn1 -duplicate -from masterdsn -host "APP1"
TT12039: Could not get port number of TimesTen replication agent on remote host. Either the replication agent was not started, or it was just started and has not communicated its port number to the TimesTen daemon
[oracle@app2 bin]$ ttversion
TimesTen Release 7.0.1.0.0 (32 bit Linux/x86) (APP2:17000) 2007-01-29T20:59:39Z
Instance admin: oracle
Instance home directory: /home/oracle/TimesTen/APP2
Daemon home directory: /home/oracle/TimesTen/APP2/info
Access control enabled.
Can any one please guide me if im missing any thing in this.
Thanks,
Ahmed