Re: [RDD] Trusty install
I think you should already be set on Step 2. That was the wget -q -O - http://debian.tryphon.eu/release.asc | sudo apt-key add - from your previous email. The wget part downloads Tryphon's public key (used to verify the authenticity of their packages) and then pipes the contents into 'apt-key add' (the - means take the input from standard input, e.g. the pipe). If you do something wrong in Step 2, you'll know because you'll get untrusted repo warnings when you run 'apt-get update' in Step 3. -Andy On Tue, Jul 22, 2014 at 3:59 PM, Pedro Picoto wrote: > Can you please dissecate step 2 as if I was a 8 yo kid? > > > On Tue, Jul 22, 2014 at 8:11 PM, Andy Sayler wrote: > >> Have you added the trophen repo to /etc/apt/sources.list (or >> sources.list.d)? Have you run an 'apt-get update'? >> >> Generally the flow for installing a package from a third party repos is: >> >> 1. Add repo link to sources.list or sources.list.d. >> 2. Add key to trusted keys (e.g. via 'apt-key add' or via >> /etc/apt/trusted.gpg.d). >> 3. Run 'sudo apt-get update' to import the newest list of available >> packages from all repos. >> 4. Run 'sudo apt-get install ...' to install the package in question. >> >> >> On Tue, Jul 22, 2014 at 1:00 PM, Pedro Picoto >> wrote: >> >>> As a noob... what wrong am I doing here?... >>> >>> pedro@pedro-desktop ~ $ wget -q -O - >>> http://debian.tryphon.eu/release.asc | sudo apt-key add - >>> [sudo] password for pedro: >>> OK >>> pedro@pedro-desktop ~ $ sudo apt-get install rivendell-server >>> rivendellA ler as listas de pacotes... Pronto >>> A construir árvore de dependências >>> A ler a informação de estado... Pronto >>> E: Não foi possível encontrar o pacote rivendell-server >>> E: Não foi possível encontrar o pacote rivendell >>> pedro@pedro-desktop ~ $ >>> >>> >>> >>> On Sat, Jun 28, 2014 at 10:56 AM, Alban Peignier >>> wrote: >>> Hi all, We've tested Rivendell packages under trusty (fresh ubuntu trusty, following instructions from the wiki page [0]). Indeed, there is an apache configuration problem. Rivendell server cgi scripts can't be invoked. For example, Rivendell can't import files or provide peak data. The configuration provided by the Rivendell package (/etc/rivendell/apache.conf) must be fixed to work as expected with the new apache version. We'll fix the package to manage this new apache requirement [1]. For the moment, the workaround is simple : http://projects.tryphon.eu/issues/943#note-4 We have a functional Rivendell with this workaround. @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the repository key. See the related instructions on http://debian.tryphon.eu. 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages 1. http://projects.tryphon.eu/issues/943 -- Alban Peignier - al...@tryphon.eu Tryphon : Radio, Web et Logiciels Libres http://www.tryphon.eu ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >>> >>> >>> ___ >>> Rivendell-dev mailing list >>> Rivendell-dev@lists.rivendellaudio.org >>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >>> >>> >> > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
Can you please dissecate step 2 as if I was a 8 yo kid? On Tue, Jul 22, 2014 at 8:11 PM, Andy Sayler wrote: > Have you added the trophen repo to /etc/apt/sources.list (or > sources.list.d)? Have you run an 'apt-get update'? > > Generally the flow for installing a package from a third party repos is: > > 1. Add repo link to sources.list or sources.list.d. > 2. Add key to trusted keys (e.g. via 'apt-key add' or via > /etc/apt/trusted.gpg.d). > 3. Run 'sudo apt-get update' to import the newest list of available > packages from all repos. > 4. Run 'sudo apt-get install ...' to install the package in question. > > > On Tue, Jul 22, 2014 at 1:00 PM, Pedro Picoto > wrote: > >> As a noob... what wrong am I doing here?... >> >> pedro@pedro-desktop ~ $ wget -q -O - http://debian.tryphon.eu/release.asc >> | sudo apt-key add - >> [sudo] password for pedro: >> OK >> pedro@pedro-desktop ~ $ sudo apt-get install rivendell-server rivendellA >> ler as listas de pacotes... Pronto >> A construir árvore de dependências >> A ler a informação de estado... Pronto >> E: Não foi possível encontrar o pacote rivendell-server >> E: Não foi possível encontrar o pacote rivendell >> pedro@pedro-desktop ~ $ >> >> >> >> On Sat, Jun 28, 2014 at 10:56 AM, Alban Peignier >> wrote: >> >>> Hi all, >>> >>> We've tested Rivendell packages under trusty (fresh ubuntu trusty, >>> following instructions from the wiki page [0]). >>> >>> Indeed, there is an apache configuration problem. Rivendell server cgi >>> scripts can't be invoked. For example, Rivendell can't import files or >>> provide peak data. >>> >>> The configuration provided by the Rivendell package >>> (/etc/rivendell/apache.conf) must be fixed to work as expected with the >>> new apache version. We'll fix the package to manage this new apache >>> requirement [1]. >>> >>> For the moment, the workaround is simple : >>> http://projects.tryphon.eu/issues/943#note-4 >>> >>> We have a functional Rivendell with this workaround. >>> >>> @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the >>> repository key. See the related instructions on http://debian.tryphon.eu >>> . >>> >>> 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages >>> 1. http://projects.tryphon.eu/issues/943 >>> -- >>> Alban Peignier - al...@tryphon.eu >>> >>> Tryphon : Radio, Web et Logiciels Libres >>> http://www.tryphon.eu >>> ___ >>> Rivendell-dev mailing list >>> Rivendell-dev@lists.rivendellaudio.org >>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >>> >> >> >> ___ >> Rivendell-dev mailing list >> Rivendell-dev@lists.rivendellaudio.org >> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >> >> > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
Have you added the trophen repo to /etc/apt/sources.list (or sources.list.d)? Have you run an 'apt-get update'? Generally the flow for installing a package from a third party repos is: 1. Add repo link to sources.list or sources.list.d. 2. Add key to trusted keys (e.g. via 'apt-key add' or via /etc/apt/trusted.gpg.d). 3. Run 'sudo apt-get update' to import the newest list of available packages from all repos. 4. Run 'sudo apt-get install ...' to install the package in question. On Tue, Jul 22, 2014 at 1:00 PM, Pedro Picoto wrote: > As a noob... what wrong am I doing here?... > > pedro@pedro-desktop ~ $ wget -q -O - http://debian.tryphon.eu/release.asc > | sudo apt-key add - > [sudo] password for pedro: > OK > pedro@pedro-desktop ~ $ sudo apt-get install rivendell-server rivendellA > ler as listas de pacotes... Pronto > A construir árvore de dependências > A ler a informação de estado... Pronto > E: Não foi possível encontrar o pacote rivendell-server > E: Não foi possível encontrar o pacote rivendell > pedro@pedro-desktop ~ $ > > > > On Sat, Jun 28, 2014 at 10:56 AM, Alban Peignier wrote: > >> Hi all, >> >> We've tested Rivendell packages under trusty (fresh ubuntu trusty, >> following instructions from the wiki page [0]). >> >> Indeed, there is an apache configuration problem. Rivendell server cgi >> scripts can't be invoked. For example, Rivendell can't import files or >> provide peak data. >> >> The configuration provided by the Rivendell package >> (/etc/rivendell/apache.conf) must be fixed to work as expected with the >> new apache version. We'll fix the package to manage this new apache >> requirement [1]. >> >> For the moment, the workaround is simple : >> http://projects.tryphon.eu/issues/943#note-4 >> >> We have a functional Rivendell with this workaround. >> >> @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the >> repository key. See the related instructions on http://debian.tryphon.eu. >> >> 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages >> 1. http://projects.tryphon.eu/issues/943 >> -- >> Alban Peignier - al...@tryphon.eu >> >> Tryphon : Radio, Web et Logiciels Libres >> http://www.tryphon.eu >> ___ >> Rivendell-dev mailing list >> Rivendell-dev@lists.rivendellaudio.org >> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >> > > > ___ > Rivendell-dev mailing list > Rivendell-dev@lists.rivendellaudio.org > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
As a noob... what wrong am I doing here?... pedro@pedro-desktop ~ $ wget -q -O - http://debian.tryphon.eu/release.asc | sudo apt-key add - [sudo] password for pedro: OK pedro@pedro-desktop ~ $ sudo apt-get install rivendell-server rivendellA ler as listas de pacotes... Pronto A construir árvore de dependências A ler a informação de estado... Pronto E: Não foi possível encontrar o pacote rivendell-server E: Não foi possível encontrar o pacote rivendell pedro@pedro-desktop ~ $ On Sat, Jun 28, 2014 at 10:56 AM, Alban Peignier wrote: > Hi all, > > We've tested Rivendell packages under trusty (fresh ubuntu trusty, > following instructions from the wiki page [0]). > > Indeed, there is an apache configuration problem. Rivendell server cgi > scripts can't be invoked. For example, Rivendell can't import files or > provide peak data. > > The configuration provided by the Rivendell package > (/etc/rivendell/apache.conf) must be fixed to work as expected with the > new apache version. We'll fix the package to manage this new apache > requirement [1]. > > For the moment, the workaround is simple : > http://projects.tryphon.eu/issues/943#note-4 > > We have a functional Rivendell with this workaround. > > @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the > repository key. See the related instructions on http://debian.tryphon.eu. > > 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages > 1. http://projects.tryphon.eu/issues/943 > -- > Alban Peignier - al...@tryphon.eu > > Tryphon : Radio, Web et Logiciels Libres > http://www.tryphon.eu > ___ > Rivendell-dev mailing list > Rivendell-dev@lists.rivendellaudio.org > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
Hello all I had the "alias warn" message only AH00671: The ScriptAlias directive in /etc/apache2/sites-enabled/rd-bin.conf at line 50 will probably never match because it overlaps an earlier ScriptAlias. Nevertheless, i fixed the annoying problem (I was already thinking about going to nginx and give it a try.. has anybody used it with rvendell ? thanks alban and all community 2014-06-28 13:46 GMT-03:00 Tim Camp : > After workaround, > > I get this on apache restart > > sudo service apache2 restart * Restarting web server apache2 > [Sat Jun 28 11:44:09.079519 2014] > [core:warn] [pid 6958:tid 140716308473728] AH00111: Config variable > ${prefix} is not defined > [Sat Jun 28 11:44:09.079705 2014] [core:warn] [pid 6958:tid > 140716308473728] AH00111: Config variable ${prefix} is not defined > [Sat Jun 28 11:44:09.079908 2014] [core:warn] [pid 6958:tid > 140716308473728] AH00111: Config variable ${prefix} is not defined > [Sat Jun 28 11:44:09.080016 2014] [core:warn] [pid 6958:tid > 140716308473728] AH00111: Config variable ${prefix} is not defined > [Sat Jun 28 11:44:09.081009 2014] [alias:warn] [pid 6958:tid > 140716308473728] AH00671: The ScriptAlias directive in > /etc/apache2/sites-enabled/rd-bin.conf at line 50 will probably never match > because it overlaps an earlier ScriptAlias. > AH00558: apache2: Could not reliably determine the server's fully > qualified domain name, using 127.0.1.1. Set the 'ServerName' directive > globally to suppress this message > > No change in rivendell, problem still exists > > Cheers > > Tim > > > > On Sat, Jun 28, 2014 at 4:56 AM, Alban Peignier wrote: > >> Hi all, >> >> We've tested Rivendell packages under trusty (fresh ubuntu trusty, >> following instructions from the wiki page [0]). >> >> Indeed, there is an apache configuration problem. Rivendell server cgi >> scripts can't be invoked. For example, Rivendell can't import files or >> provide peak data. >> >> The configuration provided by the Rivendell package >> (/etc/rivendell/apache.conf) must be fixed to work as expected with the >> new apache version. We'll fix the package to manage this new apache >> requirement [1]. >> >> For the moment, the workaround is simple : >> http://projects.tryphon.eu/issues/943#note-4 >> >> We have a functional Rivendell with this workaround. >> >> @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the >> repository key. See the related instructions on http://debian.tryphon.eu. >> >> 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages >> 1. http://projects.tryphon.eu/issues/943 >> -- >> Alban Peignier - al...@tryphon.eu >> >> Tryphon : Radio, Web et Logiciels Libres >> http://www.tryphon.eu >> > > > ___ > Rivendell-dev mailing list > Rivendell-dev@lists.rivendellaudio.org > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > > -- Daniel Roviriego (21) 35920701 (21) 99561654 ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
After workaround, I get this on apache restart sudo service apache2 restart * Restarting web server apache2 [Sat Jun 28 11:44:09.079519 2014] [core:warn] [pid 6958:tid 140716308473728] AH00111: Config variable ${prefix} is not defined [Sat Jun 28 11:44:09.079705 2014] [core:warn] [pid 6958:tid 140716308473728] AH00111: Config variable ${prefix} is not defined [Sat Jun 28 11:44:09.079908 2014] [core:warn] [pid 6958:tid 140716308473728] AH00111: Config variable ${prefix} is not defined [Sat Jun 28 11:44:09.080016 2014] [core:warn] [pid 6958:tid 140716308473728] AH00111: Config variable ${prefix} is not defined [Sat Jun 28 11:44:09.081009 2014] [alias:warn] [pid 6958:tid 140716308473728] AH00671: The ScriptAlias directive in /etc/apache2/sites-enabled/rd-bin.conf at line 50 will probably never match because it overlaps an earlier ScriptAlias. AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message No change in rivendell, problem still exists Cheers Tim On Sat, Jun 28, 2014 at 4:56 AM, Alban Peignier wrote: > Hi all, > > We've tested Rivendell packages under trusty (fresh ubuntu trusty, > following instructions from the wiki page [0]). > > Indeed, there is an apache configuration problem. Rivendell server cgi > scripts can't be invoked. For example, Rivendell can't import files or > provide peak data. > > The configuration provided by the Rivendell package > (/etc/rivendell/apache.conf) must be fixed to work as expected with the > new apache version. We'll fix the package to manage this new apache > requirement [1]. > > For the moment, the workaround is simple : > http://projects.tryphon.eu/issues/943#note-4 > > We have a functional Rivendell with this workaround. > > @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the > repository key. See the related instructions on http://debian.tryphon.eu. > > 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages > 1. http://projects.tryphon.eu/issues/943 > -- > Alban Peignier - al...@tryphon.eu > > Tryphon : Radio, Web et Logiciels Libres > http://www.tryphon.eu > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
Thanks Alban, I had figured out part of this but missed the symlink. Tim Camp WZEW-FM On Jun 28, 2014 4:56 AM, "Alban Peignier" wrote: > Hi all, > > We've tested Rivendell packages under trusty (fresh ubuntu trusty, > following instructions from the wiki page [0]). > > Indeed, there is an apache configuration problem. Rivendell server cgi > scripts can't be invoked. For example, Rivendell can't import files or > provide peak data. > > The configuration provided by the Rivendell package > (/etc/rivendell/apache.conf) must be fixed to work as expected with the > new apache version. We'll fix the package to manage this new apache > requirement [1]. > > For the moment, the workaround is simple : > http://projects.tryphon.eu/issues/943#note-4 > > We have a functional Rivendell with this workaround. > > @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the > repository key. See the related instructions on http://debian.tryphon.eu. > > 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages > 1. http://projects.tryphon.eu/issues/943 > -- > Alban Peignier - al...@tryphon.eu > > Tryphon : Radio, Web et Logiciels Libres > http://www.tryphon.eu > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
Hi all, We've tested Rivendell packages under trusty (fresh ubuntu trusty, following instructions from the wiki page [0]). Indeed, there is an apache configuration problem. Rivendell server cgi scripts can't be invoked. For example, Rivendell can't import files or provide peak data. The configuration provided by the Rivendell package (/etc/rivendell/apache.conf) must be fixed to work as expected with the new apache version. We'll fix the package to manage this new apache requirement [1]. For the moment, the workaround is simple : http://projects.tryphon.eu/issues/943#note-4 We have a functional Rivendell with this workaround. @Pedro: NO_PUBKEY error in apt-get occurs when you didn't add the repository key. See the related instructions on http://debian.tryphon.eu. 0. http://rivendell.tryphon.org/wiki/Debian-Ubuntu_packages 1. http://projects.tryphon.eu/issues/943 -- Alban Peignier - al...@tryphon.eu Tryphon : Radio, Web et Logiciels Libres http://www.tryphon.eu ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
I'm having an issue also with Trusty, Tryphon repositories. At this moment I think that it isn't even available from them, although I updated/upgraded the sources. SQL was installed, Rivendel/Rivendell Server got this W: Erro GPG: http://debian.tryphon.eu trusty Release: As seguintes assinaturas não puderam ser verificadas porque a chave pública não está disponível: NO_PUBKEY D080CEF3C6ADBBD5 W: Falhou obter http://packages.domain.com/dists/trusty/InRelease W: Falhou obter http://packages.domain.com/dists/trusty/Release.gpg Não foi possível resolver 'packages.domain.com' W: Falhou o download de alguns ficheiros de índice. Foram ignorados ou os antigos foram usados em seu lugar. This to say that once, a few weeks ago, I've managed to install RD (perhaps when it was still available) on Trusty and the no peak data was shown. Also a few other "features"... A google search pointed me to an Apache issue... On Sat, Jun 28, 2014 at 2:38 AM, Andy Sayler wrote: > I haven't yet tried Rivendell on Trusty, but I have had to deal with > Apache-related config updates on a number of non-Rivendell Trusty systems. > Trusty moved to a new version of Apache (2.4) relative to Precise (2.2) and > a lot of the old config parameters have changed. So it wouldn't surprise me > if it was a permissions issues somewhere in the Apache config do to a > changed parameter. > > > On Fri, Jun 27, 2014 at 7:18 PM, Tim Camp wrote: > >> Greetings >> >> Working on a new install on Trusty and everything is in except I cannot >> get apache to let me delete or edit carts, localhost/rd-bin/addcart.html >> gives me a forbidden, so pretty sure this is a cgi-bin config or >> permissions problem. >> I can add a cart and record it and play it, but no delete and no peak >> data, in fact peak data error is invalid user or password. >> >> I have poked around with this for hours and can only seem to make matters >> worse. >> >> Anyone have a list of all the configuration settings and permissions >> involving apache2? >> >> ps: installed using packages from Alban version 2.8.1 >> >> Thanks >> >> Cheers >> >> Tim Camp >> WZEW-FM >> >> >> ___ >> Rivendell-dev mailing list >> Rivendell-dev@lists.rivendellaudio.org >> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev >> >> > > ___ > Rivendell-dev mailing list > Rivendell-dev@lists.rivendellaudio.org > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
Re: [RDD] Trusty install
I haven't yet tried Rivendell on Trusty, but I have had to deal with Apache-related config updates on a number of non-Rivendell Trusty systems. Trusty moved to a new version of Apache (2.4) relative to Precise (2.2) and a lot of the old config parameters have changed. So it wouldn't surprise me if it was a permissions issues somewhere in the Apache config do to a changed parameter. On Fri, Jun 27, 2014 at 7:18 PM, Tim Camp wrote: > Greetings > > Working on a new install on Trusty and everything is in except I cannot > get apache to let me delete or edit carts, localhost/rd-bin/addcart.html > gives me a forbidden, so pretty sure this is a cgi-bin config or > permissions problem. > I can add a cart and record it and play it, but no delete and no peak > data, in fact peak data error is invalid user or password. > > I have poked around with this for hours and can only seem to make matters > worse. > > Anyone have a list of all the configuration settings and permissions > involving apache2? > > ps: installed using packages from Alban version 2.8.1 > > Thanks > > Cheers > > Tim Camp > WZEW-FM > > > ___ > Rivendell-dev mailing list > Rivendell-dev@lists.rivendellaudio.org > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev > > ___ Rivendell-dev mailing list Rivendell-dev@lists.rivendellaudio.org http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev