0

このガイドライン (ガイドライン ページ)を使用して、IBM Connections と IBM Websphere Portal を統合しています。

ポータル アプリケーション アーカイブ SNPortlets.paa を展開するには、スクリプトを実行するために、接続のインストール (ネットワーク展開のインストール) からいくつかのパラメーターを知る必要があります。

-DICportletWebapp=portletWebapp
-DICblogsHomepageHandle=homepagehandle
-DICemailSetting=emailSetting
-DICtagSearchType=tagSearchType
-DICdsxAdminId=
-DICdsxAdminPwd=

(私が理解しようとしたもの)

-DICbaseURL=https://connections_domain
-DICprofilesContextRoot=/profiles
-DICfilesContextRoot=/files
-DICprofilesURL=https://connections_domain/profiles
-DICprofilesURLunsecured=http://connections_domain/profiles
-DICsearchContextRoot=/search
-DICnewsContextRoot=/news 
-DICfilesURL=https://connections_domain/files
-DICsearchURL=https://connections_domain/search
-DICoauthURL=https://connections_domain/connections/oauth
-DICnewsURL=https://connections_domain/news
-DICoauthContextRoot=connections/oauth

質問: これらすべてのパラメーターを取得できる構成ファイルまたはその他のソースはありますか?

4

1 に答える 1

0

通常、それらが LotusConnections-config.xml に含まれていることを確認してください。これは、デプロイメント・マネージャーにあるはずです。

たとえば、私のサーバーでは、次の場所にあります... /local/con/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/config/cells/localhostCell01/LotusConnections-config/LotusConnections-config.xml

    <sloc:serviceReference acf_config_file="acf-config-nf.xml" bootstrapHost="" bootstrapPort="" clusterName="conCluster" enabled="true" person_card_service_name_js_eval="generalrs.label_personcard_activitieslink" person_card_service_url_pattern="/service/html/mainpage#dashboard%2Cmyactivities%2Cuserid%3D{userid}%2Cname%3D{displayName}" serviceName="activities" ssl_enabled="true">
    <sloc:href>
        <sloc:hrefPathPrefix>/activities</sloc:hrefPathPrefix>
        <sloc:static href="http://con.ihost.com:81" ssl_href="**https://con.ihost.com:444**"/>
        <sloc:interService href="https://con.ihost.com:444"/>
    </sloc:href>
</sloc:serviceReference>

-DICblogsHomepageHandle IBM Connections デプロイメントのブログ・ホーム・ページ・ハンドル。デフォルトはホームページです。-DICEmailSetting IBM Connections サーバーがユーザーの E メール・アドレスを公開するように構成されているか非表示にするように構成されているかに応じて、email-exposed または email-hidden に設定します。-DICtagSearchType タグ クラウドにパブリック コンテンツのタグのみを表示するか、パブリック コンテンツとログイン ユーザーが投稿したコンテンツのタグを表示するかによって、search または mysearch に設定します。-DICdsxAdminId プロフィールおよびコミュニティー・サービスの dsx-admin 役割に設定されているユーザー ID。-DICdsxAdminPwd dsx-admin ユーザーのパスワード。 http://infolib.lotus.com/resources/connections/4.5.1/doc/accessible/plugins/en_us/html-wrapper.html

基本的に dsx-admin を使用する必要はありません。tagSearchType と emailSettings は単なるフラグです

于 2013-07-31T13:31:38.653 に答える