「Etherpad-lite」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(翻訳)
 
(同期)
 
1行目: 1行目:
[[Category:インターネットアプリケーション]]
+
[[Category:ウェブアプリケーション]]
 
[[en:Etherpad-lite]]
 
[[en:Etherpad-lite]]
 
{{Related articles start}}
 
{{Related articles start}}
8行目: 8行目:
 
== インストール ==
 
== インストール ==
   
[[AUR]] から {{AUR|etherpad-lite}} をインストールしてください。
+
{{AUR|etherpad-lite}} パッケージ[[インストール]]してください。
   
 
== 設定 ==
 
== 設定 ==
31行目: 31行目:
 
//IP and port which etherpad should bind at
 
//IP and port which etherpad should bind at
 
"ip": "127.0.0.1",
 
"ip": "127.0.0.1",
"port" : 19001,</nowiki>}}
+
"port" : 9001,</nowiki>}}
   
 
== 起動 ==
 
== 起動 ==
   
{{ic|etherpad-lite.service}} ユニットを[[有効化]]してください。{{ic|http://127.0.0.1:19001}} から Etherpad-Lite にアクセスできます。また、{{ic|http://127.0.0.1:19001/p/padname}} でパッドを直接開くことができます。
+
{{ic|etherpad-lite.service}} ユニットを[[有効化]]してください。{{ic|http://127.0.0.1:9001}} から Etherpad-Lite にアクセスできます。また、{{ic|http://127.0.0.1:9001/p/padname}} でパッドを直接開くことができます。
   
 
== 既知の問題 ==
 
== 既知の問題 ==
46行目: 46行目:
   
 
* [https://etherpad.org Etherpad 公式ウェブサイト]
 
* [https://etherpad.org Etherpad 公式ウェブサイト]
* [https://github.com/ether/etherpad-lite Developement page on GitHub]
+
* [https://github.com/ether/etherpad-lite GitHub の開発ページ]

2017年10月20日 (金) 23:53時点における最新版

関連記事

Etherpad-Lite (Etherpad) は Node.js ベースの共同マルチユーザーウェブエディタです。様々なオフィスファイルフォーマットをインポート・エクスポートできます。

インストール

etherpad-liteAUR パッケージをインストールしてください。

設定

データベース

テスト用の、Etherpad のデフォルトのデータベースバックエンドはファイルベースの DirtyDB です。DirtyDB を使用する場合、特に設定をしなくても Etherpad-Lite を起動・テストできます。

MySQL, PostgreSQL, SQLite を使用するには settings.json ファイルの設定を編集します。データベースの設定以外にも、このファイルから http://localhost:9001/admin の管理者インターフェイスのパスワードを設定したり、listen するアドレスやポートを変更することもできます。

最低でもセッションキーは設定してください。pwgen をインストールして pwgen -y 10 1 で生成して以下の部分に書き込みます:

/usr/share/webapps/etherpad-lite/settings.json
"sessionKey" : "",

管理者インターフェイスからプラグインで Etherpad は拡張することができます。

アドレス

デフォルトの IP は 0.0.0.0 です。127.0.0.1 に変更するには:

/usr/share/webapps/etherpad-lite/settings.json
//IP and port which etherpad should bind at
"ip": "127.0.0.1",
"port" : 9001,

起動

etherpad-lite.service ユニットを有効化してください。http://127.0.0.1:9001 から Etherpad-Lite にアクセスできます。また、http://127.0.0.1:9001/p/padname でパッドを直接開くことができます。

既知の問題

一部のパッドでクラッシュする

https://github.com/ether/etherpad-lite/issues/2516#issuecomment-79659984 を見てください。

参照