SOLVED: "AuthenticationSupport service missing. Cannot authenticate request."

A customer was installing CQ5 on a Red Hat Linux environment, and getting the following error displaying in the browser.
AuthenticationSupport service missing. Cannot authenticate request.
We checked the Felix Console, and all bundles were installed correctly.
We did however find the following message in the error log:
20.06.2012 10:49:26.689 *ERROR* [FelixStartLevel] org.apache.jackrabbit.core.RepositoryImpl failed to start Repository: Unable to register data store in cluster. javax.jcr.RepositoryException: Unable to register data store in cluster.
Caused by: java.net.UnknownHostException: {server name}: {server name}
This was not a clustered instance.
On closer inspection, the error was caused by an incorrect IP address entry for {server name} in the hostnames file
Tim Goodman

Hello Mkiti,
    I take a look there and my host file only contains comments :s
    Heres the content:
# Copyright (c) 1993-2009 Microsoft Corp.
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
# For example:
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host
# localhost name resolution is handled within DNS itself.
#    127.0.0.1       localhost
#    ::1             localhost
    The error only happen after I install the CQ5 update fix, from package share. I just renamed the crx-quickstart folder, the CQ create a new one and works, but my projects still in the old quickstart :s Is there a way to physically copy these projects, maybe?

Similar Messages

  • SQL Server cannot authenticate using Kerberos because the Service Principal Name (SPN) is missing, misplaced, or duplicated

    We are getting this below alert message, while using SCOM 2012 R2.  Anybody have any idea how to resolve this on the SQL box ?
    Thx...
    SQL Server cannot authenticate using Kerberos because the Service Principal Name (SPN) is missing, misplaced, or duplicated.
    Service Account: NT Service\MSSQL$SQLEXPRESS
    Missing SPNs:
    Misplaced SPNs: MSSQLSvc/mysqlbox.com:SQLEXPRESS - sqldbadmin
    Duplicate SPNs:

    To Fix this issue, You can check below links
    http://support.microsoft.com/kb/2443457/EN-US
    http://www.scomgod.com/?p=155
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"Mai Ali | My blog:
    Technical | Twitter:
    Mai Ali

  • Javax.security.auth.login.LoginException: Cannot authenticate X509(Urgent!)

    I'm trying to sign my messages between client & webservice using X509 certificates. I've created a keystore and imported:
    privatekey1, certificate1(public key) and trustedCertAuthority that published certificates.
    I've configured webservice & client to use that keystore and privatekey1 to sign request/response, but web service keeps throwing following exception:
    javax.security.auth.login.LoginException: Cannot authenticate X509 certificate, User EMAILADDRESS=[email protected], CN=testUser, ... does not exist in our system
    How can I configure web service to find that certificate?
    Thnx for help.

    Yes, I did. I found the problem..
    I had also checked to Authenticate with X509 certificate... and obviously I should somehow set the Securtiy provider, although, I don't know how (but it's not so important right now).
    But I do have another question - how can I use private key & public key in certificate X509 to encrypt messages. In the sample you mentioned, it's written that there shoud be separate key for signature & encryption, but I have separate keystores for client (with client private key & server public certificate) and for server (with server private key & client certificate). But I can't get it to work... It seems to me that in that case signature key alias at service should be the same as key needed to decrypt the message?
    Am i missing something again?
    Thanks.

  • Cannot authenticate phone

    Suddenly my N95 stopped connecting with PS Suite via bluetooth. When trying to restart it I got the message that my phone could not be authenticated!!!???
    Bluetooth is working fine with other devices, PC suite is working fine through USB and trying to remove PC suite and installig the latest version currently available does not solve the problem. Please advise!!!
    Regards,
    Johan

    I have the same problem. My E51 connects with Bluetooth just fine to other devices like headset but when I try to connect to PC suite, it says 'cannot authenticate the phone'. I can connect the phone to my PC with my IBM supplied 'bluetooth places' but it connects for just a few seconds and then the phone disconnects it. The PC reports that the phone has connected and then disconnected and I can also see if from the phone (the little connection icon) that it is disconnecting so fast. Cable and IR work fine. Only the problem with BT. This has happened with the PC Suite that was delivered with the phone and also with the latest version. here's my setup info:
    PC Connectivity Solution:
    Version 8.15.0.0
    Nokia Connectivity Cable Driver:
    Version 6.86.11.0
    Operating system:
    Microsoft Windows XP 32-bit Edition, Service Pack 2
    Language: English
    Language for non-Unicode programs: English
    Detected Internet browsers:
    - Microsoft Internet Explorer 7.0
    - Mozilla Firefox 2.0 (Default browser)
    Detected Bluetooth stacks:
    - Microsoft (Version: 5.1.2600, Build: 2180)
    - Broadcomm (Version: 3.0.1, Build: 912)
    When I try to connect with PC suite it say I have WIDICOM Buletooth stack which will try to connect but the Microsoft stack will not work because it says I am missing drivers (I have yet to find out where I get them).
    Anyone know how to fix this?
    Rgds,
    RDWirr

  • [SOLVED] sshd.service won't wait for interface/netcfg at boot

    Problem summary:
    I have a home server that is configured with a static ip configured using netcfg and ifplugd. In the 'unit' section of sshd.service file I have 'After=sys-subsystem-net-devices-eno1.device' meant to let the service wait before the device is up. Ever since upgrading to systemd however at boot  the sshd.service enters failed state. Only after manually issuing 'systemctl start sshd.service' the service will run and I can connect to it from another machine. I  tried adding 'net-auto-wired.service' to the 'After' line but the result is the same.
    /etc/conf.d/netcfg:
    NETWORKS=(myethernet)
    WIRED_INTERFACE="eno1"
    /etc/network.d/myethernet:
    CONNECTION="ethernet"
    DESCRIPTION="A basic static ethernet connection using iproute"
    INTERFACE="eno1"
    IP="static"
    ADDR="192.168.1.5"
    GATEWAY="192.168.1.254"
    DNS=("83.98.255.11")
    /etc/systemd/system/sshd.service:
    [Unit]
    Description=OpenSSH Daemon
    Wants=sshdgenkeys.service
    #After=net-auto-wired.service sys-subsystem-net-devices-eno1.device
    After=sys-subsystem-net-devices-eno1.device
    [Service]
    ExecStart=/usr/sbin/sshd -D
    ExecReload=/bin/kill -HUP $MAINPID
    KillMode=process
    Restart=always
    [Install]
    WantedBy=multi-user.target
    output of 'systemctl status sshd.service'  after boot:
    sshd.service - OpenSSH Daemon
    Loaded: loaded (/etc/systemd/system/sshd.service; enabled)
    Active: failed (Result: start-limit) since Sat 2013-03-09 22:09:38 CET; 3min 28s ago
    Process: 405 ExecStart=/usr/sbin/sshd -D (code=exited, status=255)
    Mar 09 22:09:38 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:38 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:38 arch-server systemd[1]: Stopping OpenSSH Daemon...
    Mar 09 22:09:38 arch-server systemd[1]: Starting OpenSSH Daemon...
    Mar 09 22:09:38 arch-server systemd[1]: sshd.service start request repeated too quickly, refusing to start.
    Mar 09 22:09:38 arch-server systemd[1]: Failed to start OpenSSH Daemon.
    Mar 09 22:09:38 arch-server systemd[1]: Unit sshd.service entered failed state
    output of 'journalctl -b | grep sshd'
    Mar 09 22:09:36 arch-server sshd[342]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:36 arch-server sshd[342]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:36 arch-server sshd[342]: fatal: Cannot bind any address.
    Mar 09 22:09:36 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:36 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:36 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:36 arch-server sshd[384]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:36 arch-server sshd[384]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:36 arch-server sshd[384]: fatal: Cannot bind any address.
    Mar 09 22:09:36 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:36 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:36 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:36 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:36 arch-server sshd[390]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:36 arch-server sshd[390]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:36 arch-server sshd[390]: fatal: Cannot bind any address.
    Mar 09 22:09:37 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:37 arch-server sshd[393]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:37 arch-server sshd[393]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:37 arch-server sshd[393]: fatal: Cannot bind any address.
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:37 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:37 arch-server sshd[395]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:37 arch-server sshd[395]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:37 arch-server sshd[395]: fatal: Cannot bind any address.
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:37 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:37 arch-server sshd[405]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:09:37 arch-server sshd[405]: error: Bind to port 22 on 192.168.1.5 failed: Cannot assign requested address.
    Mar 09 22:09:37 arch-server sshd[405]: fatal: Cannot bind any address.
    Mar 09 22:09:37 arch-server systemd[1]: sshd.service: main process exited, code=exited, status=255/n/a
    Mar 09 22:09:38 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:09:38 arch-server systemd[1]: sshd.service holdoff time over, scheduling restart.
    Mar 09 22:09:38 arch-server systemd[1]: sshd.service start request repeated too quickly, refusing to start.
    Mar 09 22:09:38 arch-server systemd[1]: Unit sshd.service entered failed state
    Mar 09 22:13:19 arch-server sshd[597]: Set /proc/self/oom_score_adj from 0 to -1000
    Mar 09 22:13:19 arch-server sshd[597]: Server listening on 192.168.1.5 port 22.
    Mar 09 22:13:58 arch-server sshd[603]: Set /proc/self/oom_score_adj to 0
    output of 'ip link':
    eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
    inet 192.168.1.5 netmask 255.255.255.0 broadcast 192.168.1.255
    inet6 (...) prefixlen 64 scopeid 0x20<link>
    ether (...) txqueuelen 1000 (Ethernet)
    RX packets 2399 bytes 176947 (172.7 KiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 846 bytes 112345 (109.7 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
    device interrupt 45 base 0x4000
    lo: flags=73<UP,LOOPBACK,RUNNING> mtu 16436
    output of 'systemctl' after issuing 'systemctl start sshd.service' :
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1b.0/sound/card0
    sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-eno1.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/net/eno1
    sys-devices-pci0000:00-0000:00:1c.1-0000:02:00.0-net-wlp2s0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0/net/wlp2s0
    sys-devices-pci0000:00-0000:...d5:1.0-host6-target6:0:0-6:0:0:0-block-sdc-sdc1.device loaded active plugged U3_Cruzer_Micro
    sys-devices-pci0000:00-0000:...d5:1.0-host6-target6:0:0-6:0:0:0-block-sdc-sdc2.device loaded active plugged U3_Cruzer_Micro
    sys-devices-pci0000:00-0000:...-1\x2d5:1.0-host6-target6:0:0-6:0:0:0-block-sdc.device loaded active plugged U3_Cruzer_Micro
    sys-devices-pci0000:00-0000:00:1f.2-host2-target2:0:0-2:0:0:0-block-sda-sda1.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-pci0000:00-0000:00:1f.2-host2-target2:0:0-2:0:0:0-block-sda-sda2.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-pci0000:00-0000:00:1f.2-host2-target2:0:0-2:0:0:0-block-sda-sda3.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-pci0000:00-0000:00:1f.2-host2-target2:0:0-2:0:0:0-block-sda.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-pci0000:00-0000:00:1f.2-host4-target4:0:0-4:0:0:0-block-sdb-sdb1.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-pci0000:00-0000:00:1f.2-host4-target4:0:0-4:0:0:0-block-sdb.device loaded active plugged FUJITSU_MJA2320BH_G2
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-devices-pnp0-00:03-tty-ttyS0.device loaded active plugged /sys/devices/pnp0/00:03/tty/ttyS0
    sys-devices-pnp0-00:04-tty-ttyS1.device loaded active plugged /sys/devices/pnp0/00:04/tty/ttyS1
    sys-devices-virtual-block-dm\x2d0.device loaded active plugged /sys/devices/virtual/block/dm-0
    sys-devices-virtual-block-dm\x2d1.device loaded active plugged /sys/devices/virtual/block/dm-1
    sys-devices-virtual-block-dm\x2d2.device loaded active plugged /sys/devices/virtual/block/dm-2
    sys-subsystem-net-devices-eno1.device loaded active plugged /sys/subsystem/net/devices/eno1
    sys-subsystem-net-devices-wlp2s0.device loaded active plugged /sys/subsystem/net/devices/wlp2s0
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    home.mount loaded active mounted /home
    media-usbhd\x2dsdc1.mount loaded active mounted /media/usbhd-sdc1
    media-usbhd\x2dsdc2.mount loaded active mounted /media/usbhd-sdc2
    mnt-backup.mount loaded active mounted /mnt/backup
    mnt-data.mount loaded active mounted /mnt/data
    srv.mount loaded active mounted /srv
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted /tmp
    var.mount loaded active mounted /var
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    dbus.service loaded active running D-Bus System Message Bus
    dcron.service loaded active running Periodic Command Scheduler
    [email protected] loaded active running Getty on tty1
    httpd.service loaded active running Apache Web Server
    iptables.service loaded active exited Packet Filtering Framework
    mysqld.service loaded active running MySQL database server
    net-auto-wired.service loaded active running Provides automatic netcfg wired connection
    ntpd.service loaded active running Network Time Service
    rc-local.service loaded active exited /etc/rc.local Compatibility
    rtorrent.service loaded active running rTorrent Service
    sshd.service loaded active running OpenSSH Daemon
    sshguard.service loaded active running Block hacking attempts
    systemd-cryptsetup@luks_backup.service loaded active exited Cryptography Setup for luks_backup
    systemd-cryptsetup@luks_data.service loaded active exited Cryptography Setup for luks_data
    systemd-cryptsetup@luks_swap.service loaded active exited Cryptography Setup for luks_swap
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded active exited Load Kernel Modules
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    dbus.socket loaded active running D-Bus System Message Bus Socket
    dmeventd.socket loaded active listening Device-mapper event daemon FIFOs
    lvmetad.socket loaded active listening LVM2 metadata daemon socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    Last edited by rwd (2013-03-10 08:32:59)

    WonderWoofy wrote:Does enabling the socket work? Sshd with systemd has socket activation, which is awesome.
    Nice, this solves it indeed. thanks!
    For anyone with the same problem it was just a matter of:
    # systemctl disable sshd.service
    # systemctl enable sshd.socket
    see https://wiki.archlinux.org/index.php/Se … shd_daemon
    Last edited by rwd (2013-03-10 09:08:43)

  • Cannot authenticate the phone - bluetooth

    Please help!!!!!!!!!!!!!!!!
    I got the error message like "Cannot authenticate the phone" when connecting to my bluetooth device, an BlueSoleil
    What happened? Any tips to solv this problem?
    Im tired of this **bleep**tt,
    have done everything, even reinstall windows xp!
    my Phone an Nokia 6680
    Bluetooth software product version: Bluesoleil 2.1.3.0 VoIP realase 060429
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Language: English (United States)
    Language for non-Unicode programs: Swedish (Finland)
    Locale: Swedish
    Input language: Swedish
    Nokia PC Suite:
    Version 6.81.13.0
    Language: English
    Connectivity Cable Drivers:
    Version 6.81.1.2
    Microsoft Outlook:
    Version 11.0
    Build 5510
    Bluetooth stacks:
    Microsoft Bluetooth stack
    Version 5.1.2600.2180
    IVT Bluetooth stack
    Version InstallMessage Edited by webbis on 06-Sep-2006
    09:05 PM
    Message Edited by webbis on 06-Sep-2006
    09:06 PM

    I too had this problem. I could connect, but the final authentication failed. I was able to send files using the bluetooth manager (Toshiba).
    This was my solution:
    Go to the phone's bluetooth pairing (after you've tried to authenticate). See if your computer's name is there (mine was). Select it, then options and finally 'set as authorized'. And it should work.
    There's one strange thing: in the about section there's no mention of the Toshiba BT stack, while in 'Get connected' I get both Toshiba and Microsoft BT stack. I'm not sure which one is being used, but hey: it works!
    Some info:
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Language: English (United States)
    Language for non-Unicode programs: English (United States)
    Locale: Dutch (Netherlands)
    Input language: English (United States)
    Nokia PC Suite:
    Version 6.81.13.0
    Language: English
    Connectivity Cable Drivers:
    Version 6.81.1.2
    Microsoft Outlook:
    Version 11.0
    Build 8010
    Bluetooth stack:
    Microsoft Bluetooth stack
    Version 5.1.2600.2180Message Edited by doctorh on 23-Sep-2006
    10:26 AM
    Message Edited by doctorh on 23-Sep-2006
    10:26 AM

  • Certificate issues Active Directory Certificate Services could not process request 3699 due to an error: The revocation function was unable to check revocation because the revocation server was offline. 0x80092013

    Hi,
    We have some problems with our Root CA. I can se a lot of failed requests. with the event id 22: in the logs. The description is: Active Directory Certificate Services could not process request 3686 due to an error: The revocation function was unable to
    check revocation because the revocation server was offline. 0x80092013 (-2146885613).  The request was for CN=xxxxx.ourdomain.com.  Additional information: Error Verifying Request Signature or Signing Certificate
    A couple of months ago we decomissioned one of our old 2003 DCs and it looks like this server might have had something to do with the CA structure but I am not sure whether this was in use or not since I could find the role but I wasn't able to see any existing
    configuration.
    Let's say that this server was previously responsible for the certificates and was the server that should have revoked the old certs, what can I do know to try and correct the problem?
    Thank you for your help
    //Cris

    hello,
    let me recap first:
    you see these errors on a ROOT CA. so it seems like the ROOT CA is also operating as an ISSUING CA. Some clients try to issue a new certificate from the ROOT CA and this fails with your error mentioned.
    do you say that you had a PREVIOUS CA which you decomissioned, and you now have a brand NEW CA, that was built as a clean install? When you decommissioned the PREVIOUS CA, that was your design decision to don't bother with the current certificates that it
    issued and which are still valid, right?
    The error says, that the REQUEST signature cannot be validated. REQUESTs are signed either by itself (self-signed) or if they are renewal requests, they would be signed with the previous certificate which the client tries to renew. The self-signed REQUESTs
    do not contain CRL paths at all.
    So this implies to me as these requests that are failing are renewal requests. Renewal requests would contain CRL paths of the previous certificates that are nearing their expiration.
    As there are many such REQUEST and failures, it probably means that the clients use AUTOENROLLMENT, which tries to renew their current, but shortly expiring, certificates during (by default) their last 6 weeks of lifetime.
    As you decommissioned your PREVIOUS CA, it does not issue CRL anymore and the current certificates cannot be checked for validity.
    Thus, if the renewal tries to renew them by using the NEW CA, your NEW CA cannot validate CRL of the PREVIOUS CA and will not issue new certificates.
    But it would not issue new certificates anyway even if it was able to verify the PREVIOUS CA's CRL, as it seems your NEW CA is completely brand new, without being restored from the PREVIOUS CA's database. Right?
    So simply don't bother :-) As long as it was your design to decommission the PREVIOUS CA without bothering with its already issued certificates.
    The current certificates which autoenrollment tries to renew cannot be checked for validity. They will also slowly expire over the next 6 weeks or so. After that, autoenrollment will ask your NEW CA to issue a brand new certificate without trying to renew.
    Just a clean self-signed REQUEST.
    That will succeed.
    You can also verify this by trying to issue a certificate on an affected machine manually from Certificates MMC.
    ondrej.

  • DPM 2012 R2 Rollup 1 x64.. cant save scheduled report.. gives error: "Reporting services server cannot connect to the dpm database"

    The error also has "to repair the configuration, follow steps for repairing dpm from DPM setup help ID: 3001
    I tried the solution outlined here:
    http://social.technet.microsoft.com/Forums/en-US/8be919ee-f358-47a4-9cc3-d23eb05d3f18/system-center-2012-r2-dpm-smtp-issue-reporting-services-server-cannot-connect-to-the-dpm?forum=dataprotectionmanager
    and also the graphical depiction here: http://www.ms4u.info/2014/01/reporting-services-server-cannot.html
    I tried these steps, but everytime i try to change it, it tells me:
    "The permissions granted to user 'domain\userid' are insufficient for performing this action rsaccessdenied..
    Nothing seems to work.. 
    I thought if i went into sql management studio and made sure my userid had admin rights to the db it would work.. but i cant change it there (via integrated security).. i believe i need to login as SA, but i dont recall the password for SA, though it appears
    i can change the SA password from within sql management studio.. i'm unsure if doing so will break DPM though or is even needed to fix the reporting integration issue..
    Any thoughts on this?
    Thanks
    Tech, the Universe, Everything: http://tech-stew.com

    Using:
    data source="servername\MSDPM2012";persist security info=False;initial catalog=DPMDB 
    I used the domain sqlservice account and test connection was ok.
    However.. accessing reports still crashes in the MMC
    Tech, the Universe, Everything: http://tech-stew.com
    When i recreated the db.. i called it Reporting2 or similiar.. 
    Then the reports folder i created called "Reports Folder"
    Then datasource name "reports datasource"
    The issue here is that the DPM reports in the reporting web interface are gone, since this is a new DB.. how do i redeploy them
    Tech, the Universe, Everything: http://tech-stew.com
    i went back into the sql reporting services area.. hit change db.. chose the original .. then back to the url.. went to the OLD reporting services folder and datasource.. added the connect string and now reporting area works.. so does scheduling..
    Problem now solved
    Tech, the Universe, Everything: http://tech-stew.com
    Oops spoke too soon.. the first time i set it to do "status" as a schedule.. it seemed to work (clicked ok, no error).. went back and added an email notification..
    Now i'm getting.. "an error occurred causing the reporting job to fail" "system files may be corrupt".
    Seems to only occur if i try to add the email address portion
    Tech, the Universe, Everything: http://tech-stew.com
    rechecked the datasource.. i think there was an error in the connect string.. now everything seems to be working.. email notifications and all.
    Tech, the Universe, Everything: http://tech-stew.com

  • Error: Idoc name IDoc cannot find request IDoc in Integration Server

    Hi,
    I am getting an error while working on a scenario.
    scenario is Idoc to file. when the Idoc is posted, i am getting the error "ALEAUDIT IDoc cannot find request IDoc in Integration Server"  when i see the status in SXMB_MONI
    I have tested the message mapping and configuration induvidually. They are working fine.
    Kindly help me out in solving this issue.
    please reply

    Hi,
    The AleAduit sent in the case of Idoc to File if the file is posted successfuly is not actually a App Ack, and that is why we get the info Ack not possible.
    But, as the R3 might expect this Idoc, XI still sends it back to the Source R3 system.
    Regards,
    phani

  • Samba Users Cannot Authenticate?

    I just want to start this thread by saying samba makes me want to kill myself. I love it so much, that it makes me want to rip my heart out and feed it to stray dogs every time I need to write a new configuration. Because I truly hate configuring it. Ok, with that steam having been blown off, let's jump into the problem I've been chasing for hours.
    My users cannot login to samba shares. Simple as dirt. Every single time I access the shares as a user, I am prompted for my password, I enter my password, and the prompt immediately asks me again, as if I've entered the wrong password.
    Heading off the obvious: Yes, I've added samba users with pdbedit -a -u [username]. The unix permissions on the folder I am trying to access as a samba user are 755, and I am trying to access the folder as its owner. My server smb.conf is included below.
    [global]
    workgroup = WORKGROUP
    passdb backend = tdbsam
    netbios name = ArchServ
    name resolve order = bcast host lmhosts wins
    server string = ""
    printing = cups
    printcap name = cups
    printcap cache time = 750
    cups options = raw
    use client driver = yes
    map to guest = Bad User
    local master = yes
    preferred master = yes
    os level = 65
    usershare allow guests = Yes
    usershare max shares = 100
    usershare owner only = False
    security = share
    #username map = /etc/samba/smbusers
    [printers]
    comment = All Printers
    path = /var/spool/samba
    create mask = 0700
    guest ok = Yes
    printable = Yes
    print ok = Yes
    browseable = No
    [print$]
    comment = Printer Drivers
    path = /var/lib/samba/printers
    [Home - user1]
    comment = Deyla's Home folder
    path = /home/user1
    create mask = 0755
    guest ok = yes
    browsable = yes
    write list = user1
    public = yes
    [Home - user2]
    comment = James' Home folder
    path = /home/user2
    create mask = 0755
    guest ok = yes
    browsable = yes
    write list = user2
    public = yes
    [Transmission Home]
    comment = Torrent downloads
    path = /home/transmission
    create mask = 0775
    guest ok = yes
    browsable = yes
    write list = user1 user2
    public = yes
    They work flawlessly as guest shares, and I have no problem gaining access... but when I try to log into a share as a user, the user will absolutely not authenticate, and it is the most frustrating, puzzling enigma to me. I formerly had this very samba configuration on an Ubuntu file server, and had no problems with the share behaving exactly as I wanted it to. I cannot for the life of me figure out why my users cannot authenticate.
    Please help! Any and all tips are appreciated! Thank you in advance!

    Thanks to Swerdina over at the OpenSUSE forums, I was able to solve my samba issue (thread). In a nutshell, my problem was the last active line in my [global] stanza, which was set to "security = share". By setting this global setting to "security = user" it fixed my problem and now allows me to invoke my shares with user privileges if I so choose to. Hopefully this helps someone who may have had a similar problem.

  • Inbound Service Interface without Input Request Message

    Is it possible to create an Inbound Service Interface without Input Request Message?  We are trying to create a web service to get all records from a database table hence no input parameter is needed.  We have tried in both XI 7.0 and PI 7.1 but couldn't do it.  Is this scenario not supported by ESR or am I missing something?  Any hint will be appreciated.
    Regards,
    Jiannan

    In the scenario I described in my initial post the table structure is only needed in the response message to receive the data. 
    For a web service generated from a RFC function module using the service creation wizard (SE80) a table parameter is automatically included in the request message.  I can understand this as the wizard can not figure out if the table parameter is needed in the request message or not.
    I have tried to use the service creation wizard to generate a web service from the function module RFCPING that has no input or output parameters.  As shown in below WSDL segment the WSDL does allow not having any input or output parameters.
    - <wsdl:types>
    - <xsd:schema attributeFormDefault="qualified" targetNamespace="urn:sap-com:document:sap:soap:functions:mc-style">
    - <xsd:element name="Rfcping">
    - <xsd:complexType>
      <xsd:sequence />
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="RfcpingResponse">
    - <xsd:complexType>
      <xsd:sequence />
      </xsd:complexType>
      </xsd:element>
      </xsd:schema>
      </wsdl:types>
    - <wsdl:message name="Rfcping">
      <wsdl:part name="parameters" element="tns:Rfcping" />
      </wsdl:message>
    - <wsdl:message name="RfcpingResponse">
      <wsdl:part name="parameter" element="tns:RfcpingResponse" />
      </wsdl:message>
    Thanks,
    Jiannan

  • Error: Service process cannot be confirmed due to its status

    Hi Experts,
    we want to create a Service Notification (BUS2000117) as a follow-up document of a service order (BUS2000116). The problem is that we receive the following error:
    Service process cannot be confirmed due to its status
    *Diagnosis*
    You cannot enter a confirmation for the service process due to its status.
    *System Response*
    To enable you to enter a confirmation for a service process, it must be released and may not yet have the status Closed .
    *Procedure*
    Check the service process status and if necessary, change it.
    How can i shut off the control of the status as we need to create service confirmation of service orders which are still in process. Is there any customizing?
    Best Regards
    Oliver

    To solve the problem without using the note it is possible to change customizing.
    Customer Relationship Management -> Transactions -> Status Management -> Define Status Profile for User Status:
    In Transaction Control is has to be assigned the Business Transaction 'To be distributed' to the relevant status.
    Afterwards the service notification can be created without problems.

  • Exception in webservices - Endpoint cannot handle requests in state: CREATE

    Hi All
    urgent help needed in webservices.
    we have a webservice deployed. and i have made a web service client (a java application client), it is registered with the deployed web service, but when running this clinet, we are getting the following excption
    Please let me know if you have any idea? It is very urgent........ :(
    Following is the stack trace of the Exception:
    Exception = Endpoint cannot handle requests in state: CREATED
    javax.xml.ws.soap.SOAPFaultException: Endpoint cannot handle requests in state: CREATED
    at com.sun.xml.ws.encoding.soap.ClientEncoderDecoder.toMessageInfo(ClientEncoderDecoder.java:84)
    at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toMessageInfo(SOAPXMLDecoder.java:209)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:538)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:258)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:137)
    at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:84)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:172)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:106)
    at $Proxy15.tellFortune(Unknown Source) Attached is the source of client............
    * Main.java
    * Created on February 20, 2007, 11:53 AM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    package client_ws;
    * @author ic005332
    public class Main {
    /** Creates a new instance of Main */
    public Main() {
    * @param args the command line arguments
    public static void main(String[] args) {
    System.out.println("@@@@@@@@@@@@@@@@@@@@@");
    try { // Call Web Service Operation
    client_ws.FirstWebService service = new client_ws.FirstWebService();
    System.out.println("******************");
    client_ws.FirstWebServiceSEI port = service.getFirstWebServiceSEIPort();
    System.out.println("^^^^^^^^^^^^^^");
    // TODO process result here
    java.lang.String result = port.tellFortune();  //Exception is coming at this line
    System.out.println("###################@");
    System.out.println("Result = "+result);
    } catch (Exception ex) {
    System.out.println("Exception = "+ex.getMessage());
    ex.printStackTrace();
    }Thanks in advanvce
    Inder Jeet Singh

    Do you see any exception on the server side ? May be endpoint is throwing some exception. If you use JAX-WS 2.1 the error diagnostics are much better.

  • How to solve no service in the carrier

    Anyone know how to solve 'no service' in the carrier? I never do jailbreak and encounter this problems frequently. I requested to get replacement of iphone4 and stil having the same problem. I gotta reset all setting frequently as well. Is the sim card, hardware or software cause this problem?

    The "No Service" message appears in the upper left corner of the display
    Try toggling Airplane mode "on" and "off". Wait five seconds between the off and on modes.
    If that doesn't work, try another location.
    If another location works, but the original location still does not, contact your carrier to report the issue.
    If the message is present in all locations, have the iPhone serviced.
    Is a quote from: iPhone: Hardware troubleshooting

  • Cannot complete request because of a disk error

    HI all,
    I just upgrade to CS4 creative suite on my iMac and using for about 2 months. Everything is fine and great until recently.
    Suddenly, I will always get this message "Cannot complete request because of a disk error" when I try to open or save the file in Photoshop CS4. Then, the program will freeze. Sometime re launch it will solve the problem but mostly not. I will need to force quit or restart my computer to make it go away. Also, when I start up the program, it takes a little bit longer than before to read the preference file. It will stay saying "reading preferences" for like about half to one minute.
    First, I think there is a problem on my HD. I used disk utility to check it and the HD was fine. Also, the problem only happen in Photoshop but not others programs.
    I really want to find out what's the cause of it.
    Does anyone can help me figure out the problem? Thanks!
    Rachel

    you need to BACK up your data now
    then add "disk error" to your search (it has been covered before)
    you could have "bad blocks" on one of your disks that a scratch disk is hitting, or a file written over a bad area that can no longer be accessed
    Basically, I would get the BACKUP done, then "Carbon Copy Cloner" clone the hard driver over to a new drive if you are lucky, the clone will get you back to work
    If the problem is hitting on your Scratch Disk, you could try to "zerowrite" it to repair it
    "" are all search words...

Maybe you are looking for

  • MDB and EJB in transactions

    Hi ,           I have an MDB running on weblogic 8.2 and calling a remove ejb running on a different machine. After getting home interface when I tried to create the remote object Iam getting the following error.           java.lang.NullPointerExcept

  • Is there any way to create my own text tone?

    I love being able to make my own ringtones in garageband but I was wondering if there is anyway to make my own text tones.  That would be very nice to do.  I would assume that I can considering I can make my own ringtones. If anyone knows, please hel

  • Use of Audio In on laptop for Data Acquisitio​n

    I'd like to use the Audio In on a laptop to acquire 500 point per second data in a biomed experiment. Where to I get a driver or whatever code I can use to access the audio in on my laptop (a HP). I'm using Labview for windows.

  • Headings to Bookmarks - w Word 2010 and Acrobat Pro 9

    So Adobe decided to rip us off by denying a fix for the Acrobat Pro Ribbon in  MS Office 2010 We refuse to take part on their money making scheme and spend loads to upgrade to Acrobat X just for that  (sorry Adobe, try not cheating your customers nex

  • Newly-purchased iPod classic - Notes issues

    I just bought my iPod classic 160GB awhile ago and now that I want to put notes on it, the ENABLE DISK USE is not even available for a check box option. What to do? I need to put my work-out plan here.