Page 1 of 1

[SOLVED] OSX console and remote conection

PostPosted: Wed Aug 12, 2015 10:31 am
by drMARTINS
Hi,
i recently change my computer for mac mini. I have serviio server on linux server. Now i cannot connect from OS X console to server. I have probably some small mistake in info.plist but i don't know what can be wrong. Can tell me somebody what i have to change? Thank you
My info.plist

  Code:
<?xml version="1.0" ?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>JavaAppLauncher</string>
<key>CFBundleIconFile</key>
<string>serviio.icns</string>
<key>CFBundleIdentifier</key>
<string>org.serviio.serviio-console</string>
<key>CFBundleDisplayName</key>
<string>Serviio Console</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Serviio-Console</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.2</string>
<key>CFBundleURLTypes</key>
<array>                 <dict>               <key>CFBundleURLName</key>               <string>org.serviio.url</string>               <key>CFBundleURLSchemes</key>               <array>                <string>serviio</string>               </array>              </dict>             </array>             <key>JVMRuntime</key>             <string>jre</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSHumanReadableCopyright</key>
<string>1.5.2 (c) 2009 - 2015 Petr Nejedly</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>JVMMainClassName</key>
<string>org.serviio.console.ServiioConsole</string>
<key>CFBundleDocumentTypes</key>
<array>
</array>
<key>LSArchitecturePriority</key>
<array>
</array>
<key>LSEnvironment</key>
<dict>
<key>LC_CTYPE</key>
<string>UTF-8</string>
</dict>
<key>JVMOptions</key>
<array>
<string>-XX:+UseG1GC</string>
<string>-XX:GCTimeRatio=1</string>
<string>-XX:MinHeapFreeRatio=5</string>
<string>-XX:MaxHeapFreeRatio=10</string>
<string>-Dserviio.home=$APP_ROOT/Contents/Java/</string>
<string>-Djava.net.preferIPv4Stack=true</string>
<string>-Dorg.restlet.engine.loggerFacadeClass=org.restlet.ext.slf4j.Slf4jLoggerFacade</string>
<string>-Dproperty_name=192.168.88.135</string>
</array>
<key>JVMDefaultOptions</key>
<dict>
<key>Xms</key>
<string>-Xms5M</string>
</dict>
<key>JVMArguments</key>
<array>
</array>
</dict>
</plist>

Re: OSX console and remote conection

PostPosted: Wed Aug 12, 2015 5:27 pm
by zip
replace

  Code:
<string>-Dproperty_name=192.168.88.135</string>


with

  Code:
<string>-Dserviio.remoteHost=192.168.88.135</string>

Re: OSX console and remote conection

PostPosted: Thu Aug 13, 2015 2:37 pm
by drMARTINS
thank you so much :-) works nice :-)