{"id":17205,"date":"2015-06-16T11:46:05","date_gmt":"2015-06-16T16:46:05","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17205"},"modified":"2022-06-03T03:44:19","modified_gmt":"2022-06-03T08:44:19","slug":"install-etherpad-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/","title":{"rendered":"Install Etherpad on a CentOS 7 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-17209\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg\" alt=\"install-etherpad-on-a-centos-7-vps\" width=\"152\" height=\"114\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg 200w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps-133x100.jpg 133w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps-50x38.jpg 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps-75x56.jpg 75w\" sizes=\"(max-width: 152px) 100vw, 152px\" \/> In this tutorial, we will explain how to install Etherpad on a CentOS 7 VPS. Etherpad is an Open Source online editor providing collaborative real-time editing. This guide should work on other <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for <a title=\"Centos VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS 7 VPS<\/a>.<br \/>\n<!--more--><\/p>\n<h4>Login to your VPS via SSH<\/h4>\n<pre>ssh user@vps<\/pre>\n<h4>Update the system and install necessary packages<\/h4>\n<pre>[user]$ sudo yum -y upgrade\r\n[user]$ sudo yum install curl vim gcc-c++ make<\/pre>\n<h4>Install MariaDB<\/h4>\n<p>MariaDB 5.5 is shipped in the default CentOS 7 repository, to install it just run:<\/p>\n<pre>[user]$ sudo yum install mariadb-server<\/pre>\n<p>To start the MariaDB service and enable it to start on boot, execute the following commands:<\/p>\n<pre>[user]$ sudo systemctl start mariadb.service\r\n[user]$ sudo systemctl enable mariadb.service\r\n<\/pre>\n<p>Run the following command to secure your installation:<\/p>\n<pre>[user]$ sudo mysql_secure_installation<\/pre>\n<p>Next, we need to create a database for our Etherpad instance.<\/p>\n<pre>[user]$ mysql -uroot -p\r\nMariaDB [(none)]&gt; CREATE DATABASE etherpad;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON etherpad.* TO 'etherpaduser'@'localhost' IDENTIFIED BY 'etherpaduser_passwd';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<h4>Install the latest Node.js<\/h4>\n<pre>[user]$ curl -sL https:\/\/rpm.nodesource.com\/setup | sudo bash -\r\n[user]$ sudo yum install -y nodejs<\/pre>\n<p>To verify everything is done correctly, use the command <code>node --version<\/code>.<br \/>\nThe output should be similar to the following:<\/p>\n<pre>[user]$ node --version\r\nv0.10.38<\/pre>\n<h4>Create Etherpad user<\/h4>\n<p>To create a new system user for our Etherpad instance run the following commands:<\/p>\n<pre>[user]$ sudo adduser --home \/opt\/etherpad --shell \/bin\/bash etherpad\r\n[user]$ sudo install -d -m 755 -o etherpad -g etherpad \/opt\/etherpad<\/pre>\n<h4>Install Etherpad<\/h4>\n<p>The following commands are run as etherpad user. To switch to etherpad user run:<\/p>\n<pre>[user]$ sudo su - etherpad<\/pre>\n<p>Clone the Etherpad source code to the <code>\/opt\/etherpad\/etherpad-lite<\/code> directory.<\/p>\n<pre>[etherpad]$ git clone git:\/\/github.com\/ether\/etherpad-lite.git ~\/etherpad-lite<\/pre>\n<p>Copy the default settings configuration file:<\/p>\n<pre>[user]$ cp ~\/etherpad-lite\/settings.json.template ~\/etherpad-lite\/settings.json<\/pre>\n<p>and change\/add:<\/p>\n<ul>\n<li><code>\"ip\": \"0.0.0.0\"<\/code> to <code>\"ip\": \"127.0.0.1\"<\/code><\/li>\n<li>Comment the &#8220;dirty&#8221; section<\/li>\n<li>Add the MySQL Configuration\n<pre>    \"dbType\" : \"mysql\",\r\n    \"dbSettings\" : {\r\n                    \"user\"    : \"etherpaduser\",\r\n                    \"host\"    : \"localhost\",\r\n                    \"password\": \"etherpaduser_passwd\",\r\n                    \"database\": \"etherpad\"\r\n                  },\r\n\r\n<\/pre>\n<\/li>\n<li><code>\"trustProxy\" : false<\/code> to <code>\"trustProxy\" : true<\/code><\/li>\n<li>Add admin user\n<pre>      \"users\": {\r\n         \"admin\": {\r\n         \"password\": \"__yourAdminPassword__\",\r\n         \"is_admin\": true\r\n         }\r\n        },\r\n<\/pre>\n<\/li>\n<\/ul>\n<p>Run the following command to install dependencies:<\/p>\n<pre>~\/etherpad-lite\/bin\/installDeps.sh<\/pre>\n<p>Start Etherpad for the first time:<\/p>\n<pre>~\/etherpad-lite\/bin\/run.sh<\/pre>\n<p>If there are no errors, you may continue with the next step.<\/p>\n<h4>Create a systemd service<\/h4>\n<p>To create a new systemd service for Etherpad, open your editor of choice as a root or sudo user and create a new file:<\/p>\n<pre>[user]$ sudo vim \/etc\/systemd\/system\/etherpad.service<\/pre>\n<p>and add the following code lines:<\/p>\n<pre>[Unit]\r\nDescription=Etherpad\r\nAfter=syslog.target network.target\r\n\r\n[Service]\r\nType=simple\r\nUser=etherpad\r\nGroup=etherpad\r\nExecStart=\/opt\/etherpad\/etherpad-lite\/bin\/run.sh\r\nRestart=always\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n<p>Start the Etherpad service and set it to start automatically on boot:<\/p>\n<pre>[user]$ sudo systemctl enable etherpad.service\r\n[user]$ sudo systemctl start etherpad.service\r\n<\/pre>\n<p>To verify the unit started, run <code>journalctl -f -u etherpad.service<\/code> and you should see something like below:<\/p>\n<pre>[user]$ journalctl -f -u etherpad.service\r\nMay 09 11:02:08 vps systemd[1]: Starting etherpad.service...\r\nMay 09 11:02:08 vps systemd[1]: Started etherpad.service.\r\nMay 09 11:02:08 vps run.sh[23118]: Ensure that all dependencies are up to date...  If this is the first time you have run Etherpad please be patient.\r\n<\/pre>\n<h4>Install and configure Nginx<\/h4>\n<p>Installing Nginx is pretty easy, just run the following command:<\/p>\n<pre>[user]$ sudo apt-get install nginx<\/pre>\n<p>Next, create a new Nginx server block:<\/p>\n<pre>[user]$ sudo vim \/etc\/nginx\/sites-available\/myPad.com.conf<\/pre>\n<pre>map $http_upgrade $connection_upgrade {\r\n    default upgrade;\r\n    ''      close;\r\n}\r\n\r\nserver {\r\n  server_name myPad.com;\r\n\r\n  location \/ {\r\n    proxy_set_header  X-Real-IP  $remote_addr;\r\n    proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;\r\n    proxy_set_header  Host $host;\r\n    proxy_redirect off;\r\n    proxy_read_timeout 300;\r\n    proxy_pass http:\/\/localhost:9001\/;\r\n    proxy_set_header Upgrade $http_upgrade;\r\n    proxy_set_header Connection $connection_upgrade;\r\n  }\r\n}\r\n<\/pre>\n<p>Activate the server block by restarting Nginx:<\/p>\n<pre>[user]$ sudo systemctl restart nginx<\/pre>\n<p>In the future, whenever you want to update the Etherpad to the latest version, just run <code>\/opt\/etherpad\/etherpad-lite &amp;&amp; git pull origin<\/code> and restart the Etherpad service with <code>systemctl restart etherpad<\/code>.<\/p>\n<p>That&#8217;s it. You have successfully installed Etherpad on your <a title=\"Centos VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Centos VPS<\/a>. For more information about Etherpad, please refer to the <a title=\"Etherpad\" href=\"http:\/\/www.Etherpad.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Etherpad<\/a> website.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use 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> services, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will explain how to install Etherpad on a CentOS 7 VPS. Etherpad is an Open Source &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Etherpad on a CentOS 7 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#more-17205\" aria-label=\"Read more about Install Etherpad on a CentOS 7 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17209,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[243,357],"class_list":["post-17205","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","tag-etherpad","tag-node-js","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>Install Etherpad on a CentOS 7 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Etherpad on a CentOS 7 VPS | 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-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Etherpad on a CentOS 7 VPS\" \/>\n<meta property=\"og:description\" content=\"Install Etherpad on a CentOS 7 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/\" \/>\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=\"2015-06-16T16:46:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:44:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.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=\"4 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-on-a-centos-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Etherpad on a CentOS 7 VPS\",\"datePublished\":\"2015-06-16T16:46:05+00:00\",\"dateModified\":\"2022-06-03T08:44:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/\"},\"wordCount\":433,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/install-etherpad-on-a-centos-7-vps.jpg\",\"keywords\":[\"etherpad\",\"node.js\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/\",\"name\":\"Install Etherpad on a CentOS 7 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/install-etherpad-on-a-centos-7-vps.jpg\",\"datePublished\":\"2015-06-16T16:46:05+00:00\",\"dateModified\":\"2022-06-03T08:44:19+00:00\",\"description\":\"Install Etherpad on a CentOS 7 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/install-etherpad-on-a-centos-7-vps.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/05\\\/install-etherpad-on-a-centos-7-vps.jpg\",\"width\":200,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-etherpad-on-a-centos-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Etherpad on a CentOS 7 VPS\"}]},{\"@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":"Install Etherpad on a CentOS 7 VPS | RoseHosting","description":"Install Etherpad on a CentOS 7 VPS | 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-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Etherpad on a CentOS 7 VPS","og_description":"Install Etherpad on a CentOS 7 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-06-16T16:46:05+00:00","article_modified_time":"2022-06-03T08:44:19+00:00","og_image":[{"width":200,"height":150,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Etherpad on a CentOS 7 VPS","datePublished":"2015-06-16T16:46:05+00:00","dateModified":"2022-06-03T08:44:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/"},"wordCount":433,"commentCount":3,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg","keywords":["etherpad","node.js"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/","name":"Install Etherpad on a CentOS 7 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg","datePublished":"2015-06-16T16:46:05+00:00","dateModified":"2022-06-03T08:44:19+00:00","description":"Install Etherpad on a CentOS 7 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/install-etherpad-on-a-centos-7-vps.jpg","width":200,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-etherpad-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Etherpad on a CentOS 7 VPS"}]},{"@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\/17205","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=17205"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17205\/revisions"}],"predecessor-version":[{"id":42103,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17205\/revisions\/42103"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17209"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}