prl_disp_service

GaëlM

Bit poster
Hello my Parallels Desktop don't start.

prl_disp_service error

I have attempt to uninstall and reinstall and same thing, not start :-(

report: 6470808


Edit:

->if i run <sudo launchctl start "com.parallels.desktop.launchdaemon"> DispatcherService crash and Parallels can't start and i see in log:
Parallels Dispatcher Server sucessfully started
Parallels Dispatcher Server was stopped
/Library/Parallels/Parallels Service.app/Contents/Resources/ParallelsDispatcherService: line 187: 1662 Abort trap "${ParallelsDispatcherService}" -e --logfile "${LogFile}" --pidfile "${PidFile}" > /dev/null 2>&1
ReportCrash[1665:2903] Saved crash report for prl_disp_service[1662] version ??? (???) to /Library/Logs/DiagnosticReports/prl_disp_service_2010-08-21-193439_localhost.crash (attached)

->if i run <sudo "/Library/Parallels/Parallels Service.app/Contents/Resources/ParallelsDispatcherService" start> DispatcherService start and Parallels can start but i have to do this after each reboot... what the problem?

Thank
 

Attachments

Last edited:
it might be a rights issue for the launcher. Check whether the proper permissions are set for the files LaunchAgents/com.parallels.desktop.launch.plist and LaunchDaemons/com.parallels.desktop.launchdaemon.plist which reside in your library. They should be owner: system, group: wheel.
 
ls -l /Library/LaunchAgents/com.parallels.desktop.launch.plist
-rw-r--r-- 1 root wheel 563 22 jul 22:29 /Library/LaunchAgents/com.parallels.desktop.launch.plist

ls -l /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist
-rw-r--r-- 1 root wheel 567 22 jul 22:29 /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist

Please parallels's support read report:6470808, attached file and my post and help me.

Thank
 
I'm not having any issues. This is what I have:
Code:
joevt$ ls -l /Library/LaunchAgents/com.parallels.desktop.launch.plist
-rw-r--r--  1 root  wheel  563 15 Jul 14:59 /Library/LaunchAgents/com.parallels.desktop.launch.plist
joevt$ ls -l /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist
-rw-r--r--  1 root  wheel  567 15 Jul 14:59 /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist
joevt$ cat /Library/LaunchAgents/com.parallels.desktop.launch.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Label</key>
	<string>com.parallels.desktop.client.launch</string>
	<key>LimitLoadToSessionType</key>
	<string>Aqua</string>
	<key>ProgramArguments</key>
	<array>
		<string>/Applications/Parallels Desktop.app/Contents/MacOS/PD_Starter.app/Contents/MacOS/prl_client_app</string>
		<string>--mode</string>
		<string>cache</string>
	</array>
	<key>RunAtLoad</key>
	<true/>
</dict>
</plist>
joevt$ cat /Library/LaunchDaemons/com.parallels.desktop.launchdaemon.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>ExitTimeOut</key>
	<integer>150</integer>
	<key>HopefullyExitsFirst</key>
	<true/>
	<key>Label</key>
	<string>com.parallels.desktop.launchdaemon</string>
	<key>ProgramArguments</key>
	<array>
		<string>/Library/Parallels/Parallels Service.app/Contents/Resources/ParallelsDispatcherService</string>
		<string>start</string>
	</array>
	<key>RunAtLoad</key>
	<true/>
</dict>
</plist>
 
Back
Top