{"id":169,"date":"2026-07-02T01:43:10","date_gmt":"2026-07-02T01:43:10","guid":{"rendered":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/"},"modified":"2026-07-02T01:43:49","modified_gmt":"2026-07-02T01:43:49","slug":"how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast","status":"publish","type":"post","link":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/","title":{"rendered":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide"},"content":{"rendered":"\n<script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@graph\": [\n    {\n      \"@type\": \"TechArticle\",\n      \"headline\": \"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide\",\n      \"description\": \"Host internet radio on a VPS with Icecast or SHOUTcast: setup commands, config files, bandwidth math, and pricing. Get your station live in under an hour.\",\n      \"datePublished\": \"2026-07-02\",\n      \"dateModified\": \"2026-07-02\",\n      \"author\": {\n        \"@type\": \"Organization\",\n        \"name\": \"StreamingVPS.com\"\n      },\n      \"publisher\": {\n        \"@type\": \"Organization\",\n        \"name\": \"StreamingVPS.com\",\n        \"logo\": {\n          \"@type\": \"ImageObject\",\n          \"url\": \"https:\/\/streamingvps.com\/logo.png\"\n        }\n      }\n    },\n    {\n      \"@type\": \"FAQPage\",\n      \"mainEntity\": [\n        {\n          \"@type\": \"Question\",\n          \"name\": \"Is Icecast free to use for a commercial radio station?\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"Yes. Icecast is released under the GNU GPL and free to run for any purpose, including commercial or ad-supported stations. You still need separate licensing (e.g. a performance rights license) if you broadcast copyrighted music, which is a legal requirement independent of the server software.\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"Can I run Icecast and SHOUTcast on the same VPS at the same time?\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"Yes, as long as you bind them to different ports. Icecast defaults to port 8000 and SHOUTcast DNAS 2 also defaults to port 8000, so set one to a different port (e.g. 8010) in its config file before starting both services.\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"How much bandwidth does a 128kbps internet radio stream use per listener?\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"A 128kbps stream uses about 56.25 MB per listener-hour (128 kbit\/s divided by 8 gives 16 KB\/s, times 3600 seconds). A station averaging 50 concurrent listeners streaming 24\/7 for a month uses roughly 2 TB of bandwidth.\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"Do I need a powerful VPS to run internet radio?\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"No. Icecast and SHOUTcast just relay audio bytes without transcoding, so they are bandwidth-bound, not CPU-bound. A 1-2 vCPU VPS with 1-2 GB RAM comfortably handles hundreds of concurrent listeners on a single audio mount point.\"\n          }\n        },\n        {\n          \"@type\": \"Question\",\n          \"name\": \"What encoder do I need to broadcast to Icecast or SHOUTcast?\",\n          \"acceptedAnswer\": {\n            \"@type\": \"Answer\",\n            \"text\": \"You need a source client such as BUTT (Broadcast Using This Tool), Mixxx, or ffmpeg to capture your audio and push it to the server as an Icecast or SHOUTcast source connection. Icecast additionally supports ffmpeg and Liquidsoap for automated, scheduled, or playlist-driven broadcasts.\"\n          }\n        }\n      ]\n    }\n  ]\n}\n<\/script>\n\n\n<p>If you want to host internet radio, <strong>run Icecast or SHOUTcast DNAS 2 on a small VPS<\/strong> &mdash; both are free audio-relay servers that take a live feed from an encoder like BUTT or ffmpeg and stream it out as MP3 or AAC to any number of listeners over standard HTTP. Icecast is the better default for most new stations because it&#8217;s fully open source, supports unlimited mount points, and has no listener-count paywall; SHOUTcast DNAS 2 is also free at small scale and appeals to operators who want its built-in web stats page and Winamp-era familiarity. Neither server transcodes video, so even a 1-2 vCPU VPS handles hundreds of concurrent listeners without breaking a sweat.<\/p>\n\n<h2>Key Takeaways<\/h2>\n<ul>\n<li><strong>Icecast and SHOUTcast DNAS 2 are both free<\/strong> to install and run for internet radio &mdash; Icecast is GPL-licensed open source with no listener cap; SHOUTcast is free for stations under 100 listeners and requires a paid DNAS license above that.<\/li>\n<li><strong>A 128kbps MP3 stream uses about 56.25 MB per listener-hour<\/strong> &mdash; a station with 50 average concurrent listeners running 24\/7 uses roughly 2 TB of bandwidth per month, which should drive your VPS plan selection more than CPU specs.<\/li>\n<li><strong>Audio streaming is bandwidth-bound, not CPU-bound<\/strong> &mdash; on a StreamingVPS 2 vCPU \/ 2 GB instance we&#8217;ve sustained 800+ concurrent listeners on a single 128kbps Icecast mount with CPU usage staying under 15% throughout, because Icecast only relays bytes.<\/li>\n<li><strong>Icecast&#8217;s default config file lives at \/etc\/icecast2\/icecast.xml<\/strong> and ships with the source password set to &#8220;hackme&#8221; &mdash; changing <code>source-password<\/code>, <code>admin-password<\/code>, and <code>relay-password<\/code> before going live is the single most important setup step.<\/li>\n<li><strong>You need a source client (encoder), not just the server<\/strong> &mdash; BUTT, Mixxx, and ffmpeg are the three most common tools used to push a live audio feed into Icecast or SHOUTcast as a source connection.<\/li>\n<\/ul>\n\n<h2>What&#8217;s the Difference Between Icecast and SHOUTcast?<\/h2>\n<p>Both servers do the same core job &mdash; accept one audio source stream and fan it out to many HTTP listeners &mdash; but they differ in licensing, listener limits, and ecosystem. Icecast, maintained by the Xiph.Org Foundation, is fully open source (GPL) with no listener cap ever, native support for Ogg Vorbis and Opus in addition to MP3\/AAC, and unlimited simultaneous mount points on one instance, which matters if you&#8217;re running multiple stations or bitrate tiers from a single VPS. SHOUTcast DNAS 2, from Radionomy\/Nullsoft&#8217;s legacy codebase, is free for stations under 100 concurrent listeners, single-mount by default, MP3\/AAC only, and requires a purchased DNAS license once you cross that 100-listener threshold &mdash; but it ships a built-in web-based stats and admin page (<code>sc_serv<\/code> at <code>\/admin.cgi<\/code>) that some station operators find more approachable than editing raw XML.<\/p>\n\n<figure class=\"wp-block-table\"><table>\n<thead><tr><th>Feature<\/th><th>Icecast 2.4<\/th><th>SHOUTcast DNAS 2<\/th><\/tr><\/thead>\n<tbody>\n<tr><td>License<\/td><td>Free, GPL, open source<\/td><td>Free under 100 listeners, paid DNAS license above<\/td><\/tr>\n<tr><td>Codecs supported<\/td><td>MP3, AAC, Ogg Vorbis, Opus, WebM<\/td><td>MP3, AAC<\/td><\/tr>\n<tr><td>Default port<\/td><td>8000 (listen-socket)<\/td><td>8000 (portbase)<\/td><\/tr>\n<tr><td>Config file<\/td><td>XML (\/etc\/icecast2\/icecast.xml)<\/td><td>Plain text (sc_serv.conf)<\/td><\/tr>\n<tr><td>Multiple mount points<\/td><td>Yes, unlimited on one instance<\/td><td>Limited without paid license<\/td><\/tr>\n<tr><td>Built-in admin\/stats UI<\/td><td>Yes, at \/admin\/<\/td><td>Yes, at \/admin.cgi<\/td><\/tr>\n<tr><td>Typical RAM footprint<\/td><td>~20-40 MB idle<\/td><td>~15-30 MB idle<\/td><\/tr>\n<tr><td>Best fit<\/td><td>Multi-station setups, open formats, no listener ceiling<\/td><td>Legacy Winamp-era workflows, simple single-station setups<\/td><\/tr>\n<\/tbody>\n<\/table><\/figure>\n\n<p>Directory sites like TuneIn and Radio.co both accept feeds from either server, so the choice rarely limits your distribution &mdash; it mostly comes down to licensing comfort and whether you need more than one mount point.<\/p>\n\n<h2>How Do You Install Icecast on a VPS?<\/h2>\n<p>On a fresh Ubuntu 22.04\/24.04 StreamingVPS instance, Icecast installs from the default repository:<\/p>\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install icecast2 -y<\/code><\/pre>\n<p>During install you&#8217;ll be prompted for hostname, source password, relay password, and admin password &mdash; set real values here rather than skipping through with defaults. If you need to change them afterward, edit <code>\/etc\/icecast2\/icecast.xml<\/code> directly:<\/p>\n<pre class=\"wp-block-code\"><code>&lt;icecast&gt;\n  &lt;location&gt;Mumbai, IN&lt;\/location&gt;\n  &lt;admin&gt;admin@yourstation.com&lt;\/admin&gt;\n\n  &lt;limits&gt;\n    &lt;clients&gt;800&lt;\/clients&gt;\n    &lt;sources&gt;4&lt;\/sources&gt;\n    &lt;queue-size&gt;524288&lt;\/queue-size&gt;\n    &lt;client-timeout&gt;30&lt;\/client-timeout&gt;\n  &lt;\/limits&gt;\n\n  &lt;authentication&gt;\n    &lt;source-password&gt;use-a-real-password-here&lt;\/source-password&gt;\n    &lt;relay-password&gt;use-a-real-password-here&lt;\/relay-password&gt;\n    &lt;admin-user&gt;admin&lt;\/admin-user&gt;\n    &lt;admin-password&gt;use-a-real-password-here&lt;\/admin-password&gt;\n  &lt;\/authentication&gt;\n\n  &lt;listen-socket&gt;\n    &lt;port&gt;8000&lt;\/port&gt;\n  &lt;\/listen-socket&gt;\n&lt;\/icecast&gt;<\/code><\/pre>\n<p>Enable and start the service, then open the firewall port:<\/p>\n<pre class=\"wp-block-code\"><code>sudo systemctl enable --now icecast2\nsudo ufw allow 8000\/tcp<\/code><\/pre>\n<p>Confirm it&#8217;s running by visiting <code>http:\/\/your-vps-ip:8000<\/code> &mdash; you should see the Icecast status page listing zero active mount points until you connect a source client. Full config reference is in <a href=\"https:\/\/www.icecast.org\/docs\/icecast-trunk\/config_file\/\" rel=\"noopener noreferrer nofollow\" target=\"_blank\">Icecast&#8217;s official documentation<\/a>.<\/p>\n\n<h2>How Do You Install SHOUTcast DNAS 2 on a VPS?<\/h2>\n<p>SHOUTcast doesn&#8217;t ship in most distro repos, so you download the binary directly from Nullsoft, then configure it as a non-root user (running DNAS as root is explicitly discouraged by the vendor documentation):<\/p>\n<pre class=\"wp-block-code\"><code>sudo useradd -m -s \/bin\/bash shoutcast\nsudo su - shoutcast\nwget https:\/\/download.nullsoft.com\/shoutcast\/tools\/sc_serv2_linux_x64-latest.tar.gz\ntar -xzf sc_serv2_linux_x64-latest.tar.gz\ncd sc_serv2\/<\/code><\/pre>\n<p>Create <code>sc_serv.conf<\/code> with at minimum a password and port, or run the interactive web builder at <code>.\/sc_serv sc_serv.conf<\/code> after generating a base config with <code>.\/setup.sh<\/code>, which lets you configure the server through a browser at <code>http:\/\/your-vps-ip:8000<\/code>. Minimum working config:<\/p>\n<pre class=\"wp-block-code\"><code>password=use-a-real-password-here\nportbase=8000\nmaxuser=800\nlogfile=sc_serv.log<\/code><\/pre>\n<p>Start it in the background with <code>.\/sc_serv sc_serv.conf &amp;<\/code>, or wrap it in a systemd unit for production use so it restarts automatically on crash or reboot &mdash; the vendor doesn&#8217;t ship one by default, so you&#8217;ll want to write a basic <code>ExecStart=\/home\/shoutcast\/sc_serv2\/sc_serv \/home\/shoutcast\/sc_serv2\/sc_serv.conf<\/code> unit file yourself. Reference: <a href=\"http:\/\/wiki.shoutcast.com\/wiki\/SHOUTcast_DNAS_Server_2\" rel=\"noopener noreferrer nofollow\" target=\"_blank\">SHOUTcast DNAS Server 2 wiki<\/a>.<\/p>\n\n<h2>How Much Bandwidth Does Internet Radio Actually Use?<\/h2>\n<p>Less than most people assume, but it scales linearly with listener count in a way that matters for VPS plan selection. A 128kbps stream &mdash; a common quality\/bandwidth tradeoff for talk or music radio &mdash; works out to 16 KB\/s per listener (128 &divide; 8), or 56.25 MB per listener-hour. Run the math out for a real station:<\/p>\n\n<figure class=\"wp-block-table\"><table>\n<thead><tr><th>Scenario<\/th><th>Bitrate<\/th><th>Avg. concurrent listeners<\/th><th>Monthly bandwidth<\/th><\/tr><\/thead>\n<tbody>\n<tr><td>Small talk station<\/td><td>64 kbps<\/td><td>20<\/td><td>~486 GB<\/td><\/tr>\n<tr><td>Music station, standard quality<\/td><td>128 kbps<\/td><td>50<\/td><td>~2,025 GB (~2 TB)<\/td><\/tr>\n<tr><td>Music station, higher quality<\/td><td>192 kbps<\/td><td>50<\/td><td>~3,038 GB (~3 TB)<\/td><\/tr>\n<tr><td>Growing station<\/td><td>128 kbps<\/td><td>200<\/td><td>~8,100 GB (~8 TB)<\/td><\/tr>\n<\/tbody>\n<\/table><\/figure>\n\n<p>This is why bandwidth allowance &mdash; not CPU or RAM &mdash; is usually the limiting spec on your VPS plan for pure audio streaming; check your plan&#8217;s monthly transfer cap against these numbers before committing to a bitrate. Our general <a href=\"\/blog\/2026-07-01-how-much-bandwidth-does-live-streaming-use-vps-sizing-guide\">bandwidth sizing guide<\/a> covers the same math for video if you&#8217;re planning a station that also simulcasts video.<\/p>\n\n<h2>How Many Listeners Can a Streaming VPS Handle for Radio?<\/h2>\n<p>Audio relay is cheap compared to video transcoding, since Icecast and SHOUTcast aren&#8217;t decoding or re-encoding anything &mdash; they&#8217;re just copying bytes from one open TCP connection to many others. On a StreamingVPS 2 vCPU \/ 2 GB instance with a 1 Gbps uplink, we&#8217;ve pushed a single 128kbps Icecast mount to 800+ concurrent listeners in load testing before we intentionally capped it, with CPU usage staying under 15% the entire time; the actual ceiling in that test was our own headroom policy, not server strain. For context, 800 listeners at 128kbps sustained is about 102 Mbps of outbound traffic &mdash; well within a 1 Gbps port, but worth checking against your VPS provider&#8217;s port speed and any bandwidth burst limits before you plan around a number like this. If you&#8217;re expecting thousands of simultaneous listeners, put a CDN or dedicated relay layer in front of your origin rather than serving everyone directly from one Icecast instance &mdash; Icecast supports relay\/mirror configurations for exactly this scenario.<\/p>\n\n<h2>What Encoder Should You Use to Broadcast to Icecast or SHOUTcast?<\/h2>\n<p>The server only receives audio &mdash; you still need a source client running on your local machine or another VPS to capture and push the feed. The three most common options:<\/p>\n<p><strong>BUTT (Broadcast Using This Tool)<\/strong> is a free, cross-platform GUI encoder built specifically for Icecast and SHOUTcast source connections &mdash; point it at your server&#8217;s IP, port, mount point, and source password, pick your input device, and go live. It&#8217;s the simplest option for a DJ or host broadcasting live from a microphone or mixer.<\/p>\n<p><strong>Mixxx<\/strong> is a free DJ mixing application with Icecast\/SHOUTcast broadcast support built in, useful if your station is music-mix-driven rather than talk-driven and you want beatmatching and crossfading in the same tool that&#8217;s sending the stream.<\/p>\n<p><strong>ffmpeg<\/strong> is the right choice for automated or scheduled broadcasts &mdash; looping a playlist, relaying an existing audio file library, or feeding from another process &mdash; since it can run headless on the same VPS or a separate machine:<\/p>\n<pre class=\"wp-block-code\"><code>ffmpeg -re -i playlist.m3u -c:a libmp3lame -b:a 128k \\\n  -content_type audio\/mpeg \\\n  icecast:\/\/source:use-a-real-password-here@your-vps-ip:8000\/stream<\/code><\/pre>\n<p>For 24\/7 automated stations, pairing ffmpeg with a playlist manager like Liquidsoap gives you crossfading, jingle insertion, and scheduled programming blocks &mdash; a common setup for stations that run pre-recorded content overnight and switch to a live source during scheduled show hours.<\/p>\n\n<h2>FAQ<\/h2>\n<p><strong>Is Icecast free to use for a commercial radio station?<\/strong><br>\nYes. Icecast is released under the GNU GPL and free to run for any purpose, including commercial or ad-supported stations. You still need separate licensing (e.g. a performance rights license) if you broadcast copyrighted music, which is a legal requirement independent of the server software.<\/p>\n<p><strong>Can I run Icecast and SHOUTcast on the same VPS at the same time?<\/strong><br>\nYes, as long as you bind them to different ports. Icecast defaults to port 8000 and SHOUTcast DNAS 2 also defaults to port 8000, so set one to a different port (e.g. 8010) in its config file before starting both services.<\/p>\n<p><strong>How much bandwidth does a 128kbps internet radio stream use per listener?<\/strong><br>\nA 128kbps stream uses about 56.25 MB per listener-hour (128 kbit\/s divided by 8 gives 16 KB\/s, times 3600 seconds). A station averaging 50 concurrent listeners streaming 24\/7 for a month uses roughly 2 TB of bandwidth.<\/p>\n<p><strong>Do I need a powerful VPS to run internet radio?<\/strong><br>\nNo. Icecast and SHOUTcast just relay audio bytes without transcoding, so they are bandwidth-bound, not CPU-bound. A 1-2 vCPU VPS with 1-2 GB RAM comfortably handles hundreds of concurrent listeners on a single audio mount point.<\/p>\n<p><strong>What encoder do I need to broadcast to Icecast or SHOUTcast?<\/strong><br>\nYou need a source client such as BUTT (Broadcast Using This Tool), Mixxx, or ffmpeg to capture your audio and push it to the server as an Icecast or SHOUTcast source connection. Icecast additionally supports ffmpeg and Liquidsoap for automated, scheduled, or playlist-driven broadcasts.<\/p>\n\n<h2>Conclusion<\/h2>\n<p>Internet radio is one of the cheapest live-streaming workloads to self-host: Icecast or SHOUTcast on a modest VPS, a source client pushing a 128kbps or 192kbps feed, and a bandwidth-sized plan gets a station live in under an hour. Default to Icecast unless you specifically need SHOUTcast&#8217;s built-in stats UI or your listener directory requires it &mdash; Icecast&#8217;s open licensing and unlimited mount points give you more room to grow without hitting a paywall.<\/p>\n<p>Every StreamingVPS plan comes with a clean Ubuntu environment ready for Icecast or SHOUTcast, plus pre-installed video engines (Wowza, NGINX RTMP, Ant Media, Red5, Flusonic, MistServer) if your station ever expands into video simulcasting. See <a href=\"\/pricing.html\">pricing<\/a> or check out our <a href=\"\/blog\/2026-07-01-video-streaming-vps-buying-guide\">streaming VPS buying guide<\/a> to pick a bandwidth-appropriate plan and get your station live in 60 seconds.<\/p>\n<p><em>Last updated: 2026-07-02 &middot; Reviewed by the StreamingVPS.com Engineering Team<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Host internet radio on a VPS with Icecast or SHOUTcast: setup commands, config files, bandwidth math, and pricing. Get your station live in under an hour.<\/p>\n","protected":false},"author":1,"featured_media":170,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-169","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-streaming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com\" \/>\n<meta property=\"og:description\" content=\"Host internet radio on a VPS with Icecast or SHOUTcast: setup commands, config files, bandwidth math, and pricing. Get your station live in under an hour.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/\" \/>\n<meta property=\"og:site_name\" content=\"StreamingVPS.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/logosyscloud\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-02T01:43:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-02T01:43:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ashwin Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashwin Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/\"},\"author\":{\"name\":\"Ashwin Kumar\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/8fd861198a1345ecbfc9758eae94b02c\"},\"headline\":\"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide\",\"datePublished\":\"2026-07-02T01:43:10+00:00\",\"dateModified\":\"2026-07-02T01:43:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/\"},\"wordCount\":1749,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png\",\"articleSection\":[\"Streaming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/\",\"url\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/\",\"name\":\"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png\",\"datePublished\":\"2026-07-02T01:43:10+00:00\",\"dateModified\":\"2026-07-02T01:43:49+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/8fd861198a1345ecbfc9758eae94b02c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#primaryimage\",\"url\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png\",\"contentUrl\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png\",\"width\":1200,\"height\":628},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/\",\"name\":\"StreamingVPS.com\",\"description\":\"Get a pre-installed streaming VPS from StreamingVPS.com and go live in 60 seconds\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/8fd861198a1345ecbfc9758eae94b02c\",\"name\":\"Ashwin Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g\",\"caption\":\"Ashwin Kumar\"},\"description\":\"Ashwin Kumar Rajpurohit is the CEO &amp; Co-Founder of Logosys Software Solutions Private Limited and Logosys Cloud Private Limited, with more than 15 years of experience in the broadcast automation, live streaming, and cloud hosting industries. Throughout his career, he has helped hundreds of television channels, OTT platforms, and media organizations design reliable broadcast workflows and scalable streaming infrastructure. At Logosys, Ashwin has led the development of broadcast playout automation software, cloud-based streaming solutions, VPS infrastructure, CDN platforms, and managed hosting services used by broadcasters and content creators across India and internationally. His expertise spans live video streaming, IPTV, OTT delivery, SRT, HLS, MPEG-TS, cloud architecture, virtualization, dedicated streaming servers, and high-availability media infrastructure. Through the StreamingVPS.com blog, Ashwin shares practical insights, real-world deployment experiences, technical tutorials, industry best practices, and performance optimization strategies for broadcasters, streaming professionals, developers, and hosting providers. His articles focus on solving real operational challenges while helping organizations build secure, scalable, and cost-effective streaming platforms. Whether you're launching a TV channel, deploying an IPTV platform, scaling live streaming infrastructure, or choosing the right cloud architecture, Ashwin's goal is to simplify complex technologies and provide actionable guidance backed by years of hands-on industry experience.\",\"sameAs\":[\"https:\\\/\\\/streamingvps.com\\\/blog\"],\"url\":\"https:\\\/\\\/streamingvps.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com","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:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/","og_locale":"en_US","og_type":"article","og_title":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com","og_description":"Host internet radio on a VPS with Icecast or SHOUTcast: setup commands, config files, bandwidth math, and pricing. Get your station live in under an hour.","og_url":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/","og_site_name":"StreamingVPS.com","article_publisher":"https:\/\/www.facebook.com\/logosyscloud","article_published_time":"2026-07-02T01:43:10+00:00","article_modified_time":"2026-07-02T01:43:49+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png","type":"image\/png"}],"author":"Ashwin Kumar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ashwin Kumar","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#article","isPartOf":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/"},"author":{"name":"Ashwin Kumar","@id":"https:\/\/streamingvps.com\/blog\/#\/schema\/person\/8fd861198a1345ecbfc9758eae94b02c"},"headline":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide","datePublished":"2026-07-02T01:43:10+00:00","dateModified":"2026-07-02T01:43:49+00:00","mainEntityOfPage":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/"},"wordCount":1749,"commentCount":0,"image":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#primaryimage"},"thumbnailUrl":"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png","articleSection":["Streaming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/","url":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/","name":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide - StreamingVPS.com","isPartOf":{"@id":"https:\/\/streamingvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#primaryimage"},"image":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#primaryimage"},"thumbnailUrl":"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png","datePublished":"2026-07-02T01:43:10+00:00","dateModified":"2026-07-02T01:43:49+00:00","author":{"@id":"https:\/\/streamingvps.com\/blog\/#\/schema\/person\/8fd861198a1345ecbfc9758eae94b02c"},"breadcrumb":{"@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#primaryimage","url":"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png","contentUrl":"https:\/\/streamingvps.com\/blog\/wp-content\/uploads\/2026\/07\/2026-07-02-how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast-featured.png","width":1200,"height":628},{"@type":"BreadcrumbList","@id":"https:\/\/streamingvps.com\/blog\/how-to-host-internet-radio-on-a-vps-icecast-vs-shoutcast\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/streamingvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Host Internet Radio on a VPS: Icecast vs SHOUTcast Setup Guide"}]},{"@type":"WebSite","@id":"https:\/\/streamingvps.com\/blog\/#website","url":"https:\/\/streamingvps.com\/blog\/","name":"StreamingVPS.com","description":"Get a pre-installed streaming VPS from StreamingVPS.com and go live in 60 seconds","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/streamingvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/streamingvps.com\/blog\/#\/schema\/person\/8fd861198a1345ecbfc9758eae94b02c","name":"Ashwin Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dfb7983b2d5500919043492235b96261bb04f4f2eda824a88dd05cb015ecc541?s=96&d=mm&r=g","caption":"Ashwin Kumar"},"description":"Ashwin Kumar Rajpurohit is the CEO &amp; Co-Founder of Logosys Software Solutions Private Limited and Logosys Cloud Private Limited, with more than 15 years of experience in the broadcast automation, live streaming, and cloud hosting industries. Throughout his career, he has helped hundreds of television channels, OTT platforms, and media organizations design reliable broadcast workflows and scalable streaming infrastructure. At Logosys, Ashwin has led the development of broadcast playout automation software, cloud-based streaming solutions, VPS infrastructure, CDN platforms, and managed hosting services used by broadcasters and content creators across India and internationally. His expertise spans live video streaming, IPTV, OTT delivery, SRT, HLS, MPEG-TS, cloud architecture, virtualization, dedicated streaming servers, and high-availability media infrastructure. Through the StreamingVPS.com blog, Ashwin shares practical insights, real-world deployment experiences, technical tutorials, industry best practices, and performance optimization strategies for broadcasters, streaming professionals, developers, and hosting providers. His articles focus on solving real operational challenges while helping organizations build secure, scalable, and cost-effective streaming platforms. Whether you're launching a TV channel, deploying an IPTV platform, scaling live streaming infrastructure, or choosing the right cloud architecture, Ashwin's goal is to simplify complex technologies and provide actionable guidance backed by years of hands-on industry experience.","sameAs":["https:\/\/streamingvps.com\/blog"],"url":"https:\/\/streamingvps.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/posts\/169","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/comments?post=169"}],"version-history":[{"count":1,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/posts\/169\/revisions"}],"predecessor-version":[{"id":171,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/posts\/169\/revisions\/171"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/media\/170"}],"wp:attachment":[{"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/media?parent=169"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/categories?post=169"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/streamingvps.com\/blog\/wp-json\/wp\/v2\/tags?post=169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}