{"id":1742,"date":"2013-06-04T18:34:53","date_gmt":"2013-06-04T23:34:53","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=1742"},"modified":"2022-06-03T03:52:22","modified_gmt":"2022-06-03T08:52:22","slug":"install-etherpad-lite-on-debian-wheezy","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/","title":{"rendered":"How to Install Etherpad Lite on Debian Wheezy"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg\"><img decoding=\"async\" class=\"alignleft size-full wp-image-1743\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg\" alt=\"etherpad\" width=\"200\" height=\"150\" \/><\/a><\/p>\n<p>In this tutorial, we will show you how to install Etherpad Lite on <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian<\/a> Wheezy. Etherpad Lite is an Open Source web-based editor providing collaborative editing in real-time, including built-in chat box. This all takes place on one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS hosting<\/a> plans but it should work just as well on any other Linux installation. <!--more--><\/p>\n<p><strong>The following command will install all necessary packages<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">apt-get install gzip git-core curl python libssl-dev pkg-config \\\n                build-essential python g++ make checkinstall \\\n                nginx-full mysql-server<\/pre>\n<p><strong>Next we need to compile and install nodejs<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">cd \/usr\/src\/\nwget http:\/\/nodejs.org\/dist\/node-latest.tar.gz\ntar xzvf node-latest.tar.gz &amp;&amp; cd node-v*\n.\/configure &amp;&amp; checkinstall<\/pre>\n<p>When the dialog window opens, enter &#8216;3&#8217; and remove the &#8220;v&#8221; in front of the version number.<br \/>\nInstall nodejs with the following command<\/p>\n<pre class=\"brush: bash; gutter: false\">dpkg -i node_*<\/pre>\n<p><strong>Create a MySQL or a MariaDB database<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">CREATE DATABASE etherpad CHARACTER SET utf8 COLLATE utf8_general_ci;\nGRANT ALL PRIVILEGES ON etherpad.* TO etherpad@localhost IDENTIFIED BY '__yourPasswd__';\nFLUSH PRIVILEGES;\n\\q<\/pre>\n<p><strong>Install and configure Etherpad Lite<\/strong><\/p>\n<p>Go to the directory where you want to install Etherpad Lite and clone the git repository<\/p>\n<pre class=\"brush: bash; gutter: false\">cd \/var\/www\/\ngit clone git:\/\/github.com\/ether\/etherpad-lite.git<\/pre>\n<p>Edit the configuration file<\/p>\n<pre class=\"brush: bash; gutter: false\">cd etherpad-lite\/\ncp settings.json.template settings.json\nvim settings.json<\/pre>\n<p>and change the following settings:<\/p>\n<pre class=\"brush: javascript; gutter: false\">\/\/ change the IP Address\n\"ip\": \"127.0.0.1\",<\/pre>\n<pre class=\"brush: javascript; gutter: false\">\/\/ set a session key\n\"sessionKey\" : \"rAnD0m5tRIng\",<\/pre>\n<pre class=\"brush: javascript; gutter: false\">\/\/configure the connection settings\n \"dbType\" : \"mysql\",\n \"dbSettings\" : {\n   \"user\"\u00a0\u00a0\u00a0 : \"etherpad\",\n   \"host\"\u00a0\u00a0\u00a0 : \"localhost\",\n   \"password\": \"__yourPassword__\",\n   \"database\": \"etherpad\"\n },<\/pre>\n<pre class=\"brush: php; gutter: false\">\/\/ add admin user\n\"users\": {\n \"admin\": {\n \"password\": \"__yourAdminPassword__\",\n \"is_admin\": true\n }\n},<\/pre>\n<p><strong>Create a system user<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">adduser --system --home=\/var\/www\/etherpad-lite\/ --group etherpad\nchown -R etherpad: \/var\/www\/etherpad-lite\/<\/pre>\n<p><strong>Start Etherpad Lite for the first time:<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">su -c \"\/var\/www\/etherpad-lite\/bin\/run.sh\" -s \/bin\/bash etherpad<\/pre>\n<p>If everything is OK, kill all processes belonging to the etherpad user<\/p>\n<pre class=\"brush: bash; gutter: false\">pkill -u etherpad<\/pre>\n<p><strong>Create an init script using your favorite editor<\/strong><\/p>\n<pre class=\"brush: bash; gutter: true\">#!\/bin\/sh\n\n### BEGIN INIT INFO\n# Provides:          etherpad-lite\n# Required-Start:    $local_fs $remote_fs $network $syslog\n# Required-Stop:     $local_fs $remote_fs $network $syslog\n# Default-Start:     2 3 4 5\n# Default-Stop:      0 1 6\n# Short-Description: starts etherpad lite\n# Description:       starts etherpad lite using start-stop-daemon\n### END INIT INFO\n\nPATH=\"\/usr\/local\/sbin:\/usr\/local\/bin:\/sbin:\/bin:\/usr\/sbin:\/usr\/bin:\/opt\/node\/bin\"\nLOGFILE=\"\/var\/www\/etherpad-lite\/etherpad-lite.log\"\nEPLITE_DIR=\"\/var\/www\/etherpad-lite\"\nEPLITE_BIN=\"bin\/safeRun.sh\"\nUSER=\"etherpad\"\nGROUP=\"etherpad\"\nDESC=\"Etherpad Lite\"\nNAME=\"etherpad-lite\"\n\nset -e\n\n. \/lib\/lsb\/init-functions\n\nstart() {\n  echo \"Starting $DESC... \"\n\n    start-stop-daemon --start --chuid \"$USER:$GROUP\" --background --make-pidfile --pidfile \/var\/run\/$NAME.pid --exec $EPLITE_DIR\/$EPLITE_BIN -- $LOGFILE || true\n  echo \"done\"\n}\n\n#We need this function to ensure the whole process tree will be killed\nkilltree() {\n    local _pid=$1\n    local _sig=${2-TERM}\n    for _child in $(ps -o pid --no-headers --ppid ${_pid}); do\n        killtree ${_child} ${_sig}\n    done\n    kill -${_sig} ${_pid}\n}\n\nstop() {\n  echo \"Stopping $DESC... \"\n   while test -d \/proc\/$(cat \/var\/run\/$NAME.pid); do\n    killtree $(cat \/var\/run\/$NAME.pid) 15\n    sleep 0.5\n  done\n  rm \/var\/run\/$NAME.pid\n  echo \"done\"\n}\n\nstatus() {\n  status_of_proc -p \/var\/run\/$NAME.pid \"\" \"etherpad-lite\" &amp;&amp; exit 0 || exit $?\n}\n\ncase \"$1\" in\n  start)\n      start\n      ;;\n  stop)\n    stop\n      ;;\n  restart)\n      stop\n      start\n      ;;\n  status)\n      status\n      ;;\n  *)\n      echo \"Usage: $NAME {start|stop|restart|status}\" &gt;&amp;2\n      exit 1\n      ;;\nesac\n\nexit 0<\/pre>\n<pre class=\"brush: bash; gutter: false\">chmod +x \/etc\/init.d\/etherpad-lite\nupdate-rc.d etherpad-lite defaults\n\/etc\/init.d\/etherpad-lite start<\/pre>\n<p><strong>Create a new virtual host (server block)<\/strong><\/p>\n<pre class=\"brush: bash; gutter: false\">vim \/etc\/nginx\/sites-available\/domain.tld.conf\n\nserver {\n listen\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 80;\n server_name\u00a0 domain.tld;\n\u00a0\u00a0 location \/ {\n\u00a0 \u00a0\u00a0 proxy_pass\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 http:\/\/localhost:9001\/;\n\u00a0\u00a0\u00a0\u00a0 proxy_set_header\u00a0 Host $host;\n\u00a0\u00a0\u00a0\u00a0 proxy_buffering\u00a0\u00a0 off;\n\u00a0\u00a0 }\n }\n\nln -s \/etc\/nginx\/sites-available\/domain.tld \/etc\/nginx\/sites-enabled\/domain.tld\n\/etc\/init.d\/nginx restart<\/pre>\n<p>In case you are using Apache, you can use the following virtual host directive<\/p>\n<pre class=\"brush: bash; gutter: false\">vim \/etc\/apache2\/sites-available\/domain.tld\n\n&lt;VirtualHost *:80&gt;\n    ServerName domain.tld\n    ServerSignature Off\n    &lt;IfModule mod_proxy.c&gt;\n        ProxyVia On\n        ProxyRequests Off\n        ProxyPass \/ http:\/\/127.0.0.1:9001\/\n        ProxyPassReverse \/ http:\/\/127.0.0.1:9001\/\n        ProxyPreserveHost on\n        &lt;Proxy *&gt;\n            Options FollowSymLinks MultiViews\n            AllowOverride All\n            Order allow,deny\n            allow from all\n        &lt;\/Proxy&gt;\n    &lt;\/IfModule&gt;\n&lt;\/VirtualHost&gt;\n\nln -s \/etc\/apache2\/sites-available\/domain.tld \/etc\/apache2\/sites-enabled\/domain.tld\na2enmod proxy proxy_http\n\/etc\/init.d\/apache2 restart<\/pre>\n<p>That&#8217;s it! You can now access Etherpad Lite from your browser.<\/p>\n<p><a title=\"Etherpad\" href=\"http:\/\/github.com\/ether\/etherpad-lite\/\">Etherpad project homepage on GitHub<\/a><\/p>\n<p>If you are looking for other options, you may want to read our guide on <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-etherpad-on-debian-9\/\">How to Install Etherpad on Debian 9<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install Etherpad Lite on Debian Wheezy. Etherpad Lite is an Open &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Install Etherpad Lite on Debian Wheezy\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#more-1742\" aria-label=\"Read more about How to Install Etherpad Lite on Debian Wheezy\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":1743,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13],"tags":[48,79,244,243,238,177,239,1152],"class_list":["post-1742","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-tutorials","tag-debian","tag-debian-vps","tag-debian-wheezy-vps","tag-etherpad","tag-etherpad-lite","tag-linux-vps","tag-nodejs","tag-rosehosting","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Etherpad Lite on Debian Wheezy | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Etherpad Lite on Debian Wheezy | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Etherpad Lite on Debian Wheezy\" \/>\n<meta property=\"og:description\" content=\"How to Install Etherpad Lite on Debian Wheezy | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-06-04T23:34:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:52:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Etherpad Lite on Debian Wheezy\",\"datePublished\":\"2013-06-04T23:34:53+00:00\",\"dateModified\":\"2022-06-03T08:52:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/\"},\"wordCount\":229,\"commentCount\":9,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/05\\\/etherpad.jpg\",\"keywords\":[\"debian\",\"debian vps\",\"debian wheezy vps\",\"etherpad\",\"etherpad lite\",\"linux vps\",\"nodejs\",\"rosehosting\"],\"articleSection\":[\"Debian\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/\",\"name\":\"How to Install Etherpad Lite on Debian Wheezy | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/05\\\/etherpad.jpg\",\"datePublished\":\"2013-06-04T23:34:53+00:00\",\"dateModified\":\"2022-06-03T08:52:22+00:00\",\"description\":\"How to Install Etherpad Lite on Debian Wheezy | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/05\\\/etherpad.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/05\\\/etherpad.jpg\",\"width\":200,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-lite-on-debian-wheezy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Etherpad Lite on Debian Wheezy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Etherpad Lite on Debian Wheezy | RoseHosting","description":"How to Install Etherpad Lite on Debian Wheezy | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Etherpad Lite on Debian Wheezy","og_description":"How to Install Etherpad Lite on Debian Wheezy | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-06-04T23:34:53+00:00","article_modified_time":"2022-06-03T08:52:22+00:00","og_image":[{"width":200,"height":150,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Etherpad Lite on Debian Wheezy","datePublished":"2013-06-04T23:34:53+00:00","dateModified":"2022-06-03T08:52:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/"},"wordCount":229,"commentCount":9,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg","keywords":["debian","debian vps","debian wheezy vps","etherpad","etherpad lite","linux vps","nodejs","rosehosting"],"articleSection":["Debian","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/","url":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/","name":"How to Install Etherpad Lite on Debian Wheezy | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg","datePublished":"2013-06-04T23:34:53+00:00","dateModified":"2022-06-03T08:52:22+00:00","description":"How to Install Etherpad Lite on Debian Wheezy | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/05\/etherpad.jpg","width":200,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-lite-on-debian-wheezy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Etherpad Lite on Debian Wheezy"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1742","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=1742"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1742\/revisions"}],"predecessor-version":[{"id":36703,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1742\/revisions\/36703"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/1743"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=1742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=1742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=1742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}