[Solved] Samba log spam: Unable to connect to CUPS server

Hi everyone,
I'm running into an annoying issue with samba. I don't have any printers installed, and probably won't. However smbd complains to no end in /var/log/errors.log about not being able to connect to a cups server:
Apr 18 12:30:05 asakura nmbd[4361]: *****
Apr 18 12:30:05 asakura nmbd[4361]:
Apr 18 12:30:05 asakura nmbd[4361]: Samba name server ASAKURA is now a local master browser for workgroup MYGROUP on subnet 192.168.1.121
Apr 18 12:30:05 asakura nmbd[4361]:
Apr 18 12:30:05 asakura nmbd[4361]: *****
Apr 18 12:32:22 asakura smbd[4552]: [2009/04/18 12:32:22, 0] printing/print_cups.c:cups_connect(103)
Apr 18 12:32:22 asakura smbd[4552]: Unable to connect to CUPS server localhost:631 - Connection refused
Apr 18 12:32:22 asakura smbd[4553]: [2009/04/18 12:32:22, 0] printing/print_cups.c:cups_connect(103)
Apr 18 12:32:22 asakura smbd[4553]: Unable to connect to CUPS server localhost:631 - Connection refused
Those last two lines get spammed constantly.
I've done a little bit of research into the matter, and followed the steps here to try to resolve the problem: http://www.davekb.com/browse_computer_t … server:txt
Unfortunately it doesn't appear to make any difference.
Here is my /etc/samba/smb.conf:
# This is the main Samba configuration file. You should read the
# smb.conf(5) manual page in order to understand the options listed
# here. Samba has a huge number of configurable options (perhaps too
# many!) most of which are not shown in this example
# For a step to step guide on installing, configuring and using samba,
# read the Samba-HOWTO-Collection. This may be obtained from:
# http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
# Many working examples of smb.conf files can be found in the
# Samba-Guide which is generated daily and can be downloaded from:
# http://www.samba.org/samba/docs/Samba-Guide.pdf
# Any line which starts with a ; (semi-colon) or a # (hash)
# is a comment and is ignored. In this example we will use a #
# for commentry and a ; for parts of the config file that you
# may wish to enable
# NOTE: Whenever you modify this file you should run the command "testparm"
# to check that you have not made any basic syntactic errors.
#======================= Global Settings =====================================
[global]
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
workgroup = MYGROUP
# server string is the equivalent of the NT Description field
server string = Samba Server
# Security mode. Defines in which mode Samba will operate. Possible
# values are share, user, server, domain and ads. Most people will want
# user level security. See the Samba-HOWTO-Collection for details.
security = user
# This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
; hosts allow = 192.168.1. 192.168.2. 127.
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
load printers = no
# you may wish to override the location of the printcap file
; printcap name = /etc/printcap
# on SystemV system setting printcap name to lpstat should allow
# you to automatically obtain a printer list from the SystemV spool
# system
; printcap name = lpstat
# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, cups, sysv, plp, lprng, aix, hpux, qnx
; printing = cups
# Uncomment this if you want a guest account, you must add this to /etc/passwd
# otherwise the user "nobody" is used
; guest account = pcguest
# this tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/%m.log
# Put a capping on the size of the log files (in Kb).
max log size = 50
# Use password server option only with security = server
# The argument list may include:
# password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
# password server = *
; password server = <NT-Server-Name>
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
; realm = MY_REALM
# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
; passdb backend = tdbsam
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting.
# Note: Consider carefully the location in the configuration file of
# this line. The included file is read at that point.
; include = /usr/local/samba/lib/smb.conf.%m
# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
; interfaces = 192.168.12.2/24 192.168.13.2/24
# Browser Control Options:
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
; local master = no
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
; os level = 33
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
; domain master = yes
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
; preferred master = yes
# Enable this if you want Samba to be a domain logon server for
# Windows95 workstations.
; domain logons = yes
# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
; logon script = %m.bat
# run a specific logon batch file per username
; logon script = %U.bat
# Where to store roving profiles (only for Win95 and WinNT)
# %L substitutes for this servers netbios name, %U is username
# You must uncomment the [Profiles] share below
; logon path = \\%L\Profiles\%U
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
; wins support = yes
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
; wins proxy = yes
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The default is NO.
dns proxy = no
# These scripts are used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
; add user script = /usr/sbin/useradd %u
; add group script = /usr/sbin/groupadd %g
; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
; delete user script = /usr/sbin/userdel %u
; delete user from group script = /usr/sbin/deluser %u %g
; delete group script = /usr/sbin/groupdel %g
#============================ Share Definitions ==============================
; [homes]
; comment = Home Directories
; browseable = no
; writable = yes
# Un-comment the following and create the netlogon directory for Domain Logons
; [netlogon]
; comment = Network Logon Service
; path = /usr/local/samba/lib/netlogon
; guest ok = yes
; writable = no
; share modes = no
# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;[Profiles]
; path = /usr/local/samba/profiles
; browseable = no
; guest ok = yes
# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
; [printers]
; comment = All Printers
; path = /var/spool/samba
; browseable = no
# Set public = yes to allow user 'guest account' to print
; guest ok = no
; writable = no
; printable = yes
# This one is useful for people to share files
;[tmp]
; comment = Temporary file space
; path = /tmp
; read only = no
; public = yes
# A publicly accessible directory, but read only, except for people in
# the "staff" group
;[public]
; comment = Public Stuff
; path = /home/samba
; public = yes
; writable = yes
; printable = no
; write list = @staff
# Other examples.
# A private printer, usable only by fred. Spool data will be placed in fred's
# home directory. Note that fred must have write access to the spool directory,
# wherever it is.
;[fredsprn]
; comment = Fred's Printer
; valid users = fred
; path = /homes/fred
; printer = freds_printer
; public = no
; writable = no
; printable = yes
# A private directory, usable only by fred. Note that fred requires write
# access to the directory.
;[fredsdir]
; comment = Fred's Service
; path = /usr/somewhere/private
; valid users = fred
; public = no
; writable = yes
; printable = no
# a service which has a different directory for each machine that connects
# this allows you to tailor configurations to incoming machines. You could
# also use the %U option to tailor it by user name.
# The %m gets replaced with the machine name that is connecting.
;[pchome]
; comment = PC Directories
; path = /usr/pc/%m
; public = no
; writable = yes
# A publicly accessible directory, read/write to all users. Note that all files
# created in the directory by users will be owned by the default user, so
# any user with access can delete any other user's files. Obviously this
# directory must be writable by the default user. Another user could of course
# be specified, in which case all files would be owned by that user instead.
;[public]
; path = /usr/somewhere/else/public
; public = yes
; only guest = yes
; writable = yes
; printable = no
# The following two entries demonstrate how to share a directory so that two
# users can place files there that will be owned by the specific users. In this
# setup, the directory should be writable by both users and should have the
# sticky bit set on it to prevent abuse. Obviously this could be extended to
# as many users as required.
;[myshare]
; comment = Mary's and Fred's stuff
; path = /usr/somewhere/shared
; valid users = mary fred
; public = no
; writable = yes
; printable = no
; create mask = 0765
[shared]
path = /media/shared
valid users = foosoft
public = no
writable = yes
[tomato]
path = /media/data1/tomato
valid users = foosoft
public = no
writable = yes
show add printer wizard = no
printing = none
printcap name = /dev/null
disable spoolss = yes
I'm totally out of ideas here, anyone have a tip on what I could try next?
Last edited by FooSoft (2009-04-18 19:52:28)

glad you posted it first i had the same problem.
However, samba was complaining that
printing = none
was invalid. I removed that line and it works great.
thanks
Last edited by lio (2009-10-16 00:20:14)

Similar Messages

  • Can't log in to Lion Server. Open Directory Log Message says: unable to connect to password server

    I am setting up Lion Server. I can't log in to Lion Server from client.
    Checking the Open Directory Log: says: "unable to connect to password server" or
    "3394.14268, Node: /LDAPv3/127.0.0.1, Module: AppleODClient - unable to read Password Server response - connection to Password Server was closed, socket fd 18 (5205)"
    Thanks for help with this.

    I never discovered the problem, and instead rebuilt the server from the ground up.  I followed instructions at this discussion thread.  Very helpful.
    How To Install A (Almost) Working Lion Server With Profile Management/SSL/OD/Mail/iCal/Address Book/VNC/Web/etc.
    I have had some log-in problems with users.  I have found that restarting the server helps. If this doesn't work, I rebuild permissions on the server, followed by opening up Workgroup Manager, go to the user's password, click on options and require that the user change password on the next log-in. For some reason, this will usually fix the problem.  I then log in as the user, and "change" the password to the original one. Also note, that if you import a user, the password is not brought in.  You must enter it for each user that you imported.  Even so, I have often had to resort to the re-set password procedure to enable a log-in.

  • [Forum FAQ] "Unable to connect to the server by using Windows PowerShell Remoting" error while installing RDS roles on Server 2012 R2

    When you try to install RDS role on server 2012 R2 using standard deployment, this issue may occur (Figure 1).
    “Unable to connect to the server by using Windows PowerShell remoting”.
    Figure 1: Unable to connect to the server by using Windows PowerShell remoting
    First of all, we need to verify the configurations as it suggested:
    1. The server must be available by using Windows PowerShell remotely.
    2. The server must be joined to a domain.
    3. The server must be running at least Windows Server 2012 R2.
    4. The currently logged on user must be a member of the local Administrators group on the server.
    5. Remote Desktop Services connections must be enabled by using Group Policy.
    In addition, we need to check if the “Windows Remote Management “service is running and related firewall exceptions have been created for WinRM listener.
    To enabling PowerShell remoting, we can run this PowerShell command as administrator (Figure 2).
    Enable-PSRemoting -Force
    Figure 2: Enable PowerShell Remoting
    However, if issue persists, we need to check whether it has enough memory to work.
    By default, remote shell allots only 150 MB of memory. If we have IIS or SharePoint App pool, 150 MB of memory is not sufficient to perform the remoting task. Therefore, we need to increase
    the memory via the PowerShell command below:
    Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 1000
    Then, you need to restart the server and the issue should be resolved.
    You can get more information regarding Remote Troubleshooting by below link:
    about_Remote_Troubleshooting
    If you need further assistance, welcome to post your questions in the
    RDS forum.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    i found another possible reason, this solution worked for me:
    http://oyvindnilsen.com/solution-for-powershell-remoting-error-it-cannot-determine-the-content-type-of-the-http-response-from-the-destination-computer/
    I tried to set up powershell remoting on a server and kept getting this error:
    Enter-PSSession : Connecting to remote server failed with the following error message : The WinRM client cann
    ot process the request. It cannot determine the content type of the HTTP response from the destination comput
    er. The content type is absent or invalid. For more information, see the about_Remote_Troubleshooting Help to
    pic.
    After a bit of troubleshooting I discovered that the problem was that the authentication packets was to big (over 16k), this will cause WinRM to reject the request. The reason for authentication packets getting too big can be because the user is member of very
    many security groups or in my case because of the SidHistory attribute.
    The solution was to increase the MaxFieldLength and MaxRequestBytes keys in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters
    If the keys does not exists you can create them, be sure to use the DWORD type.
    I sat MaxFieldLength to DEC value 40000 and MaxRequestBytes to DEC value 32768 and rebooted the server. Problem solved.

  • I am unable to connect to Essbase Server 11.1.1.3

    Hi
    Can anyone help me to solve this Essbase server Error. I am unable to connect to Essbase Server 11.1.1.3
    2010-05-10 11:35:49,359 INFO [main] CSS is initialized as client. The default logger properties will be loaded com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2010-05-10 11:35:49,515 INFO [main] CSS Log file will be generated at C:\Hyperion\logs\essbase\SharedServices_Security_Client.log com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2010-05-10 11:35:49,515 INFO [main] Configure CSS with registry com.hyperion.css.CSSSystem.initCSSSystem(Unknown Source)
    2010-05-10 11:35:49,515 INFO [main] Initializing CSS from Registry. com.hyperion.css.common.configuration.CSSConfigurationManager.getConfiguration(Unknown Source)
    2010-05-10 11:35:49,734 INFO [main] Trying to get Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2010-05-10 11:36:01,609 INFO [main] Got Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2010-05-10 11:36:04,625 INFO [main] Got hub location from Registry:http://D26085.arrownao.corp.arrow.com:28080 com.hyperion.css.registry.RegistryManager.getHubLocationFromRegistry(Unknown Source)
    2010-05-10 11:36:05,312 INFO [main] Got native directory location from Registry:D26085.arrownao.corp.arrow.com:28089 com.hyperion.css.registry.RegistryManager.getNativeProviderLocationFromRegistry(Unknown Source)
    2010-05-10 11:36:05,312 INFO [main] URL constructed out of values in Registry database:ldap://D26085.arrownao.corp.arrow.com:28089/dc=css,dc=hyperion,dc=com com.hyperion.css.common.configuration.CSSConfigurationImplXML.initConfiguration(Unknown Source)
    2010-05-10 11:36:08,734 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:09,718 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:09,718 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:09,718 WARN [main] Native Directory is not reachable. Attempting to re-connect... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:09,718 WARN [main] Number Format Exception converting nullto int; Returning default value 10[Root Cause: null ] com.hyperion.css.common.CSSUtils.toInt(Unknown Source)
    2010-05-10 11:36:09,718 WARN [main] Number Format Exception converting nullto int; Returning default value 3[Root Cause: null ] com.hyperion.css.common.CSSUtils.toInt(Unknown Source)
    2010-05-10 11:36:11,750 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:12,750 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:12,781 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:12,781 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:15,781 WARN [main] Attempting to connect to Native Directory: Retry Count: 1 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:17,781 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:18,890 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:18,890 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:18,890 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:21,890 WARN [main] Attempting to connect to Native Directory: Retry Count: 2 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:23,812 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:24,921 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:24,921 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:24,921 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:28,046 WARN [main] Attempting to connect to Native Directory: Retry Count: 3 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:30,046 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:31,062 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:31,062 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:31,062 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:34,062 WARN [main] Attempting to connect to Native Directory: Retry Count: 4 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:36,078 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:37,093 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:37,093 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:37,093 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:40,093 WARN [main] Attempting to connect to Native Directory: Retry Count: 5 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:41,921 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:42,921 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 11:36:42,921 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 11:36:42,921 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:45,921 WARN [main] Attempting to connect to Native Directory: Retry Count: 6 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 11:36:47,953 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:32:48,375 INFO [main] CSS is initialized as client. The default logger properties will be loaded com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2010-05-10 12:32:48,531 INFO [main] CSS Log file will be generated at C:\Hyperion\logs\essbase\SharedServices_Security_Client.log com.hyperion.css.CSSSystem.<init>(Unknown Source)
    2010-05-10 12:32:48,531 INFO [main] Configure CSS with registry com.hyperion.css.CSSSystem.initCSSSystem(Unknown Source)
    2010-05-10 12:32:48,531 INFO [main] Initializing CSS from Registry. com.hyperion.css.common.configuration.CSSConfigurationManager.getConfiguration(Unknown Source)
    2010-05-10 12:32:48,796 INFO [main] Trying to get Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2010-05-10 12:33:00,984 INFO [main] Got Registry Instance com.hyperion.css.registry.RegistryManager.<init>(Unknown Source)
    2010-05-10 12:33:03,453 INFO [main] Got hub location from Registry:http://D26085.arrownao.corp.arrow.com:28080 com.hyperion.css.registry.RegistryManager.getHubLocationFromRegistry(Unknown Source)
    2010-05-10 12:33:05,312 INFO [main] Got native directory location from Registry:D26085.arrownao.corp.arrow.com:28089 com.hyperion.css.registry.RegistryManager.getNativeProviderLocationFromRegistry(Unknown Source)
    2010-05-10 12:33:05,312 INFO [main] URL constructed out of values in Registry database:ldap://D26085.arrownao.corp.arrow.com:28089/dc=css,dc=hyperion,dc=com com.hyperion.css.common.configuration.CSSConfigurationImplXML.initConfiguration(Unknown Source)
    2010-05-10 12:33:09,265 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:10,234 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:10,234 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:10,234 WARN [main] Native Directory is not reachable. Attempting to re-connect... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:10,234 WARN [main] Number Format Exception converting nullto int; Returning default value 10[Root Cause: null ] com.hyperion.css.common.CSSUtils.toInt(Unknown Source)
    2010-05-10 12:33:10,234 WARN [main] Number Format Exception converting nullto int; Returning default value 3[Root Cause: null ] com.hyperion.css.common.CSSUtils.toInt(Unknown Source)
    2010-05-10 12:33:12,265 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:13,250 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:13,250 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:13,250 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:16,359 WARN [main] Attempting to connect to Native Directory: Retry Count: 1 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:18,375 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:19,390 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:19,390 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:19,390 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:22,390 WARN [main] Attempting to connect to Native Directory: Retry Count: 2 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:24,437 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:25,421 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:25,421 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:25,421 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:28,421 WARN [main] Attempting to connect to Native Directory: Retry Count: 3 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:30,453 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:31,453 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:31,453 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:31,453 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:34,453 WARN [main] Attempting to connect to Native Directory: Retry Count: 4 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:36,390 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:37,390 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:37,390 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:37,390 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:40,390 WARN [main] Attempting to connect to Native Directory: Retry Count: 5 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:42,328 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:43,328 ERROR [main] 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089.[Root Cause: Connection refused: connect ] com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    2010-05-10 12:33:43,328 WARN [main] Failed to instantiate provider for factory: com.hyperion.css.spi.impl.nv.NativeFactory.[Root Cause: 27:1112:Failed to connect to D26085.arrownao.corp.arrow.com at 28089. ] com.hyperion.css.spi.CSSManager.getProvider(Unknown Source)
    2010-05-10 12:33:43,328 WARN [main] Native Directory is not reachable. Will try to re-connect after 3 seconds... com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)
    2010-05-10 12:33:46,328 WARN [main] Attempting to connect to Native Directory: Retry Count: 6 com.hyperion.css.spi.CSSManager.getProviderInstance(Unknown Source)

    Hi
    I am to login to Hyperion Shared Services console. Share service for Essbase is running properly. When I attempt login into Essbase Studio Login, following error message appears
    Network communication with the server failed
    Connection refused: connect
    =========================================================================
    Also,the below Error messages are found in Oracle EPM System Diagnostic Reports
    Validation tool info: 11.1.1.3.0 drop 9-0 build 3129 on 07/16/2009 01:24 PM
    OS name: Windows XP
    OS version: 5.1
    Essbase Server startup check using Maxl command
    Error: Result: Unable to connect Essbase Server using MAXL command. Please check that essbase server is running.
    Recommended Action: Check Essbase Server is started.
    EssabaseServerChecker
    Error: Cannot connect to olap service. Cannot connect to Essbase Server. Error:Essbase Error(1051293): Login fails due to invalid login credentials
    Recommended Action: Check application is started.
    SVR: Essbase Java API
    Launch external checker with next command: C:\Hyperion\common\validation\9.5.0.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect admin ****** d26085.arrownao.corp.arrow.com http://d26085.arrownao.corp.arrow.com:13080/aps/JAPI
    Error: Result: -1; Error message: Cannot connect to olap service. Cannot connect to Essbase Server at d26085.arrownao.corp.arrow.com. Timed out waiting to connect to the Essbase Agent/Server using TCP/IP. Check your network connections.
    Recommended Action: Make sure external checker is working.
    ESS: Essbase Studio Server
    Connecting to Essbase Studio Server...
    Error: Network communication with the server failed
    Recommended Action: Check application is started.
    SVR: Essbase Java API
    Launch external checker with next command: C:\Hyperion\common\validation\9.5.0.0\launchEssbaseJavaAPI.bat EssbaseJAPIConnect admin ****** d26085.arrownao.corp.arrow.com http://d26085.arrownao.corp.arrow.com:13080/aps/JAPI
    Error: Result: -1; Error message: Cannot connect to olap service. Cannot connect to Essbase Server at d26085.arrownao.corp.arrow.com. Timed out waiting to connect to the Essbase Agent/Server using TCP/IP. Check your network connections.
    Recommended Action: Make sure external checker is working.
    Please advice how to slove this Essbase issue.

  • Error calling report FRM-41213 unable to connect to Report Server

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • Unable to connect to SQL Server 2008 from OBIEE 11G(on 64 bit Linux box)

    We are unable to connect to connect to SQL Server 2008 from OBIEE 11G which is on 64 bit Red Hat Enterprise Linux.
    Infrastructure: OBIEE 11.1.1.5 64bit, on 64 bit Red Hat Linux Enterprise Linux 5.6 , MS SQL Server 2008 on 64 bit Microsoft Windows Server
    Issue Description: Unable to connect to SQL Server 2008 from OBIEE11G RPD
    Details: We are unable to connect to SQL Server 2008 from OBIEE which is on a 64 bit Linux box. We created the ODBC connection on Linux box to the SQL server. Whenever we try to import metadata it throws an error that says ‘Connection Failed’.
    Here are the steps we followed to setup the ODBC connection on Linux box.
    1) We updated the user.sh file with the LD_LIBRARY_PATH and LD_LIBRARY_PATH_64 values that point to $ORACLE_HOME/bifoundation/odbc/lib
    This is where we found the driver for SQL server SEmsss23.so.
    2) We updated the odbc.ini file with the entry for SQL server with the connection details
    SI_SQL_Server_DEV = SQL Server
    [SI_SQL_Server_DEV]
    Driver=/u001_OAS/Oracle/Middleware/Oracle_BI1/bifoundation/odbc/lib/SEmsss23.so
    Description=DataDirect 5.1 SQL Server Wire Protocol
    Address=10.230.216.52,54970
    AlternateServers=
    AnsiNPW=Yes
    ConnectionRetryCount=0
    ConnectionRetryDelay=3
    Database=SVBDW_NEW
    LoadBalancing=0
    LogonID=SIDatavalidation
    Password=~~~Password123
    QuoteID=No
    ReportCodePageConversionErrors=0
    3) We updated the IDENTIFIER_QUOTE_CHAR with single quotes instead of double quotes in the DB features of the RPD
    4) We updated the bash_profile file to point the ODBCINI variable to the path where the OBIEE odbc.ini file is present.
    Export ODBCINI=/u001_OAS/Oracle/Middleware/instances/instance1/bifoundation/OracleBIApplication/coreapplication/setup/odbc.ini
    The error in nqsserver.log file says “[nQSError: 16001] ODBC error state: IM002 code: 0 message: [DataDirect][ODBC lib] Data source name not found and no default driver specified.”

    Hi,
    Make sure SQL Configuration Manager make sure the TCP/IP enabled. please try below method
    Method 1
    Re Create a new ODBC & Oracle Bi Server DSN Configuration test it and use it in the connection pools.
    define your ODBC data source in your server where the BI Server is installed. Check your DB connections in your physical layer and make they are defined on your BI Server as well.
    Method 2:
    try using the complete TNS in below format in the datasource name section:
    (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST =DB IP)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = ORCL) ) and provide the credentials.
    Method 3:
    To use the OCI call interface you need to have oracle client DB to be installed so that you can establish a connection using that DB credentials and connect to the remote dB and then import the tables.....this is the rule of thumb.
    hope helps you.
    Thanks
    Deva

  • HP OfficeJet Pro 8500A Plus "unable to connect to the server"

    I have had this printer for a couple years and now it is saying it is unable to connect to the server.  The light under the wifi symbol is not lit up and nothing happens when I press that button.  
    I have restarted the printer, reinstalled the driver, restarted the router ... to no avail.
    The router is working properly as my 2 computers are both working.

    Hi bhappie,
    Welcome to the HP Support forums.  I gather that you are unable to connect your Officejet 8500A plus printer to your wireless network.
    This printer can be connected by an ethernet cable or connected to your wireless network but cannot support both simultaneously as referenced in the document The Printer Does Not Support Ethernet (Wired) and Wireless Network Connections at the Same Time.  To setup the wireless feature you will need to unplug the ethernet cable.  
    Your wireless printer can be easily connected to your wireless network from the front panel of your printer.  If you are unsure how to do this the instructions can be found in your User Guide on page 219 in the section titled “To set up a wireless communication using the Wireless Setup Wizard”.  
    Now that the printer has a wireless connection, any computer that uses the printer, will need to have the connection method updated.  The instructions on how to do this can also be found in your User Guide on page 221 in the section titled “Change the connection method”.  There is a sub-section dedicated to Windows operating systems and one dedicated to Mac operating systems.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • I have a ipad mini and it says that it has perect wifi yet when i go into safari it says unable to connect with the server how can i fix this?

    I have a ipad mini and i have had it for less then a year, it says that i have perfect wifi up in the left corner where the wifi is always at  but when ever i go into the built in safari it says that it is unable to connect with the server. How can i fix this because with out it connecting to the server or internet it is kind of useless to me. I do have ios7 if that helps

    The wifi symbol only indicates the presence/signal strength of wifi. Not that you are connected.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • OD users unable to connect to a server via afp

    We have a Mac OS 10.9.2 with Server 3.1.2.  We are able to access the server for file sharing via smb with OD accounts just fine.  But we are unable to connect to the server using afp with any OD account, only local system accounts.  I have tried turning off SMB for all of the file shares, but this did not help resolve the issue.
    The log shows a login attempt immediately followed by a logout.
    Aug  7 13:40:33 server.company.com AppleFileServer[736] <Info>: IP 192.168.101.2 - - "Login -----" -5023 0 0
    Aug  7 13:40:33 server.company.com AppleFileServer[736] <Info>: IP 192.168.101.2 - - "Logout -----" -5023 0 0
    I did edit out the user and the server name.
    Any help would be greatly appreciated.
    Thank you.

    Many Open Directory problems can be resolved by taking the following steps. Test after each one, and back up all data before making any changes.
    1. The OD master must have a static IP address on the local network, not a dynamic address.
    2. You must have a working DNS service, and the server's hostname must match its fully-qualified domain name. To confirm, select the server by name in the sidebar of the Server application window, then select the Overview tab. Click the Edit button on the Host Name line. On the Accessing your Server sheet, Domain Name should be selected. Change the Host Name, if necessary. The server must have at least a three-level name (e.g. "server.yourdomain.com"), and the name must not be in the ".local" top-level domain, which is reserved for Bonjour.
    3. The primary DNS server used by the server must be 127.0.0.1 (that is, itself) unless you're using another server for internal DNS. The only DNS server set on the clients should be the internal one, which they should get from DHCP if applicable.
    4. Follow these instructions to rebuild the Kerberos configuration on the master.
    5. If you use authenticated binding, check the validity of the master's certificate. The common name must match the hostname and domain name. Deselecting and then reselecting the certificate in Server.app has been reported to have an effect in some cases.
    6. Unbind and then rebind the clients in the Users & Groups preference pane. Use the fully-qualified domain name of the master.
    7. Reboot the master and the clients.
    8. Don't log in to the server with a network user's account.
    9. As a last resort, export all OD users. In the Open Directory pane of Server, delete the OD server. Then recreate it and import the users. Ensure that the UID's are in the 1001+ range.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • HT4623 After updating ios I'm unable to connect with safari, server unavailable; what should I do next

    After updating ios I'm unable to connect with safari, server unavailable what do I do now?

    I have solved my issue as well. For those who has not Find My Friends app in their devices should try this:
    - Open Safari from iPhone and go to icloud.com
    - Click (touch) Instal My Friends
    - And follow above given instruction for this problem

  • MDM 71 - mdm console and clix - unable to connect to database server

    Hi,
    environment, MDM 7.1, AIX 6, Oracle 10.2.0.4 (installed as part of a standalone java AS)
    i've an issue. I have installed MDM 71 via sapinst, before that I installed a standalone java application server. During the installation, i gave the 'oracle client', 'oracle home' and 'oracle sqlplus utility' to be those of the oracle database installed for the java AS.
    After sapinst completed I tested my connection to the database via
    tnsping <SID> = OK
    sqlplus system/passwd@<SID> = OK
    When i start up the mdm console (7.1.02.90) i can mount the MDM server, BUT when I try to configure the database settings i get
    error  'unable to connect to database server'
    I get the same error when i use clix dblist
    Error: 0x84020004, Unable to connect with Database Server
    Has anybody got any ideas.

    To see why the MDM is not able to connect to database, do the following:
    % cd /usr/sap/<SID>/MDSxx/log
    % ls -ltr
    You will find last updated log file with name like MDS_LogXXUX101224X164953.csv
    % tail -100 MDS_LogXXUX101224X164953.csv
    You will see the reason for not being able to connect. If the reason is:
    ",MDSAdminServerXGetAvailableReps,Oracle_DBConnection.cpp,205,,,,server_user,server_global,,,
    2011-09-23T06:10:48.933,6       ,24,"Service 'SID', Schema 'system', ERROR CODE=12154 ||| ORA-12154: TNS:could not resolve the connect identifier specified
    OCI Attach, try again ...
    Then edit the /oracle/SID/112_64/network/admin/tnsnames.ora with entry like following:
    SID.WORLD =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS =
            (COMMUNITY = SAP.WORLD)
            (PROTOCOL = TCP)
            (HOST = hostname)
            (PORT = PORT_NO)
        (CONNECT_DATA =
          (SID = SID)
          (GLOBAL_NAME = SID.WORLD)
    then issue:
    tnsping SID
    If result is like
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = hostname) (PORT = PORT_NO))) (CONNECT_DATA = (SID = SID) (GLOBAL_NAME = SID.WORLD)))
    OK (0 msec)

  • Unable to connect to administration server from essbase console,

    Hi All..
    After successfully completely installation and configuration of essbase 11.1.2.3 iam unable to connect to administration server from essbase console,
    and also while connecting to oracle database it says "oracle not found".
    essbase 11.1.2.3 is installed in windows 2008 server R1.
    kindly help us.

    Hi John 
    and thanks again for the reply
    These log files has following  information
    and rest of files are empty in the specified path.
            HyS9RaFrameworkAgentOut :
    Java App Loader V1.3 (C)2006 by Hyperion Inc.
    $> java -cp . -Dloader.application=xxx.app com.brio.one.common.utils.Loader [arguments]
    > Reading application file 'C:\Oracle\Middleware\EPMSystem11R1\common\raframeworkrt\11.1.2.0\bin\agent.app'...
    > Loading classes...
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/wksagent.jar ...OK
      file:C:/Oracle/Middleware/modules/javax.activation_1.1.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/foundation.jar ..........OK
      file:C:/Oracle/Middleware/oracle_common/lib/java/shared/jsch/0.1.37/jsch-0.1.37.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/iona63.jar ..................OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/comutil1_01.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/eiengine.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/misc/11.1.2.0/servlet-api.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/JakartaCommons/jakarta-commons.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/logJavaUtil.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/javax.zip ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/bqservice.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/bcel-5.1.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/scorecard-search-api.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/raframeworkrt/11.1.2.0/lib/waservices.jar ...OK
      file:C:/Oracle/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_j2se.jar ...OK
      file:C:/Oracle/Middleware/modules/com.bea.core.apache.velocity.dep_1.4.jar ...OK
      file:C:/Oracle/Middleware/modules/com.bea.core.apache.velocity_1.4.jar ...OK
      file:C:/Oracle/Middleware/modules/javax.mail_1.4.jar ...OK
    > Creating URLClassLoader...
    > Setting New Context ClassLoader...
    > Loading Main class 'com.oracle.cmc.Agent'...
    > Getting 'main' method...
    > Starting application...
           HyS9EssbaseStudio_epmsystem1-syserr:
    INFO    Server configuration file: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Server\server.properties.
    06:38:01 07/05/13 INFO    Logger configuration file: C:\Oracle\Middleware\user_projects\epmsystem1\BPMS\bin\logging.xml.
    06:38:01 07/05/13 INFO    Starting up.
    06:38:01 07/05/13 INFO    Oracle Essbase Studio Server. Version 11.1.2.3.000, Build 4386, March 26 2013. Copyright © 2008 - 2013, Oracle. All rights reserved
    06:38:14 07/05/13 (system) INFO    Root folder for flat datasource files has been created: `C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Server\.\datafiles`.
    06:38:14 07/05/13 (system) WARNING Failed to load driver for sap.
    06:38:14 07/05/13 (system) WARNING Failed to load driver for teradata.
    06:38:14 07/05/13 (system) WARNING Failed to load driver for netezza.
    06:38:17 07/05/13 (system) SEVERE  Unable to establish connection to MySQL server: Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server..
    06:38:19 07/05/13 (system) SEVERE  Unable to establish connection to MySQL server: Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server..
    06:38:19 07/05/13 (system) SEVERE  Catalog.CannotInitializeStorage=Cannot initialize catalog storage. Make sure the server.properties file contains the correct information.
       -------------- Exception --------------
       com.hyperion.cp.catalog.exceptions.CatalogInitializationException: Cannot initialize data storage engine.
      at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:91)
      at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:104)
      at com.hyperion.cp.catalog.Catalog.initialize(Catalog.java:198)
      at com.hyperion.cp.catalog.Catalog.<clinit>(Catalog.java:81)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:169)
      at com.hyperion.cp.catalog.CatalogInitializer.run(CatalogInitializer.java:71)
      at com.hyperion.cp.server.RequestListener$SystemTask.run(RequestListener.java:1507)
      at com.hyperion.cp.server.RequestListener.runSystemTask(RequestListener.java:233)
      at com.hyperion.cp.server.RequestListener.init(RequestListener.java:174)
      at com.hyperion.cp.server.ServerMain.initServer(ServerMain.java:214)
      at com.hyperion.cp.server.ServerMain.main(ServerMain.java:296)
    Caused by: com.hyperion.cp.driver.util.DriverConnectionException: Cannot establish connection to MySQL server.
      at com.hyperion.cp.driver.adapters.sql.mysql.MySQLConnection.createSQLConnection(MySQLConnection.java:130)
      at com.hyperion.cp.driver.adapters.sql.SQLConnection$ConnectionPool.<init>(SQLConnection.java:1229)
      at com.hyperion.cp.driver.adapters.sql.SQLConnection.construct(SQLConnection.java:450)
      at com.hyperion.cp.driver.ConnectionManager.getConnection(ConnectionManager.java:113)
      at com.hyperion.cp.driver.DriverEngine.getConnection(DriverEngine.java:60)
      at com.hyperion.cp.server.QueueableTask.setMetadataConnection(QueueableTask.java:53)
      at com.hyperion.cp.catalog.storage.StorageFactory.initialize(StorageFactory.java:73)
      ... 11 more
    Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
    The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
      at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
      at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
      at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:1116)
      at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:344)
      at com.mysql.jdbc.ConnectionImpl.coreConnect(ConnectionImpl.java:2333)
      at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2370)
      at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2154)
      at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:792)
      at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
      at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
      at com.mysql.jdbc.Util.handleNewInstance(Util.java:411)
      at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:381)
      at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:305)
      at java.sql.DriverManager.getConnection(DriverManager.java:582)
      at java.sql.DriverManager.getConnection(DriverManager.java:207)
      at com.hyperion.cp.driver.adapters.sql.mysql.MySQLConnection.createSQLConnection(MySQLConnection.java:123)
      ... 17 more
    Caused by: java.net.ConnectException: Connection refused: connect
      at java.net.PlainSocketImpl.socketConnect(Native Method)
      at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
      at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
      at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
      at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
      at java.net.Socket.connect(Socket.java:529)
      at java.net.Socket.connect(Socket.java:478)
      at java.net.Socket.<init>(Socket.java:375)
      at java.net.Socket.<init>(Socket.java:218)
      at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:257)
      at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:294)
      ... 32 more

  • While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14

    Hi
    While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14
    Our OS is windows 2008 R2 64 bit,Orcale client is 11g 32 bit and Oracle DB is in 11g.We are also able to connect to DB using ODBCSQL.
    Please help.
    Regards
    Shuvendu

    Hello Shuvendu,
    Thanks for using Oracle Communities.
    About your error, there could be many reasons, To start with, please have following knowledge article to know possible reasons.
    C028: "Unable to Connect to the Siebel Gateway Name Server" Logged By Configuration Wizard (Doc ID 1391312.1)
    I hope it helps.
    Best Regards,
    Chetan
    P.S. If any one of the provided responses has been correct or helpful it would be great if you could mark them as appropriate.

  • UCCX 7 SR5 agent login gives timeout - unable to connect to UCCX server

    Team - running high availability. The CAD login for UCCX 7 SR5 gives occasionally timeout errors.
    Unable to connect to UCCX server. What is the root cause of this?
    on CAD client PC based on Cisco recommendation
    C:\Program Files\Cisco\Desktop\config, we changed PhoneDev.cfg.
    added ->
    [ReqTimeout]
    Milliseconds=30000
    While this helped it still happens. Is this a bug you have seen?
    What could be done for the root cause.

    Hello,
    This happens because the CAD client software is timing out due to not receiving a response from the UCCX server in the configured and default
    10 seconds. Increasing the timeout alleviates the symptom, but the root cause could be slowness or connectivity problems between CUCM and AD. The default timeout between them is 30 seconds. You can check if you have an DC/GC down or not responsive or point your CUCM to authenticate to a local DC/GC, but definitely need to check on the CUCM / AD side.
    CSCta49259    CAD client timeout value not present in PhoneDev.cfg
    Symptom:
    Per MIVR logs CAD side is timing out and changes to the server-side properties did not resolve the issue.
    Conditions:
    UCCX 7.0(1) CAD
    Workaround:
    on CAD client PC
    C:\Program Files\Cisco\Desktop\config, there should be a file
    called PhoneDev.cfg.
    add ->
    [ReqTimeout]
    Milliseconds=30000
    save then restart the CAD client .
    HTH
    Pablo

Maybe you are looking for

  • Apple TV, mirroring, wireless cam...

    I have a newer iMac and recently purchased AppleTV.  I would essentially like to video conference from my living room via mirroring AppleTV and my iMac (which is in an adjacent room) but cant really understand how I could use an external cam from the

  • ONLINE DATA REPLICATION ONE DATABASE TO ANOTHER IN ORACLE 9.2.0.1

    I have used Oracle 9.2.0.1 version. I have created two database(ORCL, ORCL2). in my PC. I have created INV user in both database. Currenly I have worked on INV user which is in ORCL database. Is there any technique in Oracle 9.2.0.1 online data repli

  • SQL Dev does not recognize NTILE

    I admire how SQL Dev autocompletes GROUP BY statements. However, in a statement like select eaddress, count(*) purchases, NTILE(10) OVER (ORDER BY count(*) asc) AS decile ... etc. it keeps adding the NTILE clause to the GROUP BY statement. NTILE shou

  • Error in printing a Production Ordre

    Hi all, I need to print a production order more than only one time, but the system block me advising with the following error: ""Réimprimer ordre" non autorisé (ORD 1000094 ) N° message BS002 Diagnostic L'opération « Réimprimer ordre » n'est pas auto

  • Quicktime  has all black images in .mov file

    I have a new amd athlon 64 x2 4600 2 g ram vista home premium, and the quick time application will not view my .mov files properly, has all kinds of black images in it. have to use another video viewer. What is the correction? thanks