2017-03-16 35 views
0

Redmine & TestlinkはAmazon Cloud上で2つの異なるサーバーでホストされています。 私は以下の方法/回避策を使用してこれらの2つの間の接続を確立しましたが、「何かがバグ追跡システムに接続できないため、パフォーマンスの問題が発生します...」testlinkのTest Execute Testページにあります。 RedmineのからAPIを有効テストリンクとredmine(interface:rest)との統合が機能していません

<issuetracker> 
    <apikey>3fe68920f3cf</apikey> 
    <uribase>https://odessa.sharred.net</uribase> 
    <uriview>https://odessa.sharred.net/redmine/CM/issues/</uriview> <!-- for Redmine 1.x add show/ --> 
    <projectidentifier>Common</projectidentifier> 
    </issuetracker> 

Redmineの(残りのインターフェイス)の下で問題追跡管理の設定の下に作られ

  • HTTPSを使用できるようにするには、C:¥xampp¥htdocs¥testlink¥third_party¥redmine-php-api¥lib¥redmine-rest-api.phpでcurl_setopt()の設定を行います。
  • ホスト名の代わりにIP ADDRESSを使用してRedmineベースURLを提供しようとしました。
  • testlinkのイベントセクションに関連するログは表示されません。
  • $ g_interface_bugs = 'REDMINE'でconfig.inc.phpにredmineのエントリを追加しました。
  • また、URIBASEで指定されたURLがパラメータとしてキーとして渡されたウェブブラウザで開かれていること、つまりhttps://odessa.sharred.net?key=3fe68920f3cf がtestlinkサーバーからアクセス可能であることがわかりました。

この問題に関するあらゆる洞察力/解決策は大きな助けになります。

+0

redmineのログを確認しましたか? –

答えて

0
Your configuration should look something like this. 


             
  
<issuetracker> 
 
    <apikey>3fe68920f3cf</apikey> 
 
    <uribase>https://ServerIP/redmine</uribase> 
 
    <uriview>https://ServerIP/redmine/issues/</uriview> 
 
    <projectidentifier>CM</projectidentifier> 
 
    </issuetracker>
I also had trouble and just got it working now. If you still have issue goto http://TLServerIP/testlink/lib/events/eventviewer.php and check the error Similarly you can go to //redmineinstalldir/apps/redmine/htdocs/log/production.log to see what error you are getting after you click test connection on testlink
関連する問題