{"id":16527,"date":"2014-12-09T15:43:52","date_gmt":"2014-12-09T21:43:52","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16527"},"modified":"2022-06-03T03:46:30","modified_gmt":"2022-06-03T08:46:30","slug":"how-to-install-and-run-stringer-on-a-fedora-linux-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/","title":{"rendered":"How to install and run Stringer on a Fedora Linux VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\"><img decoding=\"async\" class=\"alignleft size-full wp-image-16528\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\" alt=\"how-to-install-and-run-stringer-on-a-fedora-vps\" width=\"350\" height=\"196\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg 350w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps-300x168.jpg 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps-178x100.jpg 178w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps-50x28.jpg 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps-75x42.jpg 75w\" sizes=\"(max-width: 350px) 100vw, 350px\" \/><\/a>The following tutorial will guide you through the details on <strong>how to install and run Stringer on a Fedora 20 <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a><\/strong>.<\/p>\n<p><strong>What is Stringer?<\/strong><\/p>\n<p>It is a self-hosted, anti-social RSS reader written in Ruby. It is based on Sinatra, ActiveRecord, PostgreSQL, Backbone.js and DelayedJob.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Requirements?<\/strong><\/p>\n<p>&#8211; A Fedora <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a><\/p>\n<p>&#8211; Ruby version higher than 2.0.0<\/p>\n<p>&#8211; PostgreSQL<\/p>\n<p><!--more--><\/p>\n<p>&nbsp;<\/p>\n<h3><b>UPDATE SYSTEM<\/b><\/h3>\n<p>Before proceeding any further, <code>ssh<\/code> to your VPS, initiate a <code>screen<\/code> session and upgrade your system using <code>yum<\/code>:<\/p>\n<pre>## screen -U -S stringer-fedora\r\n## yum update<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>INSTALL DEPENDENCIES<\/b><\/h3>\n<p>Next, install some essential dependencies on the <a title=\"Virtual Server Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a> using:<\/p>\n<pre>## yum install git libxml2-devel libxslt-devel curl-devel postgresql-devel \\\r\nsqlite-devel make automake gcc gcc-c++ postgresql-server readline-devel openssl-devel sudo<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>SETUP POSTGRESQL<\/b><\/h3>\n<p>Run the following command to initialize Postgresql on your &#8220;VPS&#8221; href=&#8221;https:\/\/www.rosehosting.com&#8221; target=&#8221;_blank&#8221;&gt;VPS and start the Postgresql database server using:<\/p>\n<pre>## postgresql-setup initdb\r\n## systemctl start postgresql<\/pre>\n<p>check the status of the postgresql database server and add it to system&#8217;s startup using <code>systemctl<\/code><\/p>\n<pre>## systemctl status postgresql\r\n## systemctl enable postgresql<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>SETUP DATABASE<\/b><\/h3>\n<p>We need to create a new Postgresql database user and set a password for it. This user will be used by Stringer to access its database.<\/p>\n<p>Create the user using:<\/p>\n<pre>## sudo -u postgres createuser -D -A -P stringer<\/pre>\n<p>Create a new database using:<\/p>\n<pre>## sudo -u postgres createdb -O stringer stringer_live<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>SETUP USER<\/b><\/h3>\n<p>For security reasons it is recommended to run Stringer under a separate user account on the <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">VPS<\/a>. So let&#8217;s create a new user named <code>stringer<\/code> using the following command:<\/p>\n<pre>## useradd stringer -m -s \/bin\/bash<\/pre>\n<p>next, switch to this newly created user account using <code>su<\/code>:<\/p>\n<pre>## su -l stringer<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>SETUP RUBY<\/b><\/h3>\n<p>For easier management of Ruby, we will use <code>rbenv<\/code> to setup specific Ruby version for the newly created account. So, make sure you are logged into your system with the <code>stringer<\/code> user account and located in your home directory which should be <code>\/home\/stringer<\/code>. Once you&#8217;re there, clone the <code>rbenv<\/code> repository using:<\/p>\n<pre>## git clone git:\/\/github.com\/sstephenson\/rbenv.git .rbenv<\/pre>\n<p>next, add <code>rbenv<\/code> to your <code>stringer<\/code> user PATH and run rbenv init in your user&#8217;s <code>.bash_profile<\/code>:<\/p>\n<pre>## echo 'export PATH=\"$HOME\/.rbenv\/bin:$PATH\"' &gt;&gt; $HOME\/.bash_profile\r\n## echo 'eval \"$(rbenv init -)\"' &gt;&gt; $HOME\/.bash_profile<\/pre>\n<p>now clone the <code>ruby-build<\/code> repository to <code>rbenv<\/code> plugins directory so we can install Ruby on the system.<\/p>\n<pre>## git clone git:\/\/github.com\/sstephenson\/ruby-build.git $HOME\/.rbenv\/plugins\/ruby-build<\/pre>\n<p>finally, source <code>.bash_profile<\/code> using the command below:<\/p>\n<pre>## source ~\/.bash_profile<\/pre>\n<p>with all that in place, install ruby using the following commands:<\/p>\n<pre>## rbenv install 2.0.0-p598\r\n## rbenv local 2.0.0-p598\r\n## rbenv rehash<\/pre>\n<p>check ruby version using <code>ruby --version<\/code>. For example:<\/p>\n<pre>[stringer@linux-vps ~]$ ruby --version\r\nruby 2.0.0p598 (2014-11-13 revision 48408) [x86_64-linux]<\/pre>\n<p>additionally, you need to install <code>bundler<\/code> which will handle Stringer&#8217;s dependencies. So, install this ruby gem using:<\/p>\n<pre>## gem install bundler<\/pre>\n<p>re-hash your ruby environment using <code>rbenv<\/code><\/p>\n<pre>rbenv rehash<\/pre>\n<p>Install <code>foreman<\/code> which will run the application:<\/p>\n<pre>## gem install foreman<\/pre>\n<p>&nbsp;<\/p>\n<h3><b>SETUP STRINGER<\/b><\/h3>\n<p>first, change to your stringer&#8217;s home directory using:<\/p>\n<pre>## cd ~\/<\/pre>\n<p>next, clone stringer&#8217;s repository from github to stringer directory using <code>git<\/code>:<\/p>\n<pre>## git clone https:\/\/github.com\/swanson\/stringer.git\r\n## cd stringer<\/pre>\n<p>use <code>bundler<\/code> to install stringer&#8217;s dependecies, for example:<\/p>\n<pre>## bundle install\r\n## rbenv rehash<\/pre>\n<p>Stringer uses environment variables to determine information about your database, so edit these values to reflect your database and the postgresql user&#8217;s password you set earlier in this tutorial:<\/p>\n<pre>## echo 'export STRINGER_DATABASE=\"stringer_live\"' &gt;&gt; $HOME\/.bash_profile\r\n## echo 'export STRINGER_DATABASE_USERNAME=\"stringer\"' &gt;&gt; $HOME\/.bash_profile\r\n## echo 'export STRINGER_DATABASE_PASSWORD=\"CHANGE_ME\"' &gt;&gt; $HOME\/.bash_profile\r\n## echo 'export RACK_ENV=\"production\"' &gt;&gt; $HOME\/.bash_profile\r\n## echo \"export SECRET_TOKEN=`openssl rand -hex 20`\" &gt;&gt; $HOME\/.bash_profile\r\n\r\nsource ~\/.bash_profile<\/pre>\n<p>Tell stringer to run the database in production mode, using the postgresql database you created earlier:<\/p>\n<pre>## cd $HOME\/stringer\r\n## rake db:migrate RACK_ENV=production<\/pre>\n<p>Run the application:<\/p>\n<pre>## foreman start<\/pre>\n<p>Set up a cron job to parse the rss feeds.<\/p>\n<pre>## crontab -e<\/pre>\n<pre>SHELL=\/bin\/bash\r\nPATH=\/home\/stringer\/.rbenv\/bin:\/bin\/:\/usr\/bin:\/usr\/local\/bin\/:\/usr\/local\/sbin\r\n*\/10 * * * *  source $HOME\/.bash_profile; cd $HOME\/stringer\/; bundle exec rake fetch_feeds;<\/pre>\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 <strong>install Stringer and Ruby for you<\/strong>. They are available 24\u00d77 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>The following tutorial will guide you through the details on how to install and run Stringer on a Fedora 20 &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install and run Stringer on a Fedora Linux VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#more-16527\" aria-label=\"Read more about How to install and run Stringer on a Fedora Linux VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16528,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[93,367,139,652],"class_list":["post-16527","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-fedora","tag-rss","tag-ruby","tag-stringer","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.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install and run Stringer on a Fedora Linux VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install and run Stringer on a Fedora Linux 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\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install and run Stringer on a Fedora Linux VPS\" \/>\n<meta property=\"og:description\" content=\"How to install and run Stringer on a Fedora Linux VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-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=\"2014-12-09T21:43:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t<meta property=\"og:image:height\" content=\"196\" \/>\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\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install and run Stringer on a Fedora Linux VPS\",\"datePublished\":\"2014-12-09T21:43:52+00:00\",\"dateModified\":\"2022-06-03T08:46:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/\"},\"wordCount\":526,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\",\"keywords\":[\"fedora\",\"rss\",\"ruby\",\"stringer\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/\",\"name\":\"How to install and run Stringer on a Fedora Linux VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\",\"datePublished\":\"2014-12-09T21:43:52+00:00\",\"dateModified\":\"2022-06-03T08:46:30+00:00\",\"description\":\"How to install and run Stringer on a Fedora Linux VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2014\\\/12\\\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg\",\"width\":350,\"height\":196},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install and run Stringer on a Fedora Linux 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":"How to install and run Stringer on a Fedora Linux VPS | RoseHosting","description":"How to install and run Stringer on a Fedora Linux 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\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install and run Stringer on a Fedora Linux VPS","og_description":"How to install and run Stringer on a Fedora Linux VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-12-09T21:43:52+00:00","article_modified_time":"2022-06-03T08:46:30+00:00","og_image":[{"width":350,"height":196,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-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\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install and run Stringer on a Fedora Linux VPS","datePublished":"2014-12-09T21:43:52+00:00","dateModified":"2022-06-03T08:46:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/"},"wordCount":526,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg","keywords":["fedora","rss","ruby","stringer"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/","name":"How to install and run Stringer on a Fedora Linux VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg","datePublished":"2014-12-09T21:43:52+00:00","dateModified":"2022-06-03T08:46:30+00:00","description":"How to install and run Stringer on a Fedora Linux VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/12\/how-to-install-and-run-stringer-on-a-fedora-vps.jpg","width":350,"height":196},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-run-stringer-on-a-fedora-linux-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install and run Stringer on a Fedora Linux 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\/16527","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=16527"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16527\/revisions"}],"predecessor-version":[{"id":42162,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16527\/revisions\/42162"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16528"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16527"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16527"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16527"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}