Skype server IP address required

Hi,
I need to use skype in a restricted ( Only certain ports are enabled) network. As per the current network settings, all skype service ports except 80 and 443 are disabled. So this cause even skype login is difficult. If I enable all ports above 1024 then skype works. But I can not use it as a permanent solution. I would like you to share me the skype server IP address and and the ports which use. So that I can create an additional policy in my UTM (Fortigate80C) by adding exception to skype ports and skyper server IPaddess/FQDN.
Regards,
Jithin

SQL> select host_name hostname from v$instance;
HOSTNAME
mytestdb
SQL> select utl_inaddr.get_host_address('mytestdb') ipaddress from dual;
IPADDRESS
xxx.xxx.xxx.xxx
Regards,
Sabdar Syed.

Similar Messages

  • Valid hostname or network address required in server description:10024

    Since applying 10.8.5, the mail server won't run and this message is in the SMTP log
    valid hostname or network address required in server description:10024
    If I turn off filtering the existing email on the queue aren't processed because smrp-amavis is not available.
    What's going wrong and how can I correct it?

    OK, seems a lot of emails were left on the queue.  after much Googling, I found
    postsuper -r ALL
    This got things moving again and the outstanding queue cleared.

  • CiscoWorks: Not receiving syslogs, since we change CiscoWorks server IP Address

    Hi,
    We  are using CiscoWorks 3.2.1. We have changed CiscoWorks server IP  Address, since then we are not receiving syslogs from Devices. Although  devices configurations have also been changed so that they log to new IP  Address e.g. logging new IP Address. But we are not getting syslogs now.
    Rest  all operations of CiscoWorks are working ok. E.g. We can access it from  IE, inventory/config collection working, we can deploy configs etc. But  we are not getting syslogs.
    Also :
    Test Collector Subscription Status
    SSL certificate status   SSL certificates are valid and properly imported
    Collector status       Collector Server_IP_Address is up and reachable.
    but I am not seeing any new alerts receiving here.
    When I do start the SyslogCollector.log/SyslogAnalyzer.log from server, I get below message;
    E:\Ciscoworks\log>net start crmlog
    The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    E:\Ciscoworks\log>pdexec SyslogCollector.log
    ERROR: cmd failed. Server reason: Application SyslogCollector.log is not registe
    red.  All requests to operate on this application will be ignored.
    E:\Ciscoworks\log>pdexec SyslogAnalyzer.log
    ERROR: cmd failed. Server reason: Application SyslogAnalyzer.log is not register
    ed.  All requests to operate on this application will be ignored.
    E:\Ciscoworks\log>
    Please advise what need to be changed on CiscoWorks in reference to new IP Address.Its required urgently.
    Thanks

    We have already remove the logging on old IP from devices, and now about 4000 devices are logging to new IP.
    Above mentioned problem is on CiscoWorks only, as its not collecting the syslogs. Below error message might suggest some solution.
    E:\Ciscoworks\log>net start crmlog
    The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    E:\Ciscoworks\log>pdexec SyslogCollector.log
    ERROR: cmd failed. Server reason: Application SyslogCollector.log is not registered.  All requests to operate on this application will be ignored.
    E:\Ciscoworks\log>pdexec SyslogAnalyzer.log
    ERROR: cmd failed. Server reason: Application SyslogAnalyzer.log is not registered.  All requests to operate on this application will be ignored.
    E:\Ciscoworks\log>

  • The server network address can not be reached or does not exist

    Hi all       
        When i am trying to configure Mirroring .i am getting the below error.
     The server network address "TCP://RDEEPA:5022" can not be reached or does not exist. Check the network address name and reissue the command. (Microsoft SQL Server, Error: 1418)
    . TCP/IP and Name pipe connection is enabled in both principle and mirror server configuration.
    I post the complete error message below ,which is in red  
    TITLE: Database Properties
    An error occurred while starting mirroring.
    ADDITIONAL INFORMATION:
    Alter failed for Database 'success'.  (Microsoft.SqlServer.Smo)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Alter+Database&LinkId=20476
    An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)
    The server network address "TCP://RDEEPA:5022" can not be reached or does not exist. Check the network address name and reissue the command. (Microsoft SQL Server, Error: 1418)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.1399&EvtSrc=MSSQLServer&EvtID=1418&LinkId=20476
    BUTTONS:
    OK

    Hi,
    I have the same problem. However beginning over and over again and using other ports did not solve this unfortunately.
    Here is the SQL I used to setup the mirroring.
    * Principal DB
    CREATE ENDPOINT [MirroringEndpoint]
        AUTHORIZATION [DOMAIN\administrator]
        STATE=STARTED
        AS TCP (LISTENER_PORT = 5022, LISTENER_IP = ALL)
        FOR DATA_MIRRORING (ROLE = PARTNER, AUTHENTICATION = WINDOWS NEGOTIATE
    , ENCRYPTION = REQUIRED ALGORITHM RC4)
    BACKUP DATABASE TEST
        TO DISK = 'C:\full-backup.bak'
        WITH FORMAT
    BACKUP LOG TEST
        TO DISK = 'C:\log.bak'
    ALTER DATABASE TEST SET PARTNER ='tcp://sql2.domain.local:5022';
    * Mirroring DB
    CREATE ENDPOINT [MirroringEndpoint]
        AUTHORIZATION [DOMAIN\administrator]
        STATE=STARTED
        AS TCP (LISTENER_PORT = 5022, LISTENER_IP = ALL)
        FOR DATA_MIRRORING (ROLE = PARTNER, AUTHENTICATION = WINDOWS NEGOTIATE
    , ENCRYPTION = REQUIRED ALGORITHM RC4)
    RESTORE DATABASE TEST
        FROM DISK = 'C:\full-backup.bak'
        WITH NORECOVERY
    RESTORE LOG TEST
        FROM DISK = 'C:\log.bak'
        WITH FILE=1, NORECOVERY
    ALTER DATABASE TEST SET PARTNER ='tcp://sql1.domain.local:5022';
    The last statement on the principal server gives me the following error :
    Msg 1418, Level 16, State 1, Line 1
    The server network address "tcp://sql2.domain.local:5022" can not be reached or does not exist. Check the network address name and that the ports for the local and remote endpoints are operational.
    From the principal server I'm able to ping the mirror server and can establish a telnet connection. When the statement gets executed even netstat gives me the following output :
    TCP    0.0.0.0:5022           0.0.0.0:0              LISTENING       1244  [sqlservr.exe]
    TCP    10.1.1.140:5022       10.1.1.110:1223       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1226       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1216       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1218       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1225       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1222       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1221       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1224       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1219       TIME_WAIT       0
    TCP    10.1.1.140:5022       10.1.1.110:1220       TIME_WAIT       0
    Is it normal so many ports get opened?
    Any help would be greatly appreciated (as this drives me crazy :-( )
    Found the problem eventually. The mirroring ran as the NT_AUTORITY user instead of DOMAIN\administrator.

  • Server logical address space is running low

    Hi, I have server with NetWare 6.5 SP08.
    I get the message:
    Server logical address space is running low. Increase the available logical space by restarting the Server with the-u788197376 switch.
    What I can do?
    Thank you.

    Jjfbravo,
    > Server logical address space is running low. Increase the available
    > logical space by restarting the Server with the-u788197376 switch.
    > What I can do?
    That switch should not normally be needed. What are you running on this
    server? Please run
    load config /jumba1se
    Post results here
    - Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms

  • Cannot ping REAL server IP addresses from CSM 6500

    I have a dual 6500/CSM routed topology in which the traffic from clients to the server VIP works fine. However, in preparation for some upcoming work, I find that I cannot ping the REAL server IP addresses. This would seem to be an important troubleshooting step. Any ideas why this wouldn't work?

    Gilles, followup question. If I understand this, what you outlined above will allow traffic external coming into the 6500/CSM to be forwarded thru to the REAL server IPs. If it wasn't clear, I was trying to ping from the native-mode 6500 that contains the CSM. I've tried regular and extended pings using the CSM-configured server VLAN's IP and alias IP, but get no response back from any of the REAL server IP addresses.
    Is what you've indicated required to ping even if I'm on the 6500 which contains the CSM?

  • Invalid server IP address for Remote Panels under LV 8.0.1

    The other messages for troubleshooting the "invalid server IP address" were very helpful with getting my EXE to operate as a remote panel.  But there is still one issue that I cannot resolve that seems to be caused by the 8.0.1 upgrade.
    The remote panel work perfectly using IE6 on a computer that has the LV 8.0.1 FDS or PDS installed.  When I use a computer that has LV 7.1 or no LV at all, the invalid server IP address appears inside the border of where the VI should appear on the HTML page.  The connection to the remote computer is correct, the HTML file is delivered by the web server in LV, but the panel part of the page returns the error. 
    Does the part of the HTML that loads the Run Time Engine need to be updated for 8.0.1?  Will the LV 8.0 RTE work for a remote panel on an EXE compiled for LV 8.0.1?
    The code is:
    var obj = '<OBJECT ID="LabVIEWControl" CLASSID="CLSID:A40B0AD4-B50E-4E58-8A1D-8544233807AD" WIDTH=1216 HEIGHT=915 CODEBASE="ftp://ftp.ni.com/support/labview/runtime/windows/8.0';
    if (lng.indexOf("fr") != -1) { obj = obj + '/French'; }
    else if (lng.indexOf("de") != -1) { obj = obj + '/German'; }
    else if (lng.indexOf("ja") != -1) { obj = obj + '/Japanese'; }
    obj = obj + '/LVRunTimeEng.exe">';
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

    Thanks for the suggestion, Tunde.  After further experimentation, it seems that 8.0.1 was not the problem.  I worked perfectly when I removed the <parameter server=...  > line that I added manually.
    Michael Munroe, ABCDEF
    Certified LabVIEW Developer, MCP
    Find and fix bad VI Properties with Property Inspector

  • Calendar server and address book server login fails with outlook connector

    Hi all,
    I have installed Java Communication Suite 5 according to the doc http://blogs.sun.com/factotum/resource/comms5-install-linux.html.
    When i deploy the connector i get the pop ups saying "Server:servername:3080
    Error:service not available" also
    "Server:servername:80/uwc"
    Error:service not available"
    asking to login to calendar server and address book server.Clicking "OK" allows install.
    In outlook i can send and receive mails but not the meeting requests.It gives the error "login to calendar server" when i create a meeting request.
    Please let me know what i have to do to get rid of the error.The username and passwd entered is correct.
    Regards,
    lmeenakshy

    Hi,
    When i deploy the connector i get the pop ups saying
    "Server:servername:3080
    Error:service not available" also Do you get exactly what you say above, or have you substituted in the real server name for "Server:servername:" above?
    I would check through the outlook connector deployment configuration to verify that you have inserted valid information into all of the host & port fields - perhaps check the .ini file that is created to see if it has "Server" and "servername" listed.
    "Server:servername:80/uwc"
    Error:service not available"You are able to log into UWC via the web-interface and access your calendar/pab and edit/modify/delete calendar & addressbook entries right? The services are all up?
    asking to login to calendar server and address book
    server.Clicking "OK" allows install.The outlook connector deployment software gives you the option to increase the logging level, try that and see what the logs say - what was it trying to connect to/check which failed.
    In outlook i can send and receive mails but not the
    meeting requests.It gives the error "login to
    calendar server" when i create a meeting request.
    Please let me know what i have to do to get rid of
    the error.The username and passwd entered is
    correct.I suspect this is more of an underlying configuration issue that needs to be sorted out, once that happens you shouldn't have to keep logging in.
    Regards,
    Shane.

  • How to retrieve the server IP address

    Hi Experts,
    In my scenario, if some problem occur, then the XSLT mapping sends a mail to some one,subject is 'PRD', if we execute this from production or quality or development server.
    But now i want to know this mail from which server, so i want to change the subject line as 'PRD' if it is only from production system otherwise 'OTH', how to achieve this ? No hard code allow at any where.
    I have one thought, if we find the server ip address then we can recognize, but how to get the server IP address ? Is it possible ?
    Thanks
    Ramesh

    Hi,
    My source is some WSDL file, this is more than 15000 characters so i am unable to send the full file.
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                   <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd" />
                   <xsd:element name="Pip3A4PurchaseOrderRequest" type="Pip3A4PurchaseOrderRequest" />
                   <xsd:complexType name="Pip3A4PurchaseOrderRequest">
                        <xsd:sequence>
                             <xsd:element name="fromRole" type="fromRole" />
                             <xsd:element name="GlobalDocumentFunctionCode" type="xsd:string" />
                             <xsd:element name="PurchaseOrder" type="PurchaseOrder" />
                             <xsd:element name="thisDocumentGenerationDateTime" type="thisDocumentGenerationDateTime" />
                             <xsd:element name="thisDocumentIdentifier" type="thisDocumentIdentifier" />
                             <xsd:element name="toRole" type="toRole" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="fromRole">
                        <xsd:sequence>
                             <xsd:element name="PartnerRoleDescription" type="PartnerRoleDescription" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="PartnerRoleDescription">
                        <xsd:sequence>
                             <xsd:element name="ContactInformation" type="ContactInformation" minOccurs="0" />
                             <xsd:element name="GlobalPartnerRoleClassificationCode" type="xsd:string" />
                             <xsd:element name="PartnerDescription" type="PartnerDescription" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="ContactInformation">
                        <xsd:sequence>
                             <xsd:element name="contactName" type="contactName" minOccurs="0" />
                             <xsd:element name="EmailAddress" type="xsd:string" minOccurs="0" />
                             <xsd:element name="facsimileNumber" type="facsimileNumber" minOccurs="0" />
                             <xsd:element name="telephoneNumber" type="telephoneNumber" minOccurs="0" />
                             <xsd:element name="PhysicalAddress" type="PhysicalAddress" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="contactName">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="FreeFormText">
                        <xsd:simpleContent>
                             <xsd:extension base="xsd:string">
                                  <xsd:attribute ref="xml:lang" />
                             </xsd:extension>
                        </xsd:simpleContent>
                   </xsd:complexType>
                   <xsd:complexType name="facsimileNumber">
                        <xsd:sequence>
                             <xsd:element name="CommunicationsNumber" type="xsd:string" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="telephoneNumber">
                        <xsd:sequence>
                             <xsd:element name="CommunicationsNumber" type="xsd:string" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="PartnerDescription">
                        <xsd:sequence>
                             <xsd:element name="BusinessDescription" type="BusinessDescription" />
                             <xsd:element name="GlobalPartnerClassificationCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="PhysicalAddress" type="PhysicalAddress" minOccurs="0" />
                             <xsd:element name="ContactInformation" type="ContactInformation" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="BusinessDescription">
                        <xsd:sequence>
                             <xsd:element name="GlobalBusinessIdentifier" type="xsd:string" minOccurs="0" />
                             <xsd:element name="GlobalSupplyChainCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="businessName" type="businessName" minOccurs="0" />
                             <xsd:element name="NationalBusinessTaxIdentifier" type="NationalBusinessTaxIdentifier" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="PurchaseOrder">
                        <xsd:sequence>
                             <xsd:element name="AccountDescription" type="AccountDescription" minOccurs="0" />
                             <xsd:element name="comments" type="comments" minOccurs="0" />
                             <xsd:element name="ContractInformation" type="ContractInformation" minOccurs="0" maxOccurs="unbounded" />
                             <xsd:element name="DocumentReference" type="DocumentReference" minOccurs="0" maxOccurs="unbounded" />
                             <xsd:element name="FinancingTerms" type="FinancingTerms" minOccurs="0" maxOccurs="unbounded" />
                             <xsd:element name="generalServicesAdministrationNumber" type="generalServicesAdministrationNumber" minOccurs="0" />
                             <xsd:element name="GlobalGovernmentPriorityRatingCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="GlobalPurchaseOrderFillPriorityCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="GlobalPurchaseOrderTypeCode" type="xsd:string" maxOccurs="unbounded" />
                             <xsd:element name="governmentContractIdentifier" type="governmentContractIdentifier" minOccurs="0" />
                             <xsd:element name="installAt" type="installAt" minOccurs="0" />
                             <xsd:element name="isDropShip" type="isDropShip" />
                             <xsd:element name="OrderShippingInformation" type="OrderShippingInformation" minOccurs="0" />
                             <xsd:element name="ProductLineItem" type="ProductLineItem" maxOccurs="unbounded" />
                             <xsd:element name="proprietaryInformation" type="proprietaryInformation" minOccurs="0" />
                             <xsd:element name="requestedEvent" type="requestedEvent" minOccurs="0" />
                             <xsd:element name="requestedShipFrom" type="requestedShipFrom" minOccurs="0" maxOccurs="unbounded" />
                             <xsd:element name="SecondaryBuyer" type="SecondaryBuyer" minOccurs="0" />
                             <xsd:element name="shipTo" type="shipTo" minOccurs="0" />
                             <xsd:element name="TaxExemptStatus" type="TaxExemptStatus" minOccurs="0" />
                             <xsd:element name="totalAmount" type="totalAmount" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="AccountDescription">
                        <xsd:sequence>
                             <xsd:element name="accountName" type="accountName" />
                             <xsd:element name="AccountNumber" type="xsd:string" minOccurs="0" />
                             <xsd:element name="billTo" type="billTo" minOccurs="0" />
                             <xsd:element name="CreditCard" type="CreditCard" minOccurs="0" />
                             <xsd:element name="financedBy" type="financedBy" minOccurs="0" />
                             <xsd:element name="GlobalAccountClassificationCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="prePaymentCheckNumber" type="prePaymentCheckNumber" minOccurs="0" />
                             <xsd:element name="WireTransferIdentifier" type="xsd:string" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="accountName">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="billTo">
                        <xsd:sequence>
                             <xsd:element name="PartnerRoleDescription" type="PartnerRoleDescription" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="PhysicalAddress">
                        <xsd:sequence>
                             <xsd:element name="addressLine1" type="addressLine1" minOccurs="0" />
                             <xsd:element name="addressLine2" type="addressLine2" minOccurs="0" />
                             <xsd:element name="addressLine3" type="addressLine3" minOccurs="0" />
                             <xsd:element name="cityName" type="cityName" minOccurs="0" />
                             <xsd:element name="GlobalCountryCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="GlobalLocationIdentifier" type="xsd:string" minOccurs="0" />
                             <xsd:element name="NationalPostalCode" type="xsd:string" minOccurs="0" />
                             <xsd:element name="postOfficeBoxIdentifier" type="postOfficeBoxIdentifier" minOccurs="0" />
                             <xsd:element name="regionName" type="regionName" minOccurs="0" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="addressLine1">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="addressLine2">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="addressLine3">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="cityName">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="postOfficeBoxIdentifier">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="regionName">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="businessName">
                        <xsd:sequence>
                             <xsd:element name="FreeFormText" type="FreeFormText" />
                        </xsd:sequence>
                   </xsd:complexType>
                   <xsd:complexType name="CreditCard">
                        <xsd:sequence>
                             <xsd:element name="cardHolderName" type="cardHolderName" />
                             <xsd:element name="creditCardIdentifier" type="creditCardIdentifier" />
                             <xsd:element name="expiryDate" type="expiryDate" />
                             <xsd:element name="GlobalCreditCardClassificationCode" type="xsd:string">

  • Do we require to install microsoft excel in sharepoint 2013 server?. if require to use sharepoint 2013 excel services.

    Do we require to install microsoft excel in sharepoint 2013 server?. if require to use sharepoint 2013 excel services.
    In our organisation, development team is asking to install office 2013 in SharePoint 2013 server to use different services, where as architecture team not allowing for the same. I need to provide proper justification for installing office 2013 in SharePoint
    2013 server. Please provide me the correct solution for the same.

    No, you do not need to install Office on the SharePoint server to utilize the Excel Services. Office should not be installed on the SharePoint server.
    Do they need Office Web Apps? Are they looking to have the capability to edit documents in the browser maybe? Or have document preview on search? Office Web Apps would be required for this, but this is a different product than Office.
    Brandon Atkinson
    Blog: http://sharepointbrandon.com

  • The server at Mac OS X Server Web Services requires a username and password

    I am running SL Server 10.6.2, wiki works but when a person clicks an attached file in a wiki and then selects "open" they get a login popup with the notification The server at Mac OS X Server Web Services requires a username and password. It doesn't matter what they put into the login/pass it comes back. If they hit cancel then the document opens. If they click save then it saves with no issue. I can type in the admin login/pass of the server and it works. Does this mean the security settings to the location of the files is wrong? Any help is greatly appreciated!

    By the way they are using Internet Explorer 7 when opening these documents.

  • Change of SAP Server IP Address

    Hi,
    We are using operating system win 2008 server (IP address: 192.168.50.1), In that we are accessing SAP ECC6.0 Server(IP address: 192.168.50.2)  and SAP Solution Manager server(192.168.50.3) through  HyperV Manager, both servers are installed in windows server 2003.
    Recently we are relocating our server.
    Now we are planning  to change IP address of servers according to our LAN.
    Like :
    win 2008 server IP address: 192.168.50.1 to  192.168.2.1
    win 2003 server( SAP ECC6.0) IP address 192.168.50.2 to 192.168.2.2
    win 2003 server( SAP Solution manager) IP address 192.168.50.3 to 192.168.2.3
    Please suggest me if any impacts while changing the IP Address.
    Regards,
    BBC  Achari

    Dear Achari,
    Check whether your machines are configured using hostnames not ip addresses.
    look in table rfcdes for sm59 RFC destinations and see if you need to change any ip to valid host names also look at  any scripts that may ftp files to your machine or so
    Also check profiles/scripts/./etc/hosts etc.
    Also check your transport management system, it always using hostname but check whether any IP address you have mentioned there.
    Except that there is no big risk in changing IP addresses.
    Hope this will help.
    Thanks
    Anil

  • The attempt to connect to the server (IP address) on port 443 failed - OLT

    Hi all
    I am facing one problem, if i run load to any application for 100 users for 1 iteration then it is not showing any error. Lets say i ran the load of 100 users for one hour then for some users there are errors like
    Line: (script.java:84)][ScriptException]: The attempt to connect to the server (IP address) on port 443 failed.
    And my understanding is the user's which are facing failures is not able to get response or page loaded at their end. As failures are occuring for some particular steps not the entire scenario. Pls confirm.
    Thanks

    I believe that's an indication that there is an error receiving mail, but if you have any drafts or email in your outgoing mailbox, try deleting them.  Apple's troubleshooting steps for this are (from http://support.apple.com/kb/TS4002):
    Cannot receive mail in OS X Mail
    If you use OS X Mail, look at the name of your iCloud account on the left side of the main Mail window. If your iCloud account name is dim and has a lightning bolt next to it, your account is offline. To resolve this, make sure your computer is connected to the Internet. Then choose Go Online from the Mailbox menu.
    If taking your iCloud account online doesn't resolve the issue, follow these steps:
    From the Mail menu, choose Preferences.
    In the Preferences window, click the Accounts tab if it is not already selected.
    In the Accounts list, select your iCloud email address.
    Click the Account Information tab.
    Verify your SMTP server settings with the following information:
    Incoming Mail Server: imap.mail.me.com
    User Name: Your iCloud email address
    Password: Your iCloud password
    Click the Advanced tab and verify the following additional settings:
    Port: 993
    Use Secure Sockets Layer (SSL): Should be enabled
    Authentication: Password

  • How to retrieve available (server)-IP addresses on a LAN

    Is there a method to get all/the available (server)-IP-address(es) on a LAN from the host program?
    As far as I understood the samples (e.g. in tcpex.llb) the host (or it's operator) has to know the IP-address of the server to start communication. However it would ease the usage of a host-program if all/the available server(s) could be selected e.g. from a list-box.
    I posted this question already yesterday with some additional explanations however couldn't find it in my "posted questions"-list. So I try again.

    You don't tell us enought about the type of "servers" you mean. Are these all LabVIEW programs? In this case it should be relatively easy for them to keep each other updated at regular interval, e.g. via UDP multicasts.
    Alternatively, your servers can announce themselves via a UDP packet to the subnet broadcast address and to a specific port.
    If these are servers with code not under your control, you need to probe them. This is not such a big deal on your private LAN and I don't think it will trigger IDS systems. Keep a short list of all possible server IPs, then try to connect at the specified port at regular intervals using a short timeout.
    Are you communicating with TCP or UDP?
    In the absence of firewall code, you can have 3 possible responses for TCP:
    (1) No response --> The server computer is down (or there is a stealth personal firewall running). You get a TCP timeout error.
    (2) Active rejections (TCP RST packet) --> The server computer is up, but the server program is not running. Nothing is listening on the target port. You'll get an error.
    (3) Accepted connection (SYN-ACK) packet. --> The server is up and listening for connections. The threeway handshake can be completed. No error.
    UDP is a bit trickier, because it is connectionless. Many UDP services are one-way. For example a syslog server just receives packets, it never acknowledges anything.
    It is easy to tell if the server computer is up, but the service is not listening. In this case you get an ICMP(3,3) response and an immediate error.
    If the service is listening, you either get nothing or a specific response, depending on the type of server. If you are waiting for return traffic, you'll get a timeout error in UDP read either way.
    (If you just want to check if the server computer is actually up, probe it on a unlikely high port that virtually guarantees an ICMP(3,3) response in the absence of a personal firewall program.)
    LabVIEW Champion . Do more with less code and in less time .

  • How to automatically detect server ip address

    does any one know how to automatically detect an ip address of a server from the client with a socket based connection ?
    instead of prompting the client to connect to the server ip address which is trouble some.

    You must start with some initial information and a known environment.
    There are several possibilities after that.
    - The server has a 'name'. This is not an ip address but a name like "yahoo.com". When you connect using that, even if the IP changes, the correct IP will be returned. (At least ignoring an annoying bug in some VMs)
    - A specific IP address
    - Use a methodoly to 'request' a server address. One version of this is to use a UDP broadcast another version uses a service manager (which itself must be found.)

Maybe you are looking for

  • ITunes importing

    I'm new user for iTunes and I have my song files into folders structure, how can I add/import them? It works as in iPhoto which create its own database so I can delete original file from folder or itunes creates link to song?!? How can I import songs

  • How to send an external mail(PDF) through SCOT

    Dear All,                  We have a requirement to mail customer invoice converting the smartform into a PDF. All the neccesary configuration that needs to be done in NACE and SPRO transactions has been done.Now when we issue the output through an o

  • Language display on itunes and i can't read spanish to change it!!! help

    this is my wifes computer and she put her old ipod on spanish. now have the computer but i away in hawaii at work and need to change my itunes page to english. i went to preferens and their is not even english spot. i can't read spanish but managed t

  • Locking files so they can be opened but not saved in a modified state on another machine

    I'm creating a batch of files for trainees in my work environment to help them learn an application.  I'm trying to lock the files so they always start out in the same state I left them in.  I want the students to be able to open the files, work in t

  • HT4623 Can't find Siri on my iOS

    Somehow I no longer have Siri on my iPad, help!