In the /opt/sdb/programs/app/syncman/doc/RunningTheMessageServer.pdf
page number 4 in chapter 1.4.1 there is the command
java -classpatch .\lib\sapdbc.jar;.\lib\msgserver.jar;.\lib\j2ee.jar
com.sap.sdb.msgServer.Server .\MSGSERVER.xml
but it should be
java -classpatch .\lib\sapdbc.jar;.\lib\msgserver.jar;.\lib\j2ee.jar
com.sap.sdb.msgServer.Server -f .\MSGSERVER.xml
(missing key -f).
And in the script syncman_caller.py there is wrong key -A.
def operate_msgserver(what, *rest):
startMsgserver = ('"' + JAVA + '"' +
' -Xmx256m' +
' -classpath ' + '"' +
CUSTOMCLASSPATH +
os.path.join(SYNCINST, 'lib') + PATHSEP +
os.path.join(JDBCINST, 'sapdbc.jar') + PATHSEP +
os.path.join(SYNCINST, 'lib', 'msgserver.jar') + PATHSEP +
os.path.join(J2EEPATH, 'j2ee.jar') + '"' +
' com.sap.sdb.msgServer.Server' +
# ' -A MESSAGESERVER' +
' -f ' + '"' + os.path.join(SYNCINST, 'MSGSERVER.xml') + '"')
With the original syncman_caller.py I always get the following error
msgserver start
com.sap.sdb.msgServer.util.ServerException: conflicting specifications:
database url, database user name, database password, admin password, or
one of the ports conflicts with database key.
at com.sap.sdb.msgServer.Server.(Server.java:254)
at com.sap.sdb.msgServer.Server.main(Server.java:134)
com.sap.sdb.msgServer.util.ServerException: conflicting specifications:
database url, database user name, database password, admin password, or
one of the ports conflicts with database key.
--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]