search for: walteryork

Displaying 13 results from an estimated 13 matches for "walteryork".

2017 May 29
2
Proper way to start multiple icecast services through bash script?
...clients (just connection resets), no cleanup of open sockets (may result in stalled connections), no closing of databases (for applications that use databases) or other backend services and child processes. Icecast2 perfectly handles SIGTERM. > On Mon, May 29, 2017 at 5:27 PM, Walter York <walteryork at hotmail.com> wrote: > >>> #Kill all processes with the name icecast > >>> ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r > >>> kill -9 use pkill here. That is portable. It has a lot options to select the correct process. Als...
2017 May 29
5
Proper way to start multiple icecast services through bash script?
Yes, the web players I've tested have a hard time parsing meta properly using only one instance with separate streams. Tested at least 6 of them looking for reliable meta and cross browser/OS compatibility. On May 29, 2017, at 10:23 AM, Marvin Scholz <epirat07 at gmail.com<mailto:epirat07 at gmail.com>> wrote: Any specific reason to run 4 Icecasts? On 29 May 2017, at 16:21,
2018 Mar 05
3
How do I combine my ssl certs?
I have https/ssl on my site ok, but it uses two certificates from letsencrypt which renew automatically every three months. However - Icecase says. ssl-certificate If specified, this points to the location of a file that contains both the X.509 private and public key. This is required for HTTPS support to be enabled. Please note that the user Icecast is running as must be able to read the file.
2017 May 29
0
Proper way to start multiple icecast services through bash script?
...clients (just connection resets), no cleanup of open sockets (may result in stalled connections), no closing of databases (for applications that use databases) or other backend services and child processes. Icecast2 perfectly handles SIGTERM. > On Mon, May 29, 2017 at 5:27 PM, Walter York <walteryork at hotmail.com> wrote: > >>> #Kill all processes with the name icecast > >>> ps -ef | grep icecast | grep -v grep | awk '{print $2}' | xargs -r > >>> kill -9 use pkill here. That is portable. It has a lot options to select the correct process. Als...
2017 May 29
0
Proper way to start multiple icecast services through bash script?
...etc/icecast.xml -b > /dev/null 2>&1 & as for killing them, don't overcomplicate things, killall icecast -KILL also, perhaps you don't even need to kill and start them again, try to HUP them and see if the certificate updates. On Mon, May 29, 2017 at 5:27 PM, Walter York <walteryork at hotmail.com> wrote: > Yes, the web players I've tested have a hard time parsing meta properly > using only one instance with separate streams. Tested at least 6 of them > looking for reliable meta and cross browser/OS compatibility. > On May 29, 2017, at 10:23 AM, Marvin Sch...
2016 Aug 09
2
Installing IceCast 2.4.3 on Centos 7
Morning all, I set up IceCast several years ago on centos 6. seemed easy, now I am trying to install it on Centos 7. For the life of me, I cant do it, I have read several STEP by steps on how to configure, but I am pounding my head against the wall, I am a Windows IT guy, thus I am looking for a step by step detail way of doing it. All the examples I find, fail at some point or another. Any
2016 Jul 09
0
icecast and SSL
I use IceCast with Centova and I'm having a hard time setting up SSL with icecast. I updated both config files:/usr/local/icecast/etc/icecast.xml/usr/local/centovacast/var/vhosts/music/etc/server.conf Both files above were modified to include: <listen-socket> <port>8000</port> <ssl>1</ssl> and the path section updated
2016 Jul 10
0
ssl-cert's
1. I already have the cert and key files. How do I combine these existing keys into a single PEM file?2. What directory do you suggest I place they PEM file? > To: icecast at xiph.org > From: bluntroller at yandex.com > Date: Sat, 9 Jul 2016 13:19:03 +0200 > Subject: [Icecast] ssl-cert's > > @ the guy with the ssl certs problem: > > recheck file- and
2016 Dec 27
0
How to secure IceCast (Secure login page and disable SSL/TLS versions.
I have used the options successfully to enable secure streams with icecast. This is so great because I don't have to loose the green lock on pages that have streams... However after reviewing the security, I have the following questions. 1. How do I require the login pop-up to be secure so I don't send creds unencrypted? If the answer is to disable or use firewall to restrict http,
2018 Mar 06
0
How do I combine my ssl certs?
Robert, There is a github repo that will create and then another script to renew your Let's Encrypt Certs for Icecast. The commands are well documented to help you customize for your specific implementation. The Repo is here: https://github.com/amavarick/letsencrypt_certbot_standalone_icecast The commands to concatenate the certs are: #Replace domain.tld for the name of your domain as
2017 Jul 10
0
SSL Setup
I use Let's Encrypt for SSL with icecast. Here is my rudimentary script on GitHub... It does NOT require Apache or nginx. https://github.com/amavarick/letsencrypt_certbot_standalone_icecast On Jul 10, 2017, at 9:39 AM, ScanCaster <scancaster at scancaster.net<mailto:scancaster at scancaster.net>> wrote: On Mon, 10 Jul 2017 09:31:06 +0000, Philipp Schafft wrote: Good morning,
2016 Aug 09
0
Installing IceCast 2.4.3 on Centos 7
It took me a LONG time to find the easiest steps to install Icecast. If you have basic Linux experience, this install should be a breeze for you. I choose to use yum installer because I want to be able to update it via yum and not have to manually build/install each package when one comes out. I use a VPS that provides a modified minimal CentOS 7 64bit install. Your install may not have the
2017 May 29
2
Proper way to start multiple icecast services through bash script?
I have 4 instances of icecast running on my server. #Command to start icecast /usr/bin/icecast -c /etc/icecast.xml -b & /usr/bin/icecast -c /etc/icecast1.xml -b & /usr/bin/icecast -c /etc/icecast2.xml -b & /usr/bin/icecast -c /etc/icecast3.xml -b & I am trying to integrate an automated Let's Encrypt Certificate renewal. My testing found that I need to restart the icecast