I followed the set up instructions here:
ExistingMySQLInstance

One addition, the grant line to MySQL should be:

Code:
--------------------
    grant all on slimserver.* to slimser...@localhost;
--------------------

or slim server won't have access.

There were two slimserver running so had to kill off the existing
server (which /etc/init.d/squeezecenter stop did not seem able to
stop)

Once I did that and restarted slimserver, all seems good.

To summarize. 
Stop squeezecenter:

Code:
--------------------
    /etc/init.d/squeezecenter stop
--------------------

Set up MySQL:

Code:
--------------------
    
  mysql -u root
  create database slimserver;
  flush privileges;
  quit
  
--------------------

Find and kill the other server:

Code:
--------------------
    
  ps fax | grep squeez
  kill -15 pid
  
--------------------

Restart squeezeserver:

Code:
--------------------
    /etc/init.d/squeezecenter start
--------------------

check the log:

Code:
--------------------
    less /var/log/squeezecenter/server.log
--------------------


-- 
JuddRogers
------------------------------------------------------------------------
JuddRogers's Profile: http://forums.slimdevices.com/member.php?userid=29924
View this thread: http://forums.slimdevices.com/showthread.php?t=62681

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to