0
votes
1answer
33 views

Daemon isn't loaded with SMJobSubmit objective C

I want to write a program which load a daemon with SMJobSubmit() API Here's my code : int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; ...
0
votes
1answer
19 views

Network notification to a daemon

I'd like to create a daemon which makes a series of requests to a webserver every time the machine comes online. I could use the SCNetworkReachabilityGetFlags function in a loop to figure out if a ...
0
votes
0answers
19 views

“IPC failure: Operation not permitted” on running SampleD

I'm trying to understand the code mentioned in the Apple Developer Docs for writing daemons. I tried building and running the code in XCode. As mentioned in the README the steps for running the same ...
0
votes
1answer
42 views

Releasing resources at end of NSRunLoop

I am trying to release resources allocated in daemon process at the end of it or if someone quits the process. Lets say, int main(int argc, const char * argv[]) { Controller *controller = ...
2
votes
3answers
86 views

MacOsX: Launching an app using NSWorkspace from a daemon doesn't work if the daemon is run as root

I created a Command Line Tool app using Xcode. In that app, I used NSWorkspace to launch another application bundle (.app) as suggested here. MacOsX: How to launch an application (.app) from a ...
0
votes
0answers
88 views

How to Load LaunchDaemon plist from my Mac Application

I'm trying to a Load LaunchDaemon plist from my Mac Application. When i try to load it in terminal it loads successfully, but when i try to load it thru my code, it doesn't work. Here is my code : ...
2
votes
0answers
101 views

launching a user-context application by root-daemon on demand

I'm a noob to objective c and I have a daemon code that runs as root (system-wide application) and communicates with a server. Every once in a while, the server will command that root app to fire up ...
1
vote
1answer
63 views

Configuring the mongod service: launch daemon or launch agent?

I'm installing MongoDB on OS X, using the 10gen builds. But their installation tutorial proves to be a bit scarce for me. So far I've found examples of mongod installed as a launch agent and as a ...
5
votes
1answer
231 views

MACOSX: how to start daemon which need root privileges from cocoa application

Conditions are the following: MacOSX 10.7 and Cocoa graphical application written in objective-c. I am faced the following problem. I can't start daemon application from /user/bin folder from my ...
1
vote
0answers
96 views

How to deal with Mac OS X Helper/Main app architecture regarding core data, shared preferences and notifications?

I'm having some architectural doubts about a project (Mac OS X app) I'm working on. It basically consist of two elememts: a daemon that runs in the background gathering some data and a viewer used to ...
0
votes
0answers
42 views

What is the directory for upstart scripts on XAMPP?

My web application requires some daemon processes. I have an upstart script myapplication.conf to start these processes. On my remote Ubuntu server I put this file in directory /etc/init/. I am ...
1
vote
1answer
144 views

Get rid of the Python launcher icon - OS X [closed]

When I launch a daemon on my Macbook Pro, for 'daemonize" a python script, a python launcher icon popup in the Dock. I would like to know if there is any ways to disable it / remove it This icon : ...
0
votes
0answers
124 views

Daemon - Client IPC with Unix sockets

I have a launch daemon which I want to ask for status information from a user app. I implemented a client-server model (with the daemon as server) using unix sockets as described here: OS X - ...
1
vote
1answer
172 views

Thread Count varies from OS to OS [closed]

When we run our Daemon application, the thread count of it varies for different OS's. i.e when the code is executed in Windows 7 it takes 15 threads (When the code is ran for a period of 1.5 hours), ...
0
votes
1answer
20 views

How to make an Agent work in the system session?

I'm trying to a background program that need to connect to window server, which is not allowed in a daemon. But may job is quite appropriate to be done in [System] session which daemons act. I have ...
0
votes
0answers
72 views

How can I shut down mac when when application is running by LaunchDaemon?

At first, thank you for read my ask. I make some Application with Xcode and I launch it by daemon. I do following. Make plist file at path /Library/LaunchDaemons. plist contents is like this.. ...
0
votes
1answer
277 views

Installing a daemon for Mac OS X

I created a daemon for running into Mac OS X platform. I made an installer using PackageMaker and the Daemon is installed without problems. It seems that after the installation has finished, I need to ...
3
votes
1answer
257 views

nodejs daemon wrong architecture

I'm trying to run 'dali' a highcharts exporter from nodejs on my Mac under OSX Mountain Lion I'm getting the following error: module.js:485 process.dlopen(filename, module.exports); ^ ...
0
votes
0answers
70 views

Load/Unload LaunchDaemon via cpp or QT on mac

I'm writing a QT GUI App in cpp that needs to be able to start/stop a Launch Daemon running on Mac. To do this, the user needs root privileges. Is there a way to elevate user privileges to ...
0
votes
2answers
76 views

Where to put executables used by daemon processes in Mac OS X

I am making a daemon for Mac OSX. So my daemon will run an executable. Can you tell me where is the best place for the executable to be placed. I want this to be run for every user. Cheers
1
vote
1answer
146 views

C++ Keep process alive after it kills its parent

I'm working on implementing a self-updater for a daemon on OS X. The update is published as a .pkg file, so what I'm trying to do is as follows: When the daemon is notified that an update is ...
0
votes
0answers
58 views

Mac login daemon

I have written a bash script that mounts a unique network drive based on a network login because I will be joining the Mac to domain. So depending which domain user logs in it will be different share ...
0
votes
0answers
191 views

Mac Service (equivalent to Windows Service)

I want to create a Mac Service (equivalent to Windows Service) which should keep on running in the background and from my client application (GUI) I want to pass some parameters to it. Can you please ...
0
votes
0answers
322 views

Simple Mac OS daemon on startup

I am relative noob to the world of Mac OS and Objective C. I am trying to create a simple daemon (for now) but it seems that I totally miss something in the process. I have read various threads and ...
2
votes
1answer
508 views

MacOS: Manually force a daemon to start

I've created a plist file in the /Library/LaunchDaemon/ The computer on which it runs cannot be restarted (server thing), it's running MacOS Tiger. I expected the following command to do the job, but ...
0
votes
1answer
239 views

How to register(install) as service java application with JSVC wrapper on MacOS X

I have an application which i want to run as service on MacOS X. I used JSVC as wrapper and currently it starts in console just fine, shutdown process is correct, etc. So now i have to register it as ...
1
vote
3answers
2k views

Running Python in background on OS X

Is there any way to keep my Python script (with an endless 'while' loop) running in the background on OS X? Also, for the same purpose, is there any way to have "autorun" python script on a USB drive? ...
2
votes
3answers
432 views

Daemon with Cocoa

I wrote a FTP Server, witch is started from the command line via ftpd.command. Now I want to run that command from a Cocoa app. I want to quit the app and the command should remain running. And when ...
0
votes
3answers
2k views

Run daemon as another user on mac os x

I'm trying right now to create separate user for jenkins on Mac Os and run it with this user. I've created a new user: # Create the group sudo dscl . create /Groups/jenkins sudo dscl . create ...
3
votes
1answer
1k views

How can you start a LaunchAgent for the first time without rebooting, when your code runs as a LaunchDaemon?

I have a LaunchDaemon. When it runs, it checks if SIMBL is installed. If SIMBL is not installed, it uses NSTask to run /usr/sbin/installer on the SIMBL.pkg. SIMBL's postflight script then tries to ...
0
votes
1answer
214 views

OSX LaunchAgent for app that launches another app

I'm trying to set up a local LaunchAgent for cassandra and am running into an issue since bin/cassandra is just a shell script that launches: /usr/bin/java -ea -javaagent:blah blah blah blah blah ...
1
vote
1answer
105 views

Data exchange between daemon and launch agent

Mac OS X Snow Leopard and Lion. I have a daemon (which runs from root) and launch agent which runs from current user. How can daemon request data (or send command) to launch agent?
3
votes
1answer
768 views

Mac daemon howto (by the 'book')

I'm relatively new to Mac programming, and I need a simple daemon to run in the background. Basically it has to start either when the computer starts or when it's GUI counterpart launches, it needs to ...
0
votes
1answer
273 views

Mac OS X - what is the relationship between daemon and jvm

From what I can understand, on Mac OS X, daemon is something running in the background (same as Windows Service). Can I make the connection between daemon by saying that a dameon written in Java is ...
0
votes
1answer
590 views

How do i create a agent/daemon that listens for NSDistributedNotifcations

I've created a command line cocoa program which creates an NSDistributedNotification, which other applications send notifications to. How can i keep the program running in an active state so it can ...
0
votes
2answers
470 views

Run .exe with daemon or better solutions to get something similar to windows service (mac and linux)?

I was wondering if i can run a exe with daemons in mac and linux or do you have any other solutions to do something similar to a windows service that is a scheduler ? I know i can use crontab but i ...
2
votes
1answer
561 views

execve from a Mac OS X launchd daemon

Is it possible to use execve from a launchd daemon? My process that I would like to make into a daemon launches several child processes using fork() followed by execve, but the documentation for ...
0
votes
2answers
134 views

Why does a Daemon randomly stop?

This is sort of related to a previous, yet so far unsuccessful question of mine. I have a daemon that is placed in the LaunchAgents folder (on Mac) and it should run perpetually in the background, but ...
0
votes
1answer
282 views

User agent or daemon?

I am writing driver to a HID device. The driver opens HID device in exclusive access mode. This driver should run for all user. So it should be either User agent or daemon. In driver I use some ...
1
vote
1answer
254 views

missing entry in launchctl after restart

I have a deamon which is registered with launchctl to run as system-wide-daemon and to load automatically with every system startup or if the daemon crashes. I have registered this daemon with: sudo ...
1
vote
1answer
930 views

Cocoa Launch agent registering itself after installation

I have created Cocoa app which is type of launch agent. To distribute this I have created package as well which installs the app and copies the launchagnet plist file in /Libraries/LaunchAgents. Now ...
2
votes
1answer
1k views

launch agent from daemon in user context

I have a launch daemon that runs in the login context of a Mac OSX 10.6 machine. I want to launch an agent for each user from that agent, and have the agent run in the user's login context. However, I ...
1
vote
2answers
3k views

Launchd agent not starting

I'm attempting to write a launchd agent that runs a simple application for every user that logs in to the Mac OS X system. I have created a file named com.mycompany.myapp.plist and placed it in ...
4
votes
2answers
1k views

How to run a script on device mount in OSX

I want to make a script that automatically backs up my kindle files when I connect it to my macbook pro. Writing the script is well within my ability, but I don't know what's the best way to run a ...
2
votes
3answers
833 views

Kill other bash daemons from the same script

I am having a hell of a time trying to write a "kill all other daemon processes" function for use within a bash daemon. I do not ever want more than one daemon running at once. Any suggestions? This ...
0
votes
2answers
435 views

Control Processes Started by Bash Daemon

In bash, I have created a simple daemon to execute commands when my internet connection changes: #!/bin/bash doService(){ while do checkTheInternetConnection sleep 15 done } ...
1
vote
1answer
1k views

Writing daemon in objective c

I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?
2
votes
1answer
1k views

Writing daemon in objective c

I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?
1
vote
1answer
2k views

developing a osx deamon that runs before user login using xcode

Hi I am trying to develop a daemon using objective-C/xcode. I am new to mac world and can I get an idea of what project template to choose in xcode and how to do it. Can I get a simple and basic ...
0
votes
1answer
2k views

Java Service Wrapper 3.2.3 on Mac OS X 64-bit

What's the best way to run an app using Java Service Wrapper 3.2.3 on Mac OS X 64-bit? sh.script.in works, but there is no macosx-universal-64 version of the wrapper native binary (on JSW's 3.2.3 ...

1 2