Displaying 4 results from an estimated 4 matches for "consolemessag".
Did you mean:
consolemessage
2005 Aug 19
3
WEBrick OS X StartupItem?
...following StartupItems
failed to properly start:
Aug 18 21:19:06 localhost SystemStarter:
/Library/StartupItems/swu
Aug 18 21:19:06 localhost SystemStarter: - execution of Startup script
failed
Here is /Library/StartupItems/swu/swu...
#!/bin/sh
. /etc/rc.common
StartService ()
{
ConsoleMessage "Starting Rails App from script"
cd /Users/salestraining/rails/swu/
ruby script/server -d -e production > log/startupitem.log
}
RunService "$1"
Here is /Library/StartupItems/swu/StartupParameters.plist...
{
Description = "swu";
Provides...
2006 Feb 10
0
Any way to grep through fast moving consolemessages?
...-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Eric
Bishop
Sent: 10 February 2006 02:23
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: [Asterisk-Users] Any way to grep through fast moving
consolemessages?
Or perhaps slow them down or pipe to a file?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060210/c5e2576f/attachment.htm
2009 Jan 24
2
nginx and mongrel, more info
Hello,
Where I can find more info on how to nginx and mongrel boot when the
machine reboots ?
In os x, please. In Linux world I found some scripts but they don''t work
and don''t go in the same place as OS X.
thanks,
r.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
2009 Aug 27
1
Fatal: Dovecot is already running
...ut ran into issues because MySQL wasn't always ready when dovecot
tried to launch, and dovecot would never come up as a result. Below
is the script I'm using, which includes a check for MySQL:
#!/bin/sh
# A script to automatically start up policyd on system bootup
. /etc/rc.common
ConsoleMessage "dovecot - setting up"
# wait for mysql start up
IS_ALIVE=`/usr/local/mysql/bin/mysqladmin -umysql ping | grep -c
'alive'`
while [ "$IS_ALIVE" != "1" ];
do
sleep 5
ConsoleMessage "dovecot - waiting for MySQL"
IS_ALIVE=`/usr/local/mysql/bin/mysqlad...