Error (possibly login related) when setting up publication

I am attempting to set up replication for several SQL Server 2005 databases that are used by our equipment.  The equipment is run from a computer with a SQL Server instance 'Cloverleaf'.
We have a second computer that also has SQL Server 2005 with instance name 'User'.  The computers are connected over our company network, and I can read and write data into the Cloverleaf databases from the User computer.  On the User computer,
login is by Windows authentication.  To see the Cloverleaf databases from this computer, I have to enter a username and password.
I have setup the User computer as a distributor for the Cloverleaf server.  Sitting at the User computer, when I try to set up a publication on the Cloverleaf database, I get this error message:
SQL Server could not connect to the Distributor using the specified password.  Additional information: Connection to the server [USER-PC] failed... linked server... returned "Login timeout expired"
and "An error has occurred while establishing a connection to the server..." (Microsoft SQL Server, Error: 21670)
I have also tried to go to the Cloverleaf computer to set up the publication.  However, when I get to the point where I need to connect to the distributor computer, Windows authentication gives a similar message to what is above, and I have no idea
if SQL Server authentication would work or, if so, what username or password to try.
Both instances have remote connections enabled.  
Do I need to setup a new Windows authentication account on the User computer to enable the Cloverleaf computer to connect to it?  If so, how would I go about that?  Or is there something else I should look into to troubleshoot this problem?

Hi MTPht,
According to your description, you want to set the User Server as a distributor and create a publication in the Colverleaf Server , the error occurs when you connect to the distributor by using the specified password. We need to verify if the SQL Server
login account has admin permission when you log in the Colverleaf instance via a username and password, then creat the new publication . We also need to verify if you added Server Colverleaf as publisher in the distributor's publisher list.
There is a similar issue about error 21670, you can review the following article.
http://www.sql-questions.com/microsoft/SQL-Server-Replication/32070626/error-21670-sql-server-could-not-connect-to-the-distributor-using----the-specified-password-configure-distribution-wizard.aspx
There is the steps about configuring transactional replication between two SQL Server 2005 systems, you can review the following article.
http://www.techrepublic.com/blog/how-do-i/how-do-i-configure-transactional-replication-between-two-sql-server-2005-systems/
Regards,
Sofiya Li
Sofiya Li
TechNet Community Support

Similar Messages

  • Intermittent error on login page when username is entered as a single quote( ' ) and tab is pressed.

    Hi All,
    We have an ADF based portal application which has a login page with Username and Password inputText field.
    When we type a single quote( ' ) in the Username field and press tab to go to the Password field an error is thrown saying "A connection to the server has failed" and this window does not close if we click on ok or the close option of the popup.
    This is causing serious problems for us. It would be great if anyone could help us out as to why this is happening or if anyone has experinced the same issue.
    Thanks,
    Tanya

    Hey Frank,
    Sorry for the delayed reply. Since the issue was a high priority one and had to fix it ASAP we didn't have time to analyse it further.
    We just inserted a javascript that prevented the form from getting submitted if a single quote is entered in the inputText field.
    So far it has worked for us.
    Thanks for your help though.
    Tanya

  • Error in RSS file when setting datasource in report

    Hi,
    I trying to prepare script to deploy my reports to reporting service 2008. Script is takes from
    this question (Deploying Reports rss). Unfortunately code provided for data sources settings is not working in my case and I do not know why.
    Sequence is following: removed reports path, re-craete it, create datasource and for each report following actions performed: deploy and set datasource.
    After first report tried to set data source in itself scripts failed with error:
    D:\_ST\FLASH>rs -i deploy.rss -s http://localhost/ReportServer_i2008
    Parent folder Pipeline Reports created successfully.
    Deploying report 'CRM Practice Report'
    Report: CRM Practice Report published successfully.
    Setting datasource to report 'CRM Practice Report'.
    Error setting datasource to report 'CRM Practice Report'
    ERROR while Publishing report: CRM Practice Report
    Unhandled exception:
    The data source 'Warehouse Datasource' cannot be found.
    Here is the script I using to deploy datasource and reports:
    Dim definition As [Byte]() = Nothing
    Dim warnings As Warning() = Nothing
    Dim destinationFolder As String = "Pipeline Reports"
    Dim reportsTargetPath As String = "/" + destinationFolder
    Dim reportsSourcePath As String = "D:\Depot\Internal\BDW\BDW_Phase4\Src\BDW_R4.17.2\Reports\BDW_Reports"
    Dim datasourceName As String = "Warehouse Datasource"
    Public Sub Main()
    Try
    rs.Credentials = System.Net.CredentialCache.DefaultCredentials
    If rs.GetItemType(reportsTargetPath) = ItemTypeEnum.Folder Then
    rs.DeleteItem(reportsTargetPath)
    End If
    rs.CreateFolder(destinationFolder, "/", Nothing)
    Console.WriteLine("Parent folder {0} created successfully.", destinationFolder)
    CreateReportDataSource(datasourceName, "SQL", "Data Source=apopov\i2008;Initial Catalog=bdw")
    PublishReport("CRM Practice Report")
    PublishReport("CRM Report")
    PublishReport("Pipeline Practice Report")
    PublishReport("Pipeline Report")
    Console.WriteLine("Tasks completed successfully.")
    Catch ex As Exception
    Throw ex
    End Try
    End Sub
    Public Sub CreateReportDataSource(name As String, extension As String, connectionString As String)
    Dim definition As New DataSourceDefinition()
    definition.CredentialRetrieval = CredentialRetrievalEnum.Integrated
    definition.ConnectString = connectionString
    definition.Enabled = True
    definition.Extension = extension
    Try
    rs.CreateDataSource(name, reportsTargetPath, False, definition, Nothing)
    Catch e As Exception
    Console.WriteLine("ERROR creating data source: " + name)
    Throw e
    End Try
    End Sub
    Public Sub PublishReport(ByVal reportName As String)
    Try
    Console.WriteLine("Deploying report '{0}'", reportName)
    Dim stream As FileStream = File.OpenRead(reportsSourcePath + "\" + reportName + ".rdl")
    definition = New [Byte](stream.Length-1) {}
    stream.Read(definition, 0, CInt(stream.Length))
    stream.Close()
    rs.CreateReport(reportName, reportsTargetPath, False, definition, Nothing)
    Console.WriteLine("Report: {0} published successfully.", reportName)
    SetDatasource(reportName)
    Catch e As Exception
    Console.WriteLine("ERROR while Publishing report: " + reportName)
    Throw e
    End Try
    End Sub
    Public Sub SetDatasource(ByVal reportName As String)
    Try
    'Not working, I do not know why
    Console.WriteLine("Setting datasource to report '{0}'.", reportName)
    Dim reference As New DataSourceReference()
    reference.Reference = reportsTargetPath + "/" + datasourceName
    Dim source As New DataSource()
    source.Item = reference
    source.Name = datasourceName
    Dim sources As DataSource() = New DataSource(0) {}
    sources(0) = source
    rs.SetItemDataSources(reportsTargetPath + "/" + reportName, sources)
    Catch e As Exception
    Console.WriteLine("Error setting datasource to report '{0}'", reportName)
    Throw e
    End Try
    End Sub
    I have not ideans why this error may occures.

    Hi Alex,
    I have test the script in my test environment, it works.
    Based on the error message, the data source 'Warehouse Datasource' cannot be found. Please check, did you have add Warehouse Datasource.rds file in the same folder? In your case, it is located in: D:\Depot\Internal\BDW\BDW_Phase4\Src\BDW_R4.17.2\Reports\BDW_Reports
    If the issue is persist, please feel free to ask.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Error java.sql.exception when setting up repository for OWB 11g

    Hey all,
    I am encountering the following error on the last step of Repository Assistant, that is, while trying to set up the design repository in OWB 11g:
    "The Warehouse Builder workspace installation failed
    java.sql.SQLException : ORA-00942 table or view does not exist"
    Below is an excerpt from the the log file:
    main.TaskScheduler timer[5]20080620@14:51:54.054: 00> oracle.wh.service.impl.assistant.ProcessEngine.processSQLUserToken(ProcessEngine.java:1106)+>     at java.lang.Thread.run(Thread.java:595)
    main.TaskScheduler timer[5]20080620@14:51:54.054: 00> oracle.wh.service.impl.assistant.ProcessEngine.display(ProcessEngine.java:1572): Exception = java.sql.SQLException: ORA-00942: table or view does not exist
    main.TaskScheduler timer[5]20080620@14:51:54.054: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:788): [executeOwbReposOrRuntime]: Error occurred during Workspace Installation. Exception =java.lang.Exception: java.sql.SQLException: ORA-00942: table or view does not exist
    main.AWT-EventQueue-0[6]20080620@14:51:54.054: 00> oracle.wh.ui.jcommon.WhButton@a22671: WhButton setLabel rtsString = OK
    main.AWT-EventQueue-0[6]20080620@14:58:17.017: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:788): before open 'UnSuccessDialog'
    main.AWT-EventQueue-0[6]20080620@14:58:17.017: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:788): Open UnSuccessDialog ...
    main.AWT-EventQueue-0[6]20080620@14:58:17.017: 00> oracle.wh.ui.jcommon.WhButton@a22671: WhButton setLabel rtsString = OK
    I am new to OWB so please let me know if I've left out any information that would help in figuring out why the installation is not completing.
    Thanks.

    The only thing I can think of in OWB 11g is that the main schema that is used, which is OWBSYS, wasn't fully installed or it doesn't have all the tables or views it needs or they weren't created properly with the cat_owb.sal script.
    Something must not have been created right. I would try to stop all OWB services with the appropriate scripts in:
    <your_owb_home>owb\rtp\sql
    try the stop_service.sql script.
    Then try to drop the users owbsys and whatever you might have created (if it exists) for a workspace owner user. Then clean up with:
    <your_owb_home>\owb\UnifiedRepos\clean_owbsys.sql
    After that it is back to the drawing board from the beginning. DO these steps again that you likely did in the first place:
    1. create owbsys with:
    <your_owb_home>\owb\UnifiedRepos\cat_owb.sql <tablespace_name>
    2. Set the control center home with:
    <your_owb_home>\owb\UnifiedRepos\reset_owbcc_home.sql <your_owb_home>
    *pay attention to the case of the the OWB HOME you give as a variable to the above script.  It needs to match the case of your real path.
    3. Finally unlock owbsys.
    4. look at <your_owb_home>\owb\bin\admin\ if the rtrepos.properties file size is at '0'. If it is for some reason, rename it to something else right now.
    5. Then try to run the repository assistant again.
    -Greg

  • Got an error message in German when setting up iCloud

    Got the following message during setup of the iCloud control panel on my PC running Windows 7:  Der automatische Refresh konnte nicht gestartet werden

    And now, with the new iCloud Control Panel 1.1, still an error, in English this time:
    Outlook Setup Error
    Your setup couldn't be started because of an unexpected error.
    I was able to click the Report button, here's the beginning of the text it emailed:
    Help Apple improve its products by sending us diagnostic and usage information about iCloud.
    By sending this message, you agree that Apple will collect and use this information as part of its support services and to improve its products and services. To learn more about Apple's Privacy Policy, see http://www.apple.com/legal/privacy.
    Your setup couldn't be started because of an unexpected error.
    Error: 0x80004005: CopyPSTFoldersToCache
    Error: 0x80004005: GetZ1Store
    Error: 0x80004005: HrGetOneProp on Z1Store failed
    AppleOutlookDAVConfig version: 3.2.16.0
    Windows version (6.1.7601): Windows 7 Ultimate Edition Service Pack 1 (build 7601), 64-bit
    Local app data directory test: Pass
    Temp directory test: Pass
    Outlook version: 14 (14.0.6109.5005), x64
    Outlook location (installed): C:\Program Files\Microsoft Office\Office14\OUTLOOK.EXE
    MAPI location: C:\Program Files\Common Files\SYSTEM\MSMAPI\1033\MSMAPI32.DLL
    MAPI logon succeeded
    Message Stores Table:
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Hotmail Connector Store Service, 975C4FC305EB4BBBB1992A7570EC7CF9
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
      Outlook Data File, 4E495441F9BFB80100AA0037D96E0000
    Contents of C:\Program Files\Common Files\SYSTEM\MSMAPI\1033\mapisvc.inf
    [Services]
    NOTES=Lotus Notes Mail
    MSN_CON=Microsoft Outlook Hotmail Connector
    APLZODSERVICE=iCloud
    [NOTES]
    PR_SERVICE_DLL_NAME=nwnsp.dll
    PR_SERVICE_SUPPORT_FILES=nwnsp.dll
    PR_SERVICE_DELETE_FILES=nwnsp.dll
    PR_SERVICE_ENTRY_NAME=ServiceEntry
    continued...

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • ASE instance not available *** ERROR:ASE instance possibly left running when system went down(system crash?). Notify Database Administrator

    Hi Gurus,
    I made some changes in rz10 for client copy like:
    icm/host_name_full [email protected]
    login/accept_sso2_ticket 1
    login/create_sso2_ticket 2
    icm/server_port_1
    PROT=HTTPS,PORT=443$$,PROCTIMEOUT=600,TIMEOUT=600
    icm/server_port_0
    PROT=HTTP,PORT=80$$,PROCTIMEOUT=600,TIMEOUT=600
    login/no_automatic_user_sapstar 0
    After to make changes effective, i stopsap & startsap.
    But unfortunately db is not coming up. I checked startdb.log it showing
    error as " ASE instance not available
    *** ERROR:ASE instance possibly left running when system
    went down(system crash?).
    Notify Database Administrator."
    Please help us to resolve this issue, i have also added startdb.log for
    your reference.
    Regards,
    Piyush

    Hi Piyush,
    Did you solved this issue.
    We are facing the same issue and only this thread is there in SCN for this issue.
    If you solved this issue,Kindly share the solution.
    Thanks and Regards,
    Mathan A

  • The only working print-related function in BioBench1.2 on my PC is the "Print Report", all the other "Print" functions gave me "Error, the printer is not set up correctly".

    I used to print all my BioBench data by first exporting them to Excel and then print from there. Recently I need to print some of the screen shots and some data directly from array analysis, but when I click on the "print" buttons, the "Error, the printer is not set up correctly" message occurs. The only thing I can print from BB without this error is the report printing function. I have a postcript printer and I have set the postscript option to be "true"... Thanks !

    This problem is a result of a limitation in Windows 9x regarding the size of an image that you can send to the printer. The problem does not occur on Windows 2000/NT. This problem appeared with the increased color options of LabVIEW 6.0 on which the BB1.2 is based.Although it is not immediately obvious, your video driver and settings play a role in printing.
    1. Try adjusting the color palette your driver uses (i.e., 256 color, high olor, true color). The error may occur only in one of these modes. Also, change the resolution (number of pixels) to represent the Screen Area; e.g., change from a 1024 x 768 display to an 800 x 600 pixel display.
    2.Certain video drivers also support "acceleration" modes. Using a non-accelerated mode often eliminates the error. For
    Windows 95/98, right-click on your My Computer icon and select "Properties" from the pop-up
    menu. On the Performance tab, click the Graphics button and change the Hardware Acceleration (e.g., if it is set to "Full", lower the setting a notch or two); for Windows 2000/NT, right-click on your Desktop and select "Properties" from the pop-up menu. On the Settings tab, click the Advanced button and go to
    Troubleshooting.
    3.In Windows, the standard VGA driver provided by the operating system is very stable. Try using this driver in place of the specific one written for your video hardware. If the error is eliminated, there is likely a problem with your vendor-provided video driver.
    4.These errors are most often fixed with the latest
    video/printer driver. Be sure to contact your hardware manufacturer and install the latest driver. An easy way to determine if your error is "driver-related" is to move your code to another machine (and hopefully a different set of drivers) and see if th
    e error persists. If the problem is printer related, try another printer.
    5.Make sure there are at least 100M avalible space in your C: drive. If not, set the virtual memory to the other drive which has larger available space.

  • Getting an error when setting up Apple ID on new Mac book air

    I am setting up new Mac book air and getting an error at the sign up with Apple ID. Says couldn't sign in because of a server error. Try signing in again

    I got this error when setting up a new iMac. I now beleive the reason was that I had already restored accounts and files from a Time Machine backup, and it then connected me to the Apple ID during the login. It is a flaw in the setup process that it didn't check for that and skip the Apple ID step.

  • [svn:osmf:] 14758: Fix FM-556: When MediaPlayer enters error state, capabilities should be set to false, and capability change events should be dispatched.

    Revision: 14758
    Revision: 14758
    Author:   [email protected]
    Date:     2010-03-15 12:27:47 -0700 (Mon, 15 Mar 2010)
    Log Message:
    Fix FM-556: When MediaPlayer enters error state, capabilities should be set to false, and capability change events should be dispatched.  Also fixed typo in one of the capability change event names.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-556
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/MediaPlayerCapabilityChangeEvent.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamLoadTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayer.as

    Well, I can tell you that this kind of error is not OS related, but rather a HW thing.  It happens where there is a general detection of something going wrong.  Sometimes it can happen randomly and might not be an indication of a problem.  But sometimes it can be caused by things that are improperly functioning within the system like bad capacitors. 
    Unfortunately I don't really know what to do about such things except give you machine a proper inspection.  But if things are working fine, and continue to do so, I wouldn't worry about it.  If it becomes a regular occurance, then I'd worry.

  • Cannot set up hotmail account "setup could not finish, error in login, invalid credentials"

    Two weeks ago I started getting messages to log back into one of my hotmail accounts that I had set up on my droid charge at the 'email icon'( I had 3 hotmail accounts and 1 gmail account setup there)
    once I logged the password back in it worked again, but it began requesting that I log back into the account more and more frequently
    Customer service recommended that I remove the account and then set it up again, I did this and  it would not allow me to set it up again-"setup could not finish, error in login, invalid credentials"
    I tried removing all acounts and then setting them up again, still could not set up the one hotmail account (same message)
    Verizon store decided that I needed to 'wipe' my phone completely, after they wiped it two of my hotmail accounts refused to be set up (same error message)
    I tried changing the passwords going to the accounts online on my computer (I can access all the accounts online)
    Customer service stated that it must be the phone and sent me a refurbished phone, the refurbished phone is doing the exact same thing with the exact same error message
    Any ideas?

    matthewclaxton wrote:
    Two weeks ago I started getting messages to log back into one of my hotmail accounts that I had set up on my droid charge at the 'email icon'( I had 3 hotmail accounts and 1 gmail account setup there)
    once I logged the password back in it worked again, but it began requesting that I log back into the account more and more frequently
    Customer service recommended that I remove the account and then set it up again, I did this and  it would not allow me to set it up again-"setup could not finish, error in login, invalid credentials"
    I tried removing all acounts and then setting them up again, still could not set up the one hotmail account (same message)
    Verizon store decided that I needed to 'wipe' my phone completely, after they wiped it two of my hotmail accounts refused to be set up (same error message)
    I tried changing the passwords going to the accounts online on my computer (I can access all the accounts online)
    Customer service stated that it must be the phone and sent me a refurbished phone, the refurbished phone is doing the exact same thing with the exact same error message
    Any ideas?
    When you setup the accounts, are you using the automatic or manual method to set them up?

  • ADDT hanging when requesting login-related activity

    I have a PHP driven site which requires login. I want the login to redirect based on a URL-passed parameter, so I edited the tNG_config.inc.php file to set the default success redirect to
    $tNG_login_config["redirect_success"] = $_GET['return'];
    Now, when I try to create any server behavior that depends on a user being logged in (show if user logged in... region, login transaction, etc.), Dreamweaver CS3 hangs with 100% of the CPU running and the fans a-blasting.
    MacBook, 2GB RAM, Dreamweaver CS3 9.0 build 3481.
    Any ideas what's up here?
    James

    Did anyone figure this out?  This is driving me crazy right now - it hangs when I try to request any login related activity through ADDT contron panel, etc.
    I can't for the life of me find the answer to this on the forums.
    Any ideas, anyone?

  • Error when setting up cloud appliance "BW 7.4 MaxDB Trial"

    Hi there,
    I am currently trying to set up the cloud appliance "SAP NetWeaver Business Warehouse 7.4 incl. usage type BI Java on SAP MaxDB – Trial Edition" on AWS but always run into the same error.
    According the the Cloud Appliance Library monitor, the instance activates correctly. However, when I log into the NetWeaver machine via SSH I get the following message:
    The Appliance Agent detected an error and terminated.
    When asked, please provide the file /tmp/applianceagent_20140903-213757.tar.bz2.
    Note that a restrictive iptables based firewall is still active.
    In the log file /var/log/applianceagent.log I found the following:
    Starting 'Appliance internal changes' (10), ApplianceInternals.sh at Wed Sep  3 21:35:40 UTC 2014
    error in /tmp/applianceagent/scripts/ConfigAppliance.sh:  found, starting to cleanup
    starting logcollector since 'Appliance internal changes' failed  Execute /tmp/applianceagent/scripts/logcollector.sh
    The collection of logfiles is located at /tmp/applianceagent_20140903-213757.tar.bz2
    starting logcollector since 'Appliance internal changes' failed  succeeded
    More details can be found in the log file /var/log/appliancedeploy.log:
    ERROR      2014-09-03 21:37:53.321
              CJSlibModule::writeError_impl()
    MUT-03025  Caught ESAPinstException in module call:
    (SAPINST_SKIP_DIALOGS=true)
    Validator of step |offlineadjustment_dialogs|ind|ind|ind|ind|0|0|askInstances reports an error :
      <html> <head> </head> <body> Host 'wdflbmd6865' is not local. </body></html>
    . To solve that problem start the installation without using SAPINST_START_GUI option..
    I tried this several times (always terminating the instance and creating a new one), but always run into the same problems. I also tried using different virtual machine sizes (larger than the recommended ones) but did not have any success with this either.
    Unfortunately, I cannot attach the file /tmp/applianceagent_20140903-213757.tar.bz2 mentioned in the error message (due to size limit of 1 MB for attachments). But I attached some of the log files.
    How can I resolve this issue?
    Please let me know if you need any further information.
    Best,
    Joachim

    Hi Joachim,
    thanks for clarifying.
    This solution does not support Elastic IP assignments.
    Since the network settings are read during the creation process, it should be fine to assign an Elastic IP when the solution instance is up and running. Note that during a reboot the Elastic IP must be de-allocated as well. This is because the network setting are reinitialized during the boot process. I hope this works and serves your needs.
    I suggest to start a new instance.
    Best Regards,
    Achim

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    Why is the number "1" when setting up the dial fat thickness did not change the font? Is it possible to adjust the font in the thick klavioture typing?

    paulcb wrote:
    Using the Bold Text Accessibility option does make the keypad numbers a little bolder.
    Yep - I was only looking at Text Size.
    But still, not sure what the deal is. The "1" is just as readable as any other number on the keyboard regardless.

Maybe you are looking for