System accounting sa command error converting user accounting stats

after enabling system accounting (underlying BSD os features) with "sudo accton /var/account/acct", daily attempts to summarize and rotate data into /var/account/savacct and ...usracct fails.  these files were created by /usr/sbin/sa, and later runs of /usr/sbin/sa -s -q fail with an error
"sa: converting user accounting stats: Inappropriate file type or format"
"sa: user accounting initialization failed"
is there some bug  being tracked with /usr/sbin/sa or do I need to file one?

Above indeed works; file /var/account/acct begins accumulating stats and running 'sa' command shows them.
The problem is when running 'sa -s -q' daily to roll the individual records into summary count files /var/account/{sav,usr}acct; the first time creates those files and empties the .../acct file but the second and following times fail with the error lines:
sa: converting user accounting stats: Inappropriate file type or format
sa: user accounting initialization failed
After above setup steps you sent, try this:
sudo -s
/usr/sbin/sa -s -q
# observe that the files /var/account/{sav,usr}acct are newly created; now wait a bit and:
/usr/sbin/sa -s -q
# observe failure (at least, that's what I get)
(by the way Linc, thanks for all the digging you've done)

Similar Messages

  • How do I have an exe in a logon script run as a different user (either a domain admin or even the local system account)

    So, I'm having some problems getting a logon script to work.  I need a way to deploy the agent that we use via login/startup scripts and what I have works fine if the user has admin rights, or if UAC is disabled.  I've tried to convert the .exe
    to an .msi to make it easier, but the .msi never works and it's only distributed as an .exe.  We deploy this to different clients, I can't disable UAC in their environment unless they specifically tell us to.  Can anyone think of a way around this? 
    I've been searching for days and I'm just lost.  If we could execute the file as the system account, or connect to shares using a startup script instead of logon, that would be perfect.  Basically what it does is check to see if the process for the
    agent is running (agentmon.exe) so we don't attempt to install it if it is already installed, if it's not, then it calls on a different agent installer depending on the IP address of the system (for clients that have more than one location).  Here's what
    I've got written that works for me in my test environment:
    Const strAgent1 = "\\home.wiginton.local\SysVol\home.wiginton.local\Policies\{CD4ED3BD-0709-4E3D-A303-C9E3B0F5198D}\User\Scripts\Logon\Test-KcsSetup1.exe"
    Const strAgent2 = "\\home.wiginton.local\SysVol\home.wiginton.local\Policies\{CD4ED3BD-0709-4E3D-A303-C9E3B0F5198D}\User\Scripts\Logon\Test-KcsSetup2.exe"
    Const strAgent3 = "\\home.wiginton.local\SysVol\home.wiginton.local\Policies\{CD4ED3BD-0709-4E3D-A303-C9E3B0F5198D}\User\Scripts\Logon\Test-KcsSetup3.exe"
    Const strFolder = "C:\Temp\"
    Const Overwrite = True
    dim objFSO, objNIC1, arrNIC, strIP, strMask, objShell, objWMIService
    dim
    'Checks for Kaseya agent process, AgentMon.exe, exits if running
    Set objWMIService = GetObject ("winmgmts:")
    Set proc = objWMIService.ExecQuery("select * from Win32_Process Where Name='agentmon.exe'")
    If proc.count > 0 Then
        WScript.Quit
    End If
    'Instantiate a NIC configuration object
    Set objNIC1 = GetObject("winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration")
    'Instantiate a shell object
    Set objShell = CreateObject("wscript.shell")
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'Create Temp Dir if it doesn't exist
    If Not objFSO.FolderExists(strFolder) Then
        objFSO.CreateFolder strFolder
    End If
    For Each arrNIC in objNIC1
        if arrNIC.IPEnabled then
            StrIP = arrNIC.IPAddress(i)
            strMask = arrNIC.IPSubnet(i)
            Set WshNetwork = WScript.CreateObject("WScript.Network")
        end if
    next
    Function NetworkID(Address, Mask)
        Dim AddressOctets, MaskOctets, Result, N
        AddressOctets = Split(Address, ".")
        MaskOctets = Split(Mask, ".")
        ReDim Result(UBound(AddressOctets))
        For N = 0 To UBound(AddressOctets)
            Result(N) = AddressOctets(N) And MaskOctets(N)
        Next
        NetworkID = Join(Result, ".")
    End Function
    Select Case NetworkID(strIP,strMask)
        Case "192.168.0.0"
        ' Kaseya install commands for 192.168.0.0 subnet
        objFSO.CopyFile strAgent1, strFolder, Overwrite
        Wscript.Sleep 1*60*1000
        objShell.run "C:\Temp\Test-KcsSetup1.exe"
        Case "192.168.1.0"
        ' Kaseya install commands for 192.168.1.0 subnet
        objFSO.CopyFile strAgent2, strFolder, Overwrite
        Wscript.Sleep 1*60*1000
        objShell.run "C:\Temp\Test-KcsSetup2.exe"
        Case "192.168.2.0"
        ' Kaseya install commands for 192.168.2.0 subnet
        objFSO.CopyFile strAgent3, strFolder, Overwrite
        Wscript.Sleep 1*60*1000
        objShell.run "C:\Temp\Test-KcsSetup3.exe"
        Case Else
        ' Some sort of error checking. Maybe a BLAT SMTP command to send an email
    End Select
    Set objWMIService = Nothing
    Set objNIC1 = Nothing
    Set objShell = Nothing
    Set WshNetwork = Nothing
    Wscript.quit

    You need to read the documentation carefully:
    The Deploy Agents install package is created using a Configure Automatic Account Creation wizard. The wizard copies agent settings from an existing machine ID or machine ID template and generates an install package called
    KcsSetup.All settings and pending agent procedures from the machine ID you copy from—except the machine ID, group ID, and organization ID—are applied to every new machine ID created with the package.
    Including Credentials in Agent Install Packages
    If necessary, an agent install package can be created that includes an administrator
    credentialto access a customer network. Credentials are only necessary if users are installing
    packages on machines and do not have administrator access to their network. The administrator credential is encrypted, never available in clear text form, and bound to the install package.
    ¯\_(ツ)_/¯

  • Requirement is to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a windows service, which will be created by command: - net use z: \\servername\sharedfolder /persistent:yes

    Environment:
    OS:  Windows 7 32/64 bit, Windows 2008 Server 64
    bit/ Windows 2012 Server 64 bit
    Priority:
    - Critical
    Requirement: - Since
    the Windows Service is running under the Local System Account, we would like to emulate this same behaviour.
    Basically, we would like to run CMD.EXE under the Local System Account. So that we can map a network drive to be used by a service using following
    command
    net use z: \\servername\sharedfolder /persistent:yes.
    Already Attempt:
    We tried to launch the CMD.exe using the DOS Task Scheduler AT command.  Here’s a sample command:
    AT 10:36 /interactive cmd.exe
    But I received a warning that “due
    to security enhancements, this task will run at the time excepted but not interactively.”
    It turns out that this approach will work for XP, 2000 and Server 2003 but due to session isolation
    Interactive services no longer work on Windows 7, Windows Server 2008 and above.
      2.  We
    tried to create a secondary Windows Service via the Service Control (sc.exe) which merely launches CMD.exe.
    <Drive>:\sc create RunCMDAsLSA binpath= "cmd" type=own type=interact <Drive>:\sc
    start RunCMDAsLSA
    In this case the service fails to start and results it the following error message:
    FAILED 1053: The service did not respond to the start or control request in a timely fashion.
      3. One
    suggestion, we found to launch CMD.exe via a Scheduled Task, but
    it is not giving any option to launch CMD.exe in interactive mode; so that I can map network drive using net command.
      4. I read an article, which
    demonstrates the use of PSTools from SysInternals. I launched the command line and executed following command
    psexec -i -s cmd.exe
    PSTools worked fine, but It seems that in scope of Sysinternals Software License
    Terms. You may not "use the software for commercial software hosting services."
    Application will deploy on client, which will be like commercial,
    so we are not able to use PSTools.         
    Kindly assist us for achieving the requirement. We have tried all the ways, but nothing is working for us. Kindly suggest.
    I will be really thankful.

    Hi Sir,
    Nothing worked from above for us. You can see our remarks on posted query.
    That’s why, we posted on forum.
    And there will not be any vulnerability, because, if we will use "net
    use ..."
    in network domain; definitely,
    we will provide username and password of mapped drive system.
    And, that system, itself is given by client; so that, there must not be any vulnerability; they are ready to provide user name and password.
    We need a way; by which we can complete the requirement. Kindly assist.
    Regards,
    S. P. Singh

  • GPP runs in System account even if specified that it should run i user context

    The user 'xlsx' preference item in the 'USER-Microsoft-Office  Group Policy object did not apply because it failed with error code '0x80070005 Access is denied.' This error was suppressed.
    I have a problem with GPP that should make a program (Libreoffce or Microsoft office) the default opening option for certain file-types (.doc, xls, .ppt etc...)
    But the GPP runs in system account even tho I have set the policy to "Run in user's security context"

    Hi Martin,
    Thank for your patiences!
    Here is another log of a user that I'm certain that it is a failure on
    2013-07-04 08:06:04.800  Entering ProcessGroupPolicyExFolderOptions()
    2013-07-04 08:06:04.800  SOFTWARE\Policies\Microsoft\Windows\Group Policy\{A3F3E39B-5D83-4940-B954-28315B82F0A8}
    2013-07-04 08:06:04.801  BackgroundPriorityLevel ( 0 )
    2013-07-04 08:06:04.801  DisableRSoP ( 0 )
    2013-07-04 08:06:04.801  LogLevel ( 2 )
    2013-07-04 08:06:04.801  Command subsystem initialized. [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.818  Background priority set to 0 (Idle).
    2013-07-04 08:06:04.819  ----- Parameters
    2013-07-04 08:06:04.819  CSE GUID : {A3F3E39B-5D83-4940-B954-28315B82F0A8}
    2013-07-04 08:06:04.819  Flags : (   ) GPO_INFO_FLAG_MACHINE - Apply machine policy rather than user policy
    2013-07-04 08:06:04.819          ( X ) GPO_INFO_FLAG_BACKGROUND - Background refresh of policy (ok to do slow stuff)
    2013-07-04 08:06:04.819          (   ) GPO_INFO_FLAG_SLOWLINK - Policy is being applied across a slow link
    2013-07-04 08:06:04.819          (   ) GPO_INFO_FLAG_VERBOSE - Verbose output to the eventlog
    2013-07-04 08:06:04.819          ( X ) GPO_INFO_FLAG_NOCHANGES - No changes were detected to the Group Policy Objects
    2013-07-04 08:06:04.819          (   ) GPO_INFO_FLAG_LINKTRANSITION - A change in link speed was detected between previous policy application and current policy application
    2013-07-04 08:06:04.819          (   ) GPO_INFO_FLAG_LOGRSOP_TRANSITION - A change in RSoP logging was detected between the application of the previous policy and the application of the current policy.
    2013-07-04 08:06:04.819          (   ) GPO_INFO_FLAG_FORCED_REFRESH - Forced Refresh is being applied. redo policies.
    2013-07-04 08:06:04.820          (   ) GPO_INFO_FLAG_SAFEMODE_BOOT - windows safe mode boot flag
    2013-07-04 08:06:04.820          (   ) GPO_INFO_FLAG_ASYNC_FOREGROUND - Asynchronous foreground refresh of policy
    2013-07-04 08:06:04.820  Abort Flag : Yes (0x003967d0)
    2013-07-04 08:06:04.820  HKey Root : Yes (0x000015e0)
    2013-07-04 08:06:04.820  Deleted GPO List : No
    2013-07-04 08:06:04.820  Changed GPO List : Yes
    2013-07-04 08:06:04.820  Asynchronous Processing : Yes
    2013-07-04 08:06:04.820  Status Callback : No (0x00000000)
    2013-07-04 08:06:04.821  WMI namespace : No (0x00000000)
    2013-07-04 08:06:04.821  RSoP Status : Yes (0x068ced48)
    2013-07-04 08:06:04.821  Planning Mode Site : (none)
    2013-07-04 08:06:04.821  Computer Target : No (0x00000000)
    2013-07-04 08:06:04.821  User Target : No (0x00000000)
    2013-07-04 08:06:04.821  Calculated list relevance. [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.822  ----- Changed - 0
    2013-07-04 08:06:04.822  Options : (   ) GPO_FLAG_DISABLE - This GPO is disabled.
    2013-07-04 08:06:04.822            (   ) GPO_FLAG_FORCE - Do not override the settings in this GPO with settings in a subsequent GPO.
    2013-07-04 08:06:04.822  Options (raw) : 0x00000000
    2013-07-04 08:06:04.822  Version : 2293795 (0x00230023)
    2013-07-04 08:06:04.822  GPC : LDAP://CN=User,cn={A357D87E-6F4D-4762-9F9A-6B5D3BE436F7},cn=policies,cn=system,DC=domain,DC=net
    2013-07-04 08:06:04.822  GPT : \\domain.net\sysvol\domain.net\Policies\{A357D87E-6F4D-4762-9F9A-6B5D3BE436F7}\User
    2013-07-04 08:06:04.822  GPO Name : {A357D87E-6F4D-4762-9F9A-6B5D3BE436F7}
    2013-07-04 08:06:04.822  GPO Link : (   ) GPLinkUnknown - No link information is available.
    2013-07-04 08:06:04.823             (   ) GPLinkMachine - The GPO is linked to a computer (local or remote).
    2013-07-04 08:06:04.823             (   ) GPLinkSite - The GPO is linked to a site.
    2013-07-04 08:06:04.823             (   ) GPLinkDomain - The GPO is linked to a domain.
    2013-07-04 08:06:04.823             ( X ) GPLinkOrganizationalUnit - The GPO is linked to an organizational unit.
    2013-07-04 08:06:04.823             (   ) GP Link Error
    2013-07-04 08:06:04.823  lParam : 0x00000000
    2013-07-04 08:06:04.823  Prev GPO : No
    2013-07-04 08:06:04.823  Next GPO : Yes
    2013-07-04 08:06:04.823  Extensions : [{00000000-0000-0000-0000-000000000000}{2EA1A81B-48E5-45E9-8BB7-A6E3AC170006}{3BFAE46A-7F3A-467B-8CEA-6AA34DC71F53}{BEE07A6A-EC9F-4659-B8C9-0B1937907C83}{CF848D48-888D-4F45-B530-6A201E62A605}][{25537BA6-77A8-11D2-9B6C-0000F8080861}{88E729D6-BDC1-11D1-BD2A-00C04FB9603F}][{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F73-3407-48AE-BA88-E8213C6761F1}][{5794DAFD-BE60-433F-88A2-1A31939AC01F}{2EA1A81B-48E5-45E9-8BB7-A6E3AC170006}][{A2E30F80-D7DE-11D2-BBDE-00C04F86AE3B}{FC715823-C5FB-11D1-9EEF-00A0C90347FF}][{A3F3E39B-5D83-4940-B954-28315B82F0A8}{3BFAE46A-7F3A-467B-8CEA-6AA34DC71F53}][{B087BE9D-ED37-454F-AF9C-04291E351182}{BEE07A6A-EC9F-4659-B8C9-0B1937907C83}][{E4F48E54-F38D-4884-BFB9-D4D2E5729C18}{CF848D48-888D-4F45-B530-6A201E62A605}]
    2013-07-04 08:06:04.823  lParam2 : 0x33d71cd8
    2013-07-04 08:06:04.824  Link : LDAP://OU=ou,DC=domain,DC=net
    2013-07-04 08:06:04.827  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.830  Read GPE XML data file (1124 bytes total).
    2013-07-04 08:06:04.831  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.831  Starting filter [AND FilterCollection].
    2013-07-04 08:06:04.831  Starting filter [AND NOT FilterOs].
    2013-07-04 08:06:04.832  Starting filter [AND NOT FilterOs].
    2013-07-04 08:06:04.832  Starting filter [AND NOT FilterOs].
    2013-07-04 08:06:04.833  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.841  ----- Changed - 1
    2013-07-04 08:06:04.841  Options : (   ) GPO_FLAG_DISABLE - This GPO is disabled.
    2013-07-04 08:06:04.841            (   ) GPO_FLAG_FORCE - Do not override the settings in this GPO with settings in a subsequent GPO.
    2013-07-04 08:06:04.842  Options (raw) : 0x00000000
    2013-07-04 08:06:04.842  Version : 12517567 (0x00bf00bf)
    2013-07-04 08:06:04.842  GPC : LDAP://CN=User,cn={F45570D0-E3E9-4C02-B471-11E5708EC6F8},cn=policies,cn=system,DC=domain,DC=net
    2013-07-04 08:06:04.842  GPT : \\domain.net\SysVol\domain.net\Policies\{F45570D0-E3E9-4C02-B471-11E5708EC6F8}\User
    2013-07-04 08:06:04.842  GPO Display Name : USER-Microsoft-Office
    2013-07-04 08:06:04.842  GPO Name : {F45570D0-E3E9-4C02-B471-11E5708EC6F8}
    2013-07-04 08:06:04.842  GPO Link : (   ) GPLinkUnknown - No link information is available.
    2013-07-04 08:06:04.842             (   ) GPLinkMachine - The GPO is linked to a computer (local or remote).
    2013-07-04 08:06:04.842             (   ) GPLinkSite - The GPO is linked to a site.
    2013-07-04 08:06:04.842             (   ) GPLinkDomain - The GPO is linked to a domain.
    2013-07-04 08:06:04.843             ( X ) GPLinkOrganizationalUnit - The GPO is linked to an organizational unit.
    2013-07-04 08:06:04.843             (   ) GP Link Error
    2013-07-04 08:06:04.843  lParam : 0x00000000
    2013-07-04 08:06:04.843  Prev GPO : Yes
    2013-07-04 08:06:04.843  Next GPO : No
    2013-07-04 08:06:04.843  Extensions : [{00000000-0000-0000-0000-000000000000}{3BFAE46A-7F3A-467B-8CEA-6AA34DC71F53}{CEFFA6E2-E3BD-421B-852C-6F6A79A59BC1}][{35378EAC-683F-11D2-A89A-00C04FBBCFA2}{D02B1F73-3407-48AE-BA88-E8213C6761F1}][{A3F3E39B-5D83-4940-B954-28315B82F0A8}{3BFAE46A-7F3A-467B-8CEA-6AA34DC71F53}][{C418DD9D-0D14-4EFB-8FBF-CFE535C8FAC7}{CEFFA6E2-E3BD-421B-852C-6F6A79A59BC1}]
    2013-07-04 08:06:04.843  lParam2 : 0x382b2bc8
    2013-07-04 08:06:04.843  Link : LDAP://OU=ou,DC=domain,DC=net
    2013-07-04 08:06:04.847  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.851  Read GPE XML data file (4376 bytes total).
    2013-07-04 08:06:04.852  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.853  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.857  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.861  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.864  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.868  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.872  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.876  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.880  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.884  Properties handled. [ hr = 0x80070005 "Access is denied." ]
    2013-07-04 08:06:04.887  Error suppressed. [ hr = 0x80070005 "Access is denied." ]
    2013-07-04 08:06:04.888  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.892  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.896  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.899  RunOnce value created [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.909  Completed get next GPO. [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.909  Completed get GPO list. [SUCCEEDED(S_FALSE)]
    2013-07-04 08:06:04.927  Leaving ProcessGroupPolicyExFolderOptions() returned 0x00000000

  • Error in nw installation  create operation system accounts

    hi expert!!
    i installing nw when i try to create operation system account ,i get following this error:
    ERROR 2008-04-18 11:53:08
    FSL-01002  Unable to create account cg15\SAPServiceEPL. HRESULT=0x80005009
    ERROR 2008-04-18 11:53:08
    MUT-03025  Caught ESyException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2008-04-18 11:53:08
    FCO-00011  The step createAccounts with step key |NW_Users_Create|ind|ind|ind|ind|0|0|NW_Users_Create_Do|ind|ind|ind|ind|3|0|createAccounts was executed with status ERROR .
    pls give me solution and looking forward to responce  
    thanks !!!!

    HI,
    is your  machine in Domain..or you perform local installation ?
    check whether user have administrator rights or not?
    regards,
    kaushal

  • Workflow configuration error - System Account connection test failed

    Hi,
    Has anybody faced a problem with Workflow configuration? The version we are using is 2.6.2 on Oracle database 9.2.0.5 on AIX5L. The workflow installation from 9.2.0.1 installation CDs goes through without any problem. But when the workflow configuration tool comes up it fails with the following error.
    "SYSTEM account connection test failed".
    The system and sys accounts are fine as verified by sqlplus. Any help is greatly appreciated.
    The log file is shown below.
    Workflow Configuration Assistant-AIX
    WorkflowCA:
    WorkflowCA: Workflow Configuration in progress...
    WorkflowCA:
    WorkflowCA: Screen width -2304-, screen height -1024-
    WorkflowCA: Graphics User Interface mode
    WorkflowCA:
    WorkflowCA: Language - US
    WorkflowCA:
    WorkflowCA: Start testing connection, which takes less than 3 minutes.
    WorkflowCA:
    WorkflowCA: Account connection test for SYSTEM
    WorkflowCA: SQL Thread: Thread[TstSQL,5,main]
    WorkflowCA: chkSQL: true
    WorkflowCA: cmdLine: /app/oracle/product/9.2.0/bin/sqlplus system/<Masked Password> @/app/oracle/product/9.2.0/wf/sql/wftstcon.sql
    WorkflowCA: envVar[0]: -ORACLE_SID=rsdb-
    WorkflowCA: envVar[1]: -ORACLE_HOME=/app/oracle/product/9.2.0-
    WorkflowCA: envVar[2]: -WF_RESOURCES=/app/oracle/product/9.2.0/wf/res/wfus.res-
    WorkflowCA: envVar[3]: -TZ=EST5EDT-
    WorkflowCA: envVar[4]: -WF_NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1-
    WorkflowCA: envVar[5]: -PATH=/app/oracle/product/9.2.0/bin:/app/oracle/product/9.2.0/lib:$PATH-
    WorkflowCA: envVar[6]: -LD_LIBRARY_PATH=/app/oracle/product/9.2.0/lib-
    WorkflowCA: envVar[7]: -WF_TNS_ADMIN=/app/oracle/product/9.2.0/network/admin-
    WorkflowCA: envVar[8]: -WF_SHLIB_PATH=/app/oracle/product/9.2.0/lib-
    WorkflowCA: Exit Val : 126
    WorkflowCA: chkSQL is alive after 1 seconds: false
    WorkflowCA: SYSTEM account connection test failed.
    WorkflowCA: Terminating...
    Thanks,
    Chethan

    We had this problem on 2 machines.
    On the 1st machine, we tried the local install option after a few days (Local option with no connect string) and it worked with no problems!
    On the 2nd machine, we could never get it to work even after opening a tar with Oracle. Finally we did a remote install from the 1st machine into the database on the 2nd machine. During the remote install while running wfinstall on the 1st machine, we just had to choose the remote option and the database service name for the connect string.
    Thanks,
    Chethan

  • I used this command and my user account is hidden sudo mv /Users/ed /Users/.ernestotaricone .

    i used this command and my user account is hidden and my account name ED
    sudo mv /Users/ed /Users/.ernestotaricone
    Please help me retrieve this Ed account back. Will there be any luck?
    When i checked the size of Users account the same gigabyte space is there but cannot see my user account ED

    This is the report the system gave me: CFPreferences: user home directory at file://localhost/Users/ernestotaricone/ is unavailable. User domains will be volatile.
    What of if i create another account say User account say good, can i transfer it back there?
    Seth

  • Workflow Error Message: System Account - The Workflow could not set Content Approval Status

    This is the first time I try an approval workflow. I am using a template in MS Word and assigned an approval workflow to it. The approval workflow is only going to one person in this case.
    When I start the work flow the following 3 error messages show up:
    Workflow Error Message: System Account - The Workflow could not set Content Approval Status. Enable content moderation for this list and run the workflow again.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the e-mail has a valid recipient.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Thank you for your kind guidance.

    Hi,
    For the first error: Did you set Content Approval in the workflow?  If so, see if you have it in the versioning settings of the list settings.
    For the second error: double check your recipient is set up as being valid.  Did you type in the email address or is it referring to a people picker field?  also, make sure that in the workflow for the email that you actually populated it in the
    To: field.
    for the third error: I suspect that either your farm is not configured for email.  Or, this error is a knock on from the second error.  If you get the second error rectified it may clear this error.  If not then double check the email settings
    for your farm.
    Johnathan Lightfoot

  • I'm getting this error message: "User not registered for online use" when i'm trying to download music/ track names from a CD into ITunes on my Windows 8 PC.  I'm registered and my itunes account/ appleID are all correct and working.

    I'm getting this error message: "User not registered for online use" when i'm trying to download music/ track names from a CD into ITunes on my Windows 8 PC.  I'm registered and my itunes account/ appleID are all correct and working.

    The ""not recognized for on-line use". error is associated with the Gracenote service that iTunes uses to look up and retrieve metadata for CDs.  Some users have reported that this error occurs when trying to import from CD, subsequent to upgrading to version 12.  A number of slightly different solutions have been reported (though all of a similar nature).
    Try walking through the following steps - before starting you may have to enable hidden files and folders to be viewed - in Windows 7 / Windows Explorer select Organize > Folder and search options, then on the View tab make sure that Show hidden files, folders and drives is selected.  Without this you won't see the AppData folder in C:\Users\username\
    Exit iTunes
    In Windows Explorer, go to the folder C:\Users\username\AppData\Roaming\Apple Computer\iTunes
    Delete the following files:
    CD Info.cidb
    com.apple.iTunes.Gracenote.plist
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If this doesn't work:
    In iTunes, select Edit > Preferences and make a note (or take a screenshot) of your preferences settings in all relevant tabs
    Exit iTunes
    In Windows Explorer, go to the folder C:\Users\username\AppData\Roaming\Apple Computer\iTunes
    Delete the following file:iTunesPrefs.xml
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If this second procedure does work, you'll need to restore other iTunes preferences settings to those that you noted in step 1.
    If this one didn't work:
    Exit iTunes
    Check the following folders:
    C:\Users\username\AppData\Local\Apple Computer\iTunes
    C:\Users\username\AppData\LocalLow\Apple Computer\iTunes
    Delete any copies of the following files:
    CD Info.cidb
    com.apple.iTunes.Gracenote.plist
    iTunesPrefs.xml
    Restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    Again, if this procedure does work, you'll need to restore other iTunes preferences settings to those that you noted in step 1 of the second procedure. If you're still not able to retrieve CD info:
    Exit iTunes
    In Windows, select Start > Control Panel > Programs and Features.  Find the entry for iTunes, right-click and select Repair.
    When this process has finished, restart iTunes
    Insert a CD and see if details are now correctly retrieved from Gracenote
    If none of these have worked (and almost everything I've seen suggests you should be OK by this point), you may have an issue with the installation and configuration of iTunes itself.  If you have got this far, see turingtest2's notes on Troubleshooting issues with iTunes for Windows updates for advice on how to remove and replace of all components of iTunes.

  • User account changes to system account

    I created a few pages and approved them. When I goto View All Site Content>>Pages
    I see that "Modified by" column shows "System Account" instead of my user id.
    Any one had this problem ?

    Hi,
    You've probably used your account as a system account for SharePoint, when you installed it. SharePoint automatically changes the name of the system account to 'System Account', instead of DOMAIN\Administrator or something like that.
    So, it's by design. You can fix it by changing the system account to another account in SharePoint.
    - Mart

  • Problem with MySQL - WLS61:General error: select command denied to user: 'foo@lion.e-pmsi.fr' for table 'finess'

    Hi
    I've been trying to adapt and deploy an enterprise appliaction developped and deployed
    before under JBoss.
    My database is MySQL and I use Together Control Center for development and hot deployment.
    After having modified a lot of things (the seamless protability seems always sor
    far :), now I get some strange error when deploying from withing Together Control
    Center 6.0:
    WLS61:General error: select command denied to user: '[email protected]' for table
    'finess'
    Off course the user foo has all possible and imaginable rights.
    Does anybody have an idea on how to get around it ?
    Thanks
    Alireza

    Found the answer... email that went to junk mail. Hope this helps others!
    Hello Subscription User,
     Thanks for choosing ClearDB for your database needs. We appreciate your business and 
     your interest in our services. Our commitment to all of our customers is that we 
     provide a high quality of service on all of our database systems. Part of that 
     commitment includes the enforcement of database size quotas in order to ensure 
     the highest quality of service for our customers.
     As such, we're sending you this automated message regarding one of your databases:
     Database: wp____
     Tier/Plan: Mercury
     Tier size quota: 20 MB
     This database has either reached or has exceeded its maximum allowed size for the 
     'Mercury' plan/tier that it currently belongs to. As such, our systems were forced to 
     place a read-only lock on it. We kindly encourage you to upgrade your database 
     to a larger tier/plan so that we can restore write privileges and enable complete 
     access to it from your account.
     If you feel that you have received this notification in error, please feel free 
     to contact us by replying to this email along with information that you feel may 
     assist us in assessing the situation with your database.
     Thanks again for choosing ClearDB,
     The ClearDB Team

  • Can't install Java silently on Win7 64 using system account

    Hi,
    I'm trying to distribute jre-6u31-windows-i586-s.exe which is 32 bit to Windows 7 64 bit PCs using SCCM. This uses the system account, it works fine on 32 bit Win 7 Pc's but the silent install fails on 64 bit. In the past we've been able to extract the msi, there's been no problem with that, but Oracle don't seem to offer this package as an msi anymore, a big disadvantage for us. I've seen several posts on the web regarding this but no solution?
    Is anyone able to help?
    Many thanks,
    Stephen

    Hello, we are experiencing the same problem here. I am trying to install the 32-bit version of java 6u31 (jre-6u31-windows-i586-s.exe) via an SCCM task sequence with the /s switch. This runs the installer as the SYSTEM account and whilst it seems to install the 64-bit version fine it fails to install the 32-bit version. I have gone so far as to follow this guide on launching a command prompt as SYSTEM
    http://social.technet.microsoft.com/Forums/en-US/w7itprogeneral/thread/64bbf341-260a-4778-8aa8-ff53f3659101/
    then launching the jre-6u31-windows-i586-s.exe without any switches. This allows me to see the installer within the SYSTEM shell and I can see the following error after clicking "Install" at the welcome to java screen.
    *"Windows Installer"*
    *"The installation package could not be opened, verify that the package exists and you can access it or contact the application vendor to verify that it is a valid Windows Installer package"*
    I can only suspect that the installer must extract the msi file to some arbitrary location that the SYSTEM account can't see. I have tried using Universal Extractor to get hold of an MSI file to install this version of java but this so far hasn't been successful.
    If this isn't fixed soon I will be forced to try and use an older version of the JRE. Can anyone from oracle direct us to where we can get hold of an MSI file or how to work around this issue?_
    Thank you
    d4rkcell.com
    PS - It appears to install without error when ran from an administrative user account. Obviously this is no good as we are deploying to 700+ machines and really need it to work from SCCM. I am going to try and use the runas command in windows to see if this will work but I am not holding my breath.
    PPS - Runas is no good, as it requires password input and even then it doesn't seem to work very well from the SYSTEM conext.
    Edited by: 921104 on 15-Mar-2012 05:14
    Edited by: 921104 on 15-Mar-2012 05:16
    Edited by: 921104 on 15-Mar-2012 05:19

  • WordPress MySQL Error Code: 1142. INSERT command denied to user

    Problem: I have been working on a WP Multi-Site for two months. Working away last Sunday and it stopped saving changes to my WP Post and Pages.
    I cannot rename folders at the root of the site i.e. rename Plugins folder to Plugins-hidden to reset the plugins as a troubleshooting effort. When I try to rename the folder I (as administrator) gets
    FTP 550 Access Denied message. When I connect to the MySQL DB using MySQL Workbench it does not let me perform any INSERT type function; only SELECT. When I do it gives me the following error:
    Error Code: 1142. INSERT command denied to user 'b37d600426923a'@'168.62.52.141' for table
    Basically the admin account has lost all of its admin access to the DB and host files. This is a STOPWORK scenario and I need help from an expert.
    Thanks in advance for any and all contributions to this issue.

    Found the answer... email that went to junk mail. Hope this helps others!
    Hello Subscription User,
     Thanks for choosing ClearDB for your database needs. We appreciate your business and 
     your interest in our services. Our commitment to all of our customers is that we 
     provide a high quality of service on all of our database systems. Part of that 
     commitment includes the enforcement of database size quotas in order to ensure 
     the highest quality of service for our customers.
     As such, we're sending you this automated message regarding one of your databases:
     Database: wp____
     Tier/Plan: Mercury
     Tier size quota: 20 MB
     This database has either reached or has exceeded its maximum allowed size for the 
     'Mercury' plan/tier that it currently belongs to. As such, our systems were forced to 
     place a read-only lock on it. We kindly encourage you to upgrade your database 
     to a larger tier/plan so that we can restore write privileges and enable complete 
     access to it from your account.
     If you feel that you have received this notification in error, please feel free 
     to contact us by replying to this email along with information that you feel may 
     assist us in assessing the situation with your database.
     Thanks again for choosing ClearDB,
     The ClearDB Team

  • Firefox with multiple system accounts: solutions or alternatives?

    The subject isn't exactly clear but I couldn't think of a good way to summarize the issue.
    I want to share a subset of Firefox bookmarks, extensions, settings and search plugins across different system accounts.
    For example, I have a bookmark hierarchy with directories named foo, bar and baz. I want to keep bar and baz synchronized across multiple accounts but I want foo to remain private for a given account. I want to have extensions x, y and z installed on all accounts with the same settings, but I want extension w only on one account.
    General and plugin settings are easy enough to do with user.js.
    Interface settings, extensions and search plugins can be shared with some scripting and rsyncing but that's a minor pain.
    Sharing a subset of bookmarks is major pain. Either I have to automatically export HTML bookmarks files, write a parser, copy the subset around, import it manually with each account, and finally arrange the imported bookmarks in the hierarchy or I have to open each account in the same X session and copy+paste bookmarks between accounts.
    I could probably write a script to  extract and insert what I want in places.sqlite3, but I don't want to rely on the stability of the database format with the new release plan.
    Does anyone have any suggestions? Firefox Sync is not an option because I do not want to share everything.
    At this point I'm open to alternatives, but there is some functionality that I'm not willing to give up:
    * NoScript (per-site Javascript and Flash blocking)
    * RequestPolicy (per-site permissions for loading content from other sites)
    * Cookie Monster (per-site cookie permissions)
    * Add to Search Bar (easily add any search form to the search bar)
    * Organize Search Engines (create hierarchical structures of aforementioned search engines)
    I've started considering Chrome but the matching extensions don't seem to be mature enough yet (e.g. Request Maker is based on RequestPolicy, but the author admits it lacks features). Besides, I don't really want to rely on the Google apps store if I can avoid it.
    I looked at uzbl too, but the script-blocking scripts apparently fail sometimes because uzbl lacks hooks. An unreliable script-blocker is a no-go for me.
    tl:dr; need suggestions for something that lets me:
    * control outgoing requests from browser
    * control code execution in browser
    * synchronize subsets of bookmarks, extensions, search engines
    * organize bookmarks and search engines
    p.s. Life would be so much easier if Firefox didn't pack shit into SQLite databases like it was playing Tetris.  Just give me some decent command-line options and simple configuration file formats ffs.

    ngoonee wrote: I don't use bookmarks AT ALL.
    oO
    What do you use instead? Memory and auto-completion?
    This did give me an idea... I could just as well write a basic server to host my bookmarks and run that as a daemon.
    As for the suggestions so far:
    * Pentadactyl: I'll look into it, but installing it would be a bit like buying a car just for the seat.
    * Xmarks: that might do what I want, but I don't like the idea of storing all of my bookmarks on  a third-party server and I definitely don't want to let them collect data about me as per their ToS.
    * xxxterm etc.: I'll look into those.
    Thanks!
    I'll post an update as soon as I decide on a solution.
    Last edited by Xyne (2012-05-09 16:08:30)

  • Cannot Retrieve referenced URL in wscript file from Local System Account, but not other accounts on the computer.

    Hello,
    I have a WScript File that includes an external resource (js file).
    It works on one computer and it does not work on another computer.
    If I run this file from a normal admin command prompt everything runs fine on both computers.
    If I run this file from the Local System account using PsExec it runs fine on one of the computers and throws an error "Cannot Retrieve referenced URL" on the other computer.
    The reason I want it to run from the Local System account is that it is executed from a Windows Service.
    Is there some setting or some way for the IE cache to get corrupt on the Local System account or something like that?

    JRV,
    You are by far the worst 'support' person I've ever seen. If you aren't going to be thoughtful in providing support, don't pretend. If you're going to pretend, leave your condescension on the shelf. You have provided no thoughtfulness whatsoever to his issue,
    and have in no way improved the discourse. You are arrogant and condescending without exhibiting any intelligence whatsoever. I'm impressed Matt kept calm through your demeaning, counterproductive diatribes.
    Matt,
    First I'd check UAC settings, because I believe that can change how elevation works substantially.
    Second, I would check the versions of wscript.exe on both machines, both in System32 and SysWow, and I'd check for updates bypassing WSUS to make sure there's not something silly going on there (totally a shot in the dark, catch-all theory).
    Have you made any headway in the last few weeks?
    -John
    This is not a support forum and it is not for assistance in fixing broken configurations.  It is a scripting forum. The OP proved that the issue is not the script but the environment it is running in.  You should not get mad just because you are
    not getting satisfaction.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • I was prompted to submit a crash report, but the link didn't work and I keep being asked to reload the page, which doesn't seem to be working, either

    I think the sentence above summarizes things quite well. I don't know how to go back to recreate the situation, which I'm SURE is going to keep right on occurring, and then get right back here to let you know the EXACT details. I don't know if someth

  • Why can't I download purchased books?

    hello all i have a problem downloading previously purchased books from the store.  They show up with the cloud symbol and download when I touch the icon. In my bookshelf the download completes then a greyed out cover appears and the Book disappears. 

  • Peoplesoft portal integration

    Hi, I would like to integrate the peoplesoft portal into SAP Enteprise Portal 6.0 SP2. I tried integrating using the App integrator but all in vain. Perhaps i am not using the correct parameters. Please let me know if anyone has already done it. Than

  • Migration from 8.1.6 R2 to 8.1.7 R3

    What are the things which need a closer watch ! while migrating an application from 8.1.6 to 8.1.7. on SUN/Solaris Help will be appreciated. Regards Sunil

  • Replace one row in a file

    Hi, I have one xml file (.svg), 254kB. I would like to replace the second row in that file: <?xml-stylesheet href="test.css" type="text/css"?> with another row: <?xml-stylesheet href=test_"+sessionId+".css type='text/css'?> I have tried to use this c