Re: [RDD] MySQL passwords

2012-02-08 Thread Fred Gleason
On Feb 8, 2012, at 02:39 04, Bill Putney wrote:

 Can you point me to a concise Lise of what needs to be done with 2.1.2 to 
 move change things from stand alone to client server? Is it the same as 1.7.2?

It's pretty much the same, although of course you get some additional options 
with 2.x *vis-a-vis* system services.  The main difference is with regard to 
ownership and permissions of the audio store -- the details can be found in the 
'UPGRADING' file.

Cheers!


|-|
| Frederick F. Gleason, Jr. |   Chief Developer   |
|   |   Paravel Systems   |
|-|
|  No, `Eureka!' is Greek for `This bath is too hot!'   |
|  -- Dr. Who |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Todd Baker
Dear BIll,

Not sure but I dont think root has a password unless you change it...

When I enter the sequence you have I get a password prompt (Enter Password:).

This is normal because you didn't give it a password - mysql is the database it 
will try to use.

Just hit Enter at the Password prompt and you should be able to get in unless 
you changed root's passwordif you did change it then you need to enter 
it at the prompt

Hope that helps.

Todd Baker
- Original Message -
From: Bill Putney bi...@wwpc.com
To: User discussion about the Rivendell Radio Automation System 
Rivendell-dev@lists.rivendellaudio.org
Sent: Tuesday, February 7, 2012 12:18:51 PM
Subject: [RDD] MySQL passwords


Can someone help me out with an RRAbuntu MySQL password issue? 

When I put mysql -u root -p mysql 
The system replies with PASSWORD: 

Then I'm stuck. I'm trying to replace the hostname localhost with % on the 
server so the clients can access the sever copy of MySQL. I've already changed 
the bind address to 0.0.0.0 from 127.0.0.1. 

Thanks, Bill Putney - KPTZ Port Townsend, WA 


___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Benjamin D. Fillmore

If the root password has not been set, then you would connect by typing:

mysql -u root

without the -p it will attempt to connect without a password.

*Benjamin Fillmore
*Fillmore Integrated Technical Services, Inc.
1011 Cherry Ave, Suite B
Nashville, TN  37203
(615) 866-0674 office
(949) 209-5683 e-fax

On 2/7/2012 11:28 AM, Kevin Miller wrote:

On 02/07/2012 08:18 AM, Bill Putney wrote:

Can someone help me out with an RRAbuntu MySQL password issue?

When I put mysql -u root -p mysql
The system replies with PASSWORD:

Then I'm stuck. I'm trying to replace the hostname localhost with % on
the server so the clients can access the sever copy of MySQL. I've
already changed the bind address to 0.0.0.0 from 127.0.0.1.

Thanks, Bill Putney - KPTZ Port Townsend, WA

I think what you want to do is just
mysql -u root -p
then enter the password when prompted.  YLooking at that command line,
I'd expect mysql to be interpreting mysql as the password you're
trying to pass.  If that's the case you shoud probably come up with a
more secure password.  I suspect rather you're trying to pass the name
of the database to use.  If that's the case, after you enter the
password, issue the command
USE mysql;

It's been ages since I played w/mysql so  maybe I'm crossing some wires,
but I think that should get you going...

...Kevin
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Bill Putney
I just loaded the RRAbuntu LiveCD. I haven't changed anything in MySQL.

Here's what I get without a password;

root@auto-srv:~/etc# mysql -u root
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
password: NO)
root@auto-srv:~/etc#


On Tue, Feb 7, 2012 at 10:26 AM, Benjamin D. Fillmore 
benja...@fillmoretechnical.com wrote:

  If the root password has not been set, then you would connect by typing:

 mysql -u root

 without the -p it will attempt to connect without a password.

  *Benjamin Fillmore
 *Fillmore Integrated Technical Services, Inc.
 1011 Cherry Ave, Suite B
 Nashville, TN  37203
 (615) 866-0674 office
 (949) 209-5683 e-fax

 On 2/7/2012 11:28 AM, Kevin Miller wrote:

 On 02/07/2012 08:18 AM, Bill Putney wrote:

  Can someone help me out with an RRAbuntu MySQL password issue?

 When I put mysql -u root -p mysql
 The system replies with PASSWORD:

 Then I'm stuck. I'm trying to replace the hostname localhost with % on
 the server so the clients can access the sever copy of MySQL. I've
 already changed the bind address to 0.0.0.0 from 127.0.0.1.

 Thanks, Bill Putney - KPTZ Port Townsend, WA

  I think what you want to do is just
mysql -u root -p
 then enter the password when prompted.  YLooking at that command line,
 I'd expect mysql to be interpreting mysql as the password you're
 trying to pass.  If that's the case you shoud probably come up with a
 more secure password.  I suspect rather you're trying to pass the name
 of the database to use.  If that's the case, after you enter the
 password, issue the command
USE mysql;

 It's been ages since I played w/mysql so  maybe I'm crossing some wires,
 but I think that should get you going...

 ...Kevin


 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Bill Putney
I tried using the only password anyone has suggested for Rivendell's root
MySQL password mysql and this is what I get;

root@auto-srv:~/etc# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
password: YES)


On Tue, Feb 7, 2012 at 9:28 AM, Kevin Miller atf...@alaska.net wrote:

 On 02/07/2012 08:18 AM, Bill Putney wrote:
  Can someone help me out with an RRAbuntu MySQL password issue?
 
  When I put mysql -u root -p mysql
  The system replies with PASSWORD:
 
  Then I'm stuck. I'm trying to replace the hostname localhost with % on
  the server so the clients can access the sever copy of MySQL. I've
  already changed the bind address to 0.0.0.0 from 127.0.0.1.
 
  Thanks, Bill Putney - KPTZ Port Townsend, WA

 I think what you want to do is just
   mysql -u root -p
 then enter the password when prompted.  YLooking at that command line,
 I'd expect mysql to be interpreting mysql as the password you're
 trying to pass.  If that's the case you shoud probably come up with a
 more secure password.  I suspect rather you're trying to pass the name
 of the database to use.  If that's the case, after you enter the
 password, issue the command
   USE mysql;

 It's been ages since I played w/mysql so  maybe I'm crossing some wires,
 but I think that should get you going...

 ...Kevin
 --
 Kevin Miller
 Juneau, Alaska
 http://www.alaska.net/~atftb
 In the history of the world, no one has ever washed a rented car.
   - Lawrence Summers
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread ltyndale
I could be remembering incorrectly, but I think that the root MySQL password on 
RRABuntu was set to be rivendell
unless you changed it.

I can't recall if it was capitalized, so try:

Rivendell
and
rivendell

See if it works.
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Bill Putney
Thanks for the reminder. That got me in but things are still broken. :(

Bill


On Tue, Feb 7, 2012 at 12:21 PM, ltynd...@cogeco.ca wrote:

 I could be remembering incorrectly, but I think that the root MySQL
 password on RRABuntu was set to be rivendell
 unless you changed it.

 I can't recall if it was capitalized, so try:

 Rivendell
 and
 rivendell

 See if it works.
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Bill Putney
OK... Laboring under a delusion here. I was thinking that the v1.13
RRAbuntu was 2.1.2. I just got an eMail from Geoff Barkman and it turns out
that the System Info comment is correct! RRAbuntu is NOT Rivendell 2.1.2!

Now I really need to get the ethernet drivers in Broadcast Appliance
working  and do something about the display drivers to support the Intel
Motherboard that's in our server.

4 days out of my life I'll never get back. sigh

Bill

On Tue, Feb 7, 2012 at 12:24 PM, Bill Putney bi...@wwpc.com wrote:

 Thanks for the reminder. That got me in but things are still broken. :(

 Bill



 On Tue, Feb 7, 2012 at 12:21 PM, ltynd...@cogeco.ca wrote:

 I could be remembering incorrectly, but I think that the root MySQL
 password on RRABuntu was set to be rivendell
 unless you changed it.

 I can't recall if it was capitalized, so try:

 Rivendell
 and
 rivendell

 See if it works.
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev



___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Nathan Steele
I think you need apache as well, but no you don't have to run the 
appliance, I do some contract work for a station that uses broadcast 
appliance on the workstations but is using an Ubuntu server...now they 
do other things on that server that have occasionally caused a problem 
but that's a different story. I run broadcast appliance on my server 
1:because it was easy to install and get working, and 2: because I can 
put it on air if needed, but if you just want to hold the audio and 
database, you don't have to.


Nathaniel C. Steele
Assistant Chief Engineer/Technical Director
WTRM-FM / TheCrossFM


On 2/7/2012 3:36 PM, Bill Putney wrote:

Fred,

Is there any reason the server needs to run Broadcast Appliance? Does 
it just need an NFS server and a MySQL server?


Bill

On Tue, Feb 7, 2012 at 11:23 AM, Fred Gleason 
fr...@paravelsystems.com mailto:fr...@paravelsystems.com wrote:


On Feb 7, 2012, at 14:00 38, Bill Putney wrote:

 I tried using the only password anyone has suggested for
Rivendell's root MySQL password mysql and this is what I get;

This will totally depend on what the underlying distro has
configured as the default password.  For Broadcast Appliance, it's
blank --i.e. just hitting 'enter' when you see the password prompt
should let you in.

Cheers!


|-|
| Frederick F. Gleason, Jr. |   Chief Developer  
|
|   |   Paravel Systems  
|

|-|
| Focus on the dream, not the competition.
   |

|   -- Nemesis Racing Team
motto  |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
mailto:Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev



___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Fred Gleason
On Feb 7, 2012, at 15:33 27, Bill Putney wrote:

 Now I really need to get the ethernet drivers in Broadcast Appliance working

Chances are good that Intel has these drivers already packaged that could be 
bootstrapped with the installation.  The stock 'RedHat 5' packages should work 
fine.

Cheers!


|-|
| Frederick F. Gleason, Jr. |   Chief Developer   |
|   |   Paravel Systems   |
|-|
| Focus on the dream, not the competition.|
|   -- Nemesis Racing Team motto  |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Fred Gleason
On Feb 7, 2012, at 15:36 30, Bill Putney wrote:

 Is there any reason the server needs to run Broadcast Appliance? Does it just 
 need an NFS server and a MySQL server?

So long as it's a 'pure' server --i.e. no Rivendell code running on it.

Cheers!


|-|
| Frederick F. Gleason, Jr. |   Chief Developer   |
|   |   Paravel Systems   |
|-|
|There cannot be a crisis next week.  My schedule is already full.|
| -- Henry Kissinger  |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Fred Gleason
On Feb 7, 2012, at 14:55 59, Bill Putney wrote:

 By the way, can you think of a reason why Broadcast Appliance doesn't support 
 an Ethernet NIC that Centos 5.5 LiveCD does?

RedHat must have backported the driver as part of one of the point updates.

Cheers!


|-|
| Frederick F. Gleason, Jr. |   Chief Developer   |
|   |   Paravel Systems   |
|-|
|  No, `Eureka!' is Greek for `This bath is too hot!'   |
|  -- Dr. Who |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] MySQL passwords

2012-02-07 Thread Bill Putney
Thanks Fred. I replaced the one client that had a problem and I've got BA 
loaded on all the clients. Can you point me to a concise Lise of what needs to 
be done with 2.1.2 to move change things from stand alone to client server? Is 
it the same as 1.7.2?

Bill

Sent from my iPad

On Feb 7, 2012, at 8:04 PM, Fred Gleason fr...@paravelsystems.com wrote:

 On Feb 7, 2012, at 14:55 59, Bill Putney wrote:
 
 By the way, can you think of a reason why Broadcast Appliance doesn't 
 support an Ethernet NIC that Centos 5.5 LiveCD does?
 
 RedHat must have backported the driver as part of one of the point updates.
 
 Cheers!
 
 
 |-|
 | Frederick F. Gleason, Jr. |   Chief Developer   |
 |   |   Paravel Systems   |
 |-|
 |  No, `Eureka!' is Greek for `This bath is too hot!'   |
 |  -- Dr. Who |
 |-|
 
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev