當包含資料服務資源的資源群組在節點上處於線上狀態時,或當啟用資源時,RGM 將在該叢集節點上執行 Start 方法。在 SUNW.xfnts 資源類型範例中,xfnts_start 方法將在該節點上啟動 xfs 常駐程式。
xfnts_start 方法呼叫 scds_pmf_start() 以啟動 PMF 下的常駐程式。PMF 將提供自動的失敗通知和重新啟動功能,以及與故障監視器整合。
xfnts_start 中的第一個呼叫是呼叫 scds_initialize(),其可執行某些必需的事務性工作函數。scds_initialize() 函數和 scds_initialize(3HA) 線上手冊包含更多資訊。
在 xfnts_start 方法嘗試啟動 X 字型伺服器之前,該方法將呼叫 svc_validate() 以確定正確的配置位於適當的位置以支援 xfs 常駐程式。
rc = svc_validate(scds_handle); if (rc != 0) { scds_syslog(LOG_ERR, "Failed to validate configuration."); return (rc); }
請參閱xfnts_validate 方法,以取得詳細資訊。
xfnts_start 方法將呼叫 svc_start() 方法 (在 xfnts.c 檔案中定義) 以啟動 xfs 常駐程式。本節說明 svc_start()。
用於啟動 xfs 常駐程式的指令如下所示︰
# xfs -config config-directory/fontserver.cfg -port port-number |
Confdir_list 延伸特性識別 config-directory 時,Port_list 系統特性識別 port-number。當叢集管理員配置資料服務時,將為這些特性提供特定值。
xfnts_start 方法宣告這些特性為字串陣列。xfnts_start 方法透過使用 scds_get_ext_confdir_list() 和 scds_get_port_list() 函數取得叢集管理員設定的值。 這些函數在 scds_property_functions(3HA) 線上手冊中說明。
scha_str_array_t *confdirs; scds_port_list_t *portlist; scha_err_t err; /* get the configuration directory from the confdir_list property */ confdirs = scds_get_ext_confdir_list(scds_handle); (void) sprintf(xfnts_conf, "%s/fontserver.cfg", confdirs->str_array[0]); /* obtain the port to be used by XFS from the Port_list property */ err = scds_get_port_list(scds_handle, &portlist); if (err != SCHA_ERR_NOERR) { scds_syslog(LOG_ERR, "Could not access property Port_list."); return (1); }
請注意,confdirs 變數指向陣列的第一個元素 (0)。
xfnts_start 方法使用 sprintf() 以形成 xfs 的指令行。
/* Construct the command to start the xfs daemon. */ (void) sprintf(cmd, "/usr/openwin/bin/xfs -config %s -port %d 2>/dev/null", xfnts_conf, portlist->ports[0].port);
請注意,輸出重新導向至 /dev/null 以抑制由常駐程式產生的訊息。
xfnts_start 方法將 xfs 指令行傳送至 scds_pmf_start() 以啟動在 PMF 控制下的資料服務。
scds_syslog(LOG_INFO, "Issuing a start request."); err = scds_pmf_start(scds_handle, SCDS_PMF_TYPE_SVC, SCDS_PMF_SINGLE_INSTANCE, cmd, -1); if (err == SCHA_ERR_NOERR) { scds_syslog(LOG_INFO, "Start command completed successfully."); } else { scds_syslog(LOG_ERR, "Failed to start HA-XFS "); }
請注意以下有關對 scds_pmf_start() 呼叫的幾點內容︰
SCDS_PMF_TYPE_SVC 引數將要啟動的程式識別為資料服務應用程式。此方法也可啟動故障監視器或某些其他應用程式類型。
SCDS_PMF_SINGLE_INSTANCE 引數將其識別為單一實例資源。
cmd 引數為之前產生的指令行。
最終引數 -1,指定子監視層級。-1 值指定 PMF 監視所有子程序和原始程序。
傳回之前,svc_pmf_start() 將釋放為 portlist 結構配置的記憶體。
scds_free_port_list(portlist); return (err);
即使 svc_start() 成功傳回,基礎應用程式可能也會無法啟動。因此,svc_start() 必須探測應用程式,以驗證該應用程式在傳回成功訊息之前已在執行。探測必須考慮到,由於應用程式需要花費一些時間來啟動,因此其不會立即可用。svc_start() 方法呼叫 svc_wait() (在 xfnts.c 檔案中定義) 以確定應用程式正在執行。
/* Wait for the service to start up fully */ scds_syslog_debug(DBG_LEVEL_HIGH, "Calling svc_wait to verify that service has started."); rc = svc_wait(scds_handle); scds_syslog_debug(DBG_LEVEL_HIGH, "Returned from svc_wait"); if (rc == 0) { scds_syslog(LOG_INFO, "Successfully started the service."); } else { scds_syslog(LOG_ERR, "Failed to start the service."); }
svc_wait() 函數呼叫 scds_get_netaddr_list() 以取得探測應用程式所需的網路位址資源。
/* obtain the network resource to use for probing */ if (scds_get_netaddr_list(scds_handle, &netaddr)) { scds_syslog(LOG_ERR, "No network address resources found in resource group."); return (1); } /* Return an error if there are no network resources */ if (netaddr == NULL || netaddr->num_netaddrs == 0) { scds_syslog(LOG_ERR, "No network address resource in resource group."); return (1); }
svc_wait() 函數取得 Start_timeout 和 Stop_timeout 值。
svc_start_timeout = scds_get_rs_start_timeout(scds_handle) probe_timeout = scds_get_ext_probe_timeout(scds_handle)
若要計算伺服器用來啟動的時間,svc_wait() 將呼叫 scds_svc_wait(),並傳送一個相當於 Start_timeout 值百分之三的逾時值。svc_wait() 函數呼叫 svc_probe() 函數以驗證應用程式已啟動。svc_probe() 方法在指定通訊埠上建立與伺服器的簡單套接字連接。如果無法連接至連接埠,svc_probe() 將傳回一個為 100 的值,表示完全失敗。如果連接成功,但無法中斷與連接埠的連接,則 svc_probe() 將傳回一個為 50 的值。
svc_probe() 失敗或部分失敗時,svc_wait() 將以逾時值 5 呼叫 scds_svc_wait()。scds_svc_wait() 方法會將探測頻率限定為每五秒一次。此方法也將計算嘗試啟動服務的次數。如果嘗試的次數超出此期間 (由資源的 Retry_interval 特性指定) 內資源的 Retry_count 特性的值,則 scds_svc_wait() 函數傳回失敗。在此情況下,svc_start() 函數也將傳回故障。
#define SVC_CONNECT_TIMEOUT_PCT 95 #define SVC_WAIT_PCT 3 if (scds_svc_wait(scds_handle, (svc_start_timeout * SVC_WAIT_PCT)/100) != SCHA_ERR_NOERR) { scds_syslog(LOG_ERR, "Service failed to start."); return (1); } do { /* * probe the data service on the IP address of the * network resource and the portname */ rc = svc_probe(scds_handle, netaddr->netaddrs[0].hostname, netaddr->netaddrs[0].port_proto.port, probe_timeout); if (rc == SCHA_ERR_NOERR) { /* Success. Free up resources and return */ scds_free_netaddr_list(netaddr); return (0); } /* Call scds_svc_wait() so that if service fails too if (scds_svc_wait(scds_handle, SVC_WAIT_TIME) != SCHA_ERR_NOERR) { scds_syslog(LOG_ERR, "Service failed to start."); return (1); } /* Rely on RGM to timeout and terminate the program */ } while (1);
結束之前,xfnts_start 方法將呼叫 scds_close(),以收回由 scds_initialize() 配置的資源。scds_initialize() 函數 和 scds_close(3HA) 線上手冊包含更多資訊。