The following command displays which dfm services are started. Here all the service started
# dfm service list
sql: started
webui: started
http: started
eventd: started
monitor: started
scheduler: started
server: started
watchdog: started
The following command stops all the services of dfm
# dfm service stop
Service: watchdog stopped.
Service: server stopped.
Service: scheduler stopped.
Service: monitor stopped.
Service: eventd stopped.
Service: http stopped.
Service: webui stopped.
SQL Anywhere Stop Server Utility Version 11.0.1.2811
Service: sql stopped.
Check whether all the services are stopped
# dfm service list
sql: not started
webui: not started
http: not started
eventd: not started
monitor: not started
scheduler: not started
server: not started
watchdog: not started
Start the service sql
# dfm service start sql
Service: sql started.
#dfm host delete -f <hostid>
Then restart the other services
#dfm service start
The add the host . Example
dfm host add <ipaddress of host> hostlogin="username" hostpassword="password"
Note: Instead of stopping each service, i have stopped all the services. Then restarted the sql. user can stop each servicce individually
example: dfm service stop monitor
dfm service stop server
Thanks
Giridhar