Crashed connection blocks connections from other pools

Setup:
WLS 8.1.0.0 with 2-node cluster
Sybase: 12.0 and 12.5
jConnect 5.5 (EBF11248)
Java HotSpot(TM) Client VM Version 1.4.2-b28
I have two databases (DB1 & DB2) and two connection pools (P1 & P2), each pointing
to a corresponding DB. The pools are created at WLS startup.
Later on, say, DB1 is disconnected (crashed or lost network connectivity). We
found that all connections, whether to DB1 or DB2, becomes extremely slow (on
the order of 10+ mins) to obtain. The stack dumps (see following example) indicate
the crashed one (Thread-36) was stuck at a socket connection and all the others
(for DB2/P2) were waiting for the lock (0xf26b1958) during DriverManager.getConnection
(eg. Thread-153).
While searching at BEA, I noticed a fix CR125320 for 8.1 sp2 that seems to be
relevant but I'm not sure that's the exact fix. That fix specifically mentions
JTSConnection.doClose() but our dump doesn't show that.
Please help.
Thanks,
Bill
"Thread-36" daemon prio=5 tid=0x00da23a8 nid=0x8a runnable [5e97f000..5e9819a0]
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
- locked <0x82db64c0> (a java.net.PlainSocketImpl)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:452)
at java.net.Socket.connect(Socket.java:402)
at java.net.Socket.<init>(Socket.java:309)
at java.net.Socket.<init>(Socket.java:124)
at com.sybase.jdbc2.timedio.RawDbio.doConnect(RawDbio.java:88)
at com.sybase.jdbc2.timedio.InStreamMgr.<init>(InStreamMgr.java:94)
at com.sybase.jdbc2.tds.Tds.login(Tds.java:375)
at com.sybase.jdbc2.jdbc.SybConnection.tryLogin(SybConnection.java:221)
at com.sybase.jdbc2.jdbc.SybConnection.regularConnect(SybConnection.java:198)
at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:177)
at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:129)
at com.sybase.jdbc2.jdbc.SybDriver.connect(SybDriver.java:179)
at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:175)
at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:111)
at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1092)
at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1029)
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:320)
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:253)
at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.java:339)
at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(ConnectionPoolManager.java:78)
at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(ConnectionPoolManager.java:85)
at weblogic.jdbc.pool.Driver.connect(Driver.java:144)
at java.sql.DriverManager.getConnection(DriverManager.java:512)
- locked <0xf26b1958> (a java.lang.Class)
at java.sql.DriverManager.getConnection(DriverManager.java:193)
- locked <0xf26b1958> (a java.lang.Class)
"Thread-153" daemon prio=5 tid=0x00c46280 nid=0xff waiting for monitor entry [57480000..574819a0]
at java.sql.DriverManager.getConnection(DriverManager.java:187)
- waiting to lock <0xf26b1958> (a java.lang.Class)

For the crashed DB, when one tries to get a connection, it gets stuck on a socket
connection. This means all subsequent requsts will all take a long time to just
come out and say it didn't work.
"Slava Imeshev" <[email protected]> wrote:
"Bill" <[email protected]> wrote in message news:[email protected]...
Thanks, Slava. You are right - getConnection is "public static synchronizedConnection
getConnection(String url)". However, how would one reduce the timeouton the socket
read on the crashed DB?I'd fix this problem first. In case of failure you serialize recreation
of the
connections. Depending on number of concurrent requests the process
of recovery can be noticeably lengthy. Fix it and re-do the test.
Regards,
Slava Imeshev
"Slava Imeshev" <[email protected]> wrote:
Don't use DriverManager to obtain connections. DriverManager contains
a lot class-level synchronization and is not recommended for use in
J2EE
environment. The best option is using DataSource obtained via a JNDI
lookup.
Or, use
Driver driver = ((Driver)Class.forName("my.driver")).newInstance();
Properties props = new Properties();
Connection conn = driver.connect(url, props);
Regards,
Slava Imeshev
"Bill" <[email protected]> wrote in message news:[email protected]...
Setup:
WLS 8.1.0.0 with 2-node cluster
Sybase: 12.0 and 12.5
jConnect 5.5 (EBF11248)
Java HotSpot(TM) Client VM Version 1.4.2-b28
I have two databases (DB1 & DB2) and two connection pools (P1 &
P2),
each pointing
to a corresponding DB. The pools are created at WLS startup.
Later on, say, DB1 is disconnected (crashed or lost network connectivity).We
found that all connections, whether to DB1 or DB2, becomes extremelyslow (on
the order of 10+ mins) to obtain. The stack dumps (see following
example)
indicate
the crashed one (Thread-36) was stuck at a socket connection and
all
the others
(for DB2/P2) were waiting for the lock (0xf26b1958) during DriverManager.getConnection
(eg. Thread-153).
While searching at BEA, I noticed a fix CR125320 for 8.1 sp2 that
seems
to be
relevant but I'm not sure that's the exact fix. That fix specificallymentions
JTSConnection.doClose() but our dump doesn't show that.
Please help.
Thanks,
Bill
"Thread-36" daemon prio=5 tid=0x00da23a8 nid=0x8a runnable [5e97f000..5e9819a0]
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
- locked <0x82db64c0> (a java.net.PlainSocketImpl)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
at java.net.Socket.connect(Socket.java:452)
at java.net.Socket.connect(Socket.java:402)
at java.net.Socket.<init>(Socket.java:309)
at java.net.Socket.<init>(Socket.java:124)
at com.sybase.jdbc2.timedio.RawDbio.doConnect(RawDbio.java:88)
at com.sybase.jdbc2.timedio.InStreamMgr.<init>(InStreamMgr.java:94)
at com.sybase.jdbc2.tds.Tds.login(Tds.java:375)
at com.sybase.jdbc2.jdbc.SybConnection.tryLogin(SybConnection.java:221)
at com.sybase.jdbc2.jdbc.SybConnection.regularConnect(SybConnection.java:198)
at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:177)
at com.sybase.jdbc2.jdbc.SybConnection.<init>(SybConnection.java:129)
at com.sybase.jdbc2.jdbc.SybDriver.connect(SybDriver.java:179)
at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:175)
at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:111)
at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1092)
at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1029)
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:320)
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResource(ResourcePoolImpl.java:253)
at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.java:339)
at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(ConnectionPoolManager.java:78)
at weblogic.jdbc.common.internal.ConnectionPoolManager.reserve(ConnectionPoolManager.java:85)
at weblogic.jdbc.pool.Driver.connect(Driver.java:144)
at java.sql.DriverManager.getConnection(DriverManager.java:512)
- locked <0xf26b1958> (a java.lang.Class)
at java.sql.DriverManager.getConnection(DriverManager.java:193)
- locked <0xf26b1958> (a java.lang.Class)
"Thread-153" daemon prio=5 tid=0x00c46280 nid=0xff waiting for monitorentry [57480000..574819a0]
at java.sql.DriverManager.getConnection(DriverManager.java:187)
- waiting to lock <0xf26b1958> (a java.lang.Class)

Similar Messages

  • ResourceException: Access not allowed (when trying to grab a connection from weblogic pool)

    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries to grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);
    Thanks in advance.

    Hi Jung,
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Do you know how to change security setting on the connection pool?
    Thanks.WebConsole:
    1.Compatibility Security => ACLs
    Create a new ACL,
    name : weblogic.jdbc.connectionPool.yourPoolname
    permission : reserve, reset
    group : everynone
    2.Services => JDBC => Connection Pool
    Create a new Connection Pool
    ACL Name : weblogic.jdbc.connectionPool.yourPoolname
    In 'Target' tab, choose server and click the Apply button
    Slava
    >
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    Hi Jung,
    Could you try providing weblogic user name and password
    in the properties?
    Could you also check security setting of the connection pool?
    Regards,
    Slava Imeshev
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Well that is exactly what I am doing. The variable dbName is database
    connection pool name that I created in weblogic console. Again, it
    worked
    in WLS6 but after migration, it stopped working.
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    In my code I am supplying name of the connection pool already
    created
    in
    weblogic server. I am asking you to get connection from the pool
    using
    pool
    driver.
    In your case you are trying to create connection straight to
    database
    using pool
    driver.
    What I am asking is pass name of the connection pool instead of
    database
    name.
    Thanks,
    Mitesh
    Jung Yang wrote:
    What would be the difference between your code and mine? Mine
    simple
    appends dbName string value for connection pool name at the end of
    "jdbc:weblogic:pool:"? And why same exact code would work in WLS6and
    not
    work in WLS7?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);Instead of doing this what if you use
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool", null);
    Will you please try this and see if that helps?
    Mitesh
    Jung Yang wrote:
    Isn't that exactly what I posted for my code piece?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    Try As described below:
    The following example demonstrates how to use a database
    connection
    pool
    from a servlet.
    Load the pool driver and cast it to java.sql.Driver. The
    full
    pathname
    of
    the driver is weblogic.jdbc.pool.Driver. For example:
    Driver myDriver = (Driver)
    Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Create a connection using the URL for the driver, plus
    (optionally)
    the
    name of the registered connection pool. The URL of the pool
    driver
    is
    jdbc:weblogic:pool.
    You can identify the pool in either of two ways:
    Specify the name of the connection pool in a
    java.util.Properties
    object
    using the key connectionPoolID. For example:
    Properties props = new
    Properties();props.put("connectionPoolID",
    "myConnectionPool");Connection conn =
    myDriver.connect("jdbc:weblogic:pool", props);
    Add the name of the pool to the end of the URL. In this case
    you
    do
    not
    need a Properties object unless you are setting a username
    and
    password
    for using a connection from the pool. For example:
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool",
    null);
    Note that the Driver.connect() method is used in theseexamples
    instead of
    the DriverManger.getConnection() method. Although you may
    use
    DriverManger.getConnection() to obtain a databaseconnection,
    we
    recommend
    that you use Driver.connect() because this method is not
    synchronized
    and
    provides better performance.
    Note that the Connection returned by connect() is an
    instance
    of
    weblogic.jdbc.pool.Connection.
    Call the close() method on the Connection object when youfinish
    with
    your
    JDBC calls, so that the connection is properly returned to
    the
    pool. A
    good coding practice is to create the connection in a try
    block
    and
    then
    close the connection in a finally block, to make sure the
    connection
    is
    closed in all cases.
    conn.close();
    Mitesh
    Jung Yang wrote:
    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries
    to
    grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at
    weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn =
    driver.connect("jdbc:weblogic:pool:"
    +
    dbName,
    null);
    >>>>>>>>>
    Thanks in advance.

  • SharePoint - Error_1_Error occurred in deployment step 'Add Solution': Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was rea

    Hi,
    I am Shanmugavel, SharePoint developer, 
    I am facing the below SharePoint 2013 deployment issue while deploying using VS2012.
    If i will deploy the same wsp or existing wsp
    (last build) using direct powershell deployment, the solution adding properly, but the same timeout exception coming while activation the features.  Please find the below error.
    I tried the below activists:
    1. Restarted my dev server, DB server. 
    2. tried the same solution id different server
    3. tried existing wsp file (last build version)
    4. Deactivated all the features, including project Active deployment configuration.... but still i am facing the same issue.
    I hope this is not coding level issue, because still my code is not start running, before that some problem coming.
    Please help me any one.....  Last two days i am struck because of this...

    What you need to understand is the installation of a WSP does not do much. It just makes sure that you relevant solution files are deployed to the SharePoint farm.
    Next comes the point when you activate the features. It is when the code which you have written to "Activate" certain features for your custom solution.
    Regarding the error you are getting, it typically means that you have more connections (default is I guess 100) open for a SQL database then you are allowed to.
    If you have a custom database and you are opening a connection, make sure you close it as well.
    Look at the similar discussion here:
    The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool
    size was reached[^]
    I would suggest further to look at the
    ULS logs[^] to get better insight.
    Manas Bhardwaj's Stream : www.manasbhardwaj.net

  • I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do?

    I can't connect to Wi-Fi - keeps timing out. No problem connecting from other laptops / phones. Stopped working after I did a system upgrade. What can I do? I am on OS X Yosemite.

    Take each of the following steps that you haven't already tried, until the problem is resolved. Some of these steps are only possible if you have control over the wireless router.
    Step 1
    Turn Wi-Fi off and back on.
    Step 2
    Restart the router and the computer. Many problems are solved that way.
    Step 3
    Change the name of the wireless network, if applicable, to eliminate any characters other than letters and digits. You do that on your router via its web page, if it's not an Apple device, or via AirPort Utility, if it is an Apple device.
    Step 4
    Run the Network Diagnostics assistant.
    Step 5
    In OS X 10.8.4 or later, run Wireless Diagnostics and fix the issues listed in the Summary, if any.
    Step 6
    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Enter the name of your wireless network in the search box. You should have one or more "AirPort network password" items with that name. Make a note of the name and password, then delete all the items. Quit Keychain Access. Turn Wi-Fi off and then back on. Reconnect to the network.
    Step 7
    You may need to change other settings on the router. See the guidelines linked below:
    Recommended settings for Wi-Fi routers and access points
    Potential sources of interference
    Step 8
    Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    Step 9
    Reset the System Management Controller (SMC).

  • Since upgrading, both our wireless printers are still visible, but OSX will not connect with them.  Both work via connecting from other sources via the same wireless router (airport).  What do I need to do to get my printing/scanning working again?

    Since upgrading, both our wireless printers are still visible, but OSX will not connect with them.  Both work via connecting from other sources via the same wireless router (airport).  What do I need to do to get my printing/scanning working again?

    First thing to try is reset Printing System:
    OS X Mavericks: Reset the printing system
    Next would be reset the router (power off 15 secs then back on). And, 2 minutes later, reset the printers 1 by 1.

  • Connections from other applications.

    Hello,
    Is there any parameter we can set to control the number of connections from an external application. I am using J2EE application server connection pool to connect to Oracle from Java. In Applciation server setting we can configure the number of connections in a pool.
    Is there some parameter some thing like this in the Oracle database to control the number incoming connections?
    Thanx in Adv,
    Potluri

    Hi RavensFan,
    I'm using a 21CFRPart11 compliant SQL-based user permission rights database access tool (DataTrak), which is a legacy ActiveX control from this project's previous releases. Unfortunately the company that make it are long gone, but I'm stuck with it - no choice, no support.
    I've been tracking the problem down, and although the problem only occurs when I call up the ActiveX component then exit, it also seems that the problem goes away if I remove my .NET marquee-style progress bar from a seperate subvi. Confusing, but the system is stable with one or the other, but exits with a crash when both are included the executable!
    Given the ActiveX control is a requirement, and my marquee progress bar is a niceity, it looks like the progress bar will have to go...
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • How to Destory connections from the Pool?

    Hi,
    I would like to know if it is possible to destroy/refresh a connection id from the DBPool using just a javacode that either refresh the whole pool or just one specific connection.
    We are using a DB cluster environment and once one of the Database Servers goes down, the connection continues to point to the old DB Server. We are testing if the connection is still pointing to a valid DBServer (using a simple <i>select getdate()</i> statement (the DBMS is SQLServer 2000). The problem is that even if we close the connection object in the JavaCode, the physical connection still points to the old DB IP address, and we want to kill that connection from the DBPool.
    We know that once the connection id is destoyed(using the DESTROY_CONN command of the J2EE engine), a new connection is created for the right DB Server.
    We are using the following versio of EP:
    6.0.2.37.0.Enterprise_Portal_Support_Package_2
    Thanks.

    Hi,
    There is no difference in calling a transaction from module pool and report . The statement
    Call transaction tranaction name works similarly in both the cases . The only thing you need to take care is your program flow in Module pool.
    For calling transaction set the parameters of the transaction and on using the call transaction statement it will call the transaction withe the set values. use skip initial screen option to execute it from your program. This entire code needs to be written in PAI event where you will be handling your OK codes.
    Hope this helps.

  • Connecting from other machine

    I have installed Oracle XE 11.2 on a windows 2008 server. I am unable to connect to this database from a client machine. Tried simple connection from SQL developer, and TNS from sql plus. I am getting the following error:
    Status : Failure -Test failed: IO Error: The Network Adapter could not establish the connection
    I have the listener on port 1526 and Application express on 9093. I am able to connect to APEX from the client machines with no issues. Its the database I am unable to connect. I can connect to the database from the host machine (server) but not from any clients.
    Please help / advice....
    Edited by: johnj2 on May 31, 2013 6:33 AM

    Could be the firewall blocking 1526, if its an actual network error. Is there a TNS error number?
    Maybe -12505 listener does not currently know of SID ... or -12514 listener does not currently know of service requested ... ? If the database listener is not on the default 1521 port the local_listener parameter should be set to point the instance at the listener. On the database host make sure the database service has registered, should have both the "xe" and "xexdb" services showing in a lsnrctl services listing.
    If the apex web page is working for remote clients, but not database connects, still could be a firewall block.
    The telnet utility can reveal if a port is blocked, in a command box try `telnet <host> 1526` from any remote host. If the port isn't blocked it should behave like a command box lockup. Then again, if the client is win 8, may not even have telnet, its optional.

  • Form Builder Connectivity from other database

    Could anyone please guide me in detail to connect Oracle Forms 9i/10g with MS SQL Server database?
    Also how do we connect with other databases like SQL Server, MS Access, and so on?
    Thanks in advance.
    Edited by: user10876897 on Apr 13, 2009 10:08 PM

    create an odbc for oracle and connect form to any database through odbc using
    userid/passwd and database as odbc:dsnname

  • IMessage is blocking texts from other iphone users

    I am not able to send or receive texts from other iphone users because of imessage.  I am ready to quit Apple and ATT because of it.  Both my wife and the manager of my business can no longer contact me because of the bugs in iMessage.  I don't care whether the message shows up as blue or green, I simply want to send or receive them.  First, their numbers only showed up as phone numbers instead of contacts.  Then I added them as Iphone users and now I can't send or receive messages with them.  I've tried deleting and adding and then deleting their numbers.  Rebooting works for a bit.  If they don't fix this bug, I'm quitting iPhone.  Seriously. 

    If you'd like to calm down and actually ask a coherent question, we'll consider it.
    Since you don't actually make any attempt to describe what the circumstances are or what happens when you try to send or when someone sends you a message, we can't offer much assistance.

  • Personal File Sharing Turns off after an attempt to connect from other comp

    I have personal file sharing turned on on my MacBook and when I attempt to connect to it from my iMac I get a typical logon windows and extended delay and then the message that the Server Connection was Interrupted. When I check Personal File Sharing on the MacBook it has been turned off even though I have locked the settings.
    The problem exist whether I use my local Wireless LAN (Apple-N) or an ethernet connection. In both cases the MacBook the ethernet connection is with the a port on the Apple N wireless LAN

    It may be solved for you, but I just discovered that since upgrading to 10.4.11 I can no longer connect to any of my other Macs. When I click on network NOTHING shows up in the Finder.
    While I'm happy to grab random code posted by an unknown person and stick it in my system, I shouldn't have to. Clearly Whatever the update did to your Mac it did to my MacBook as well and most likely others. If this is the official fix for the problem, Apple needs to acknowledge it and offer a link to the file rather than relying on fix-it forums to solve their problems.
    Apple seriously needs to test these updates a little more thoroughly before they make them available. I KNOW you are supposed to back everything up before you do it, yada, yada, yada ... but Apple has basically made the Software update feature an automatic function as if it is the best thing for your computer ... clearly that is not always the case.

  • Airport express - have signal, can't connect from other computers

    i'm not the most computer savvy, so i apologize if i don't know all the terminology. i'll try to explain my problem as best i can...
    i have airport express. i'm using it as a base station in my father's office and then attempting to connect wirelessly with my laptop and my brother's laptop. i know the internet itself works because my mother's computer, which connects via ethernet, has internet access. my dad's computer, which is, i guess, the airport administrator station, has internet. his wireless signal is, obviously, fine.
    for some reason, though, i cannot connect to the internet on either my laptop or my brother's. both computers have strong wireless signals and SAY they are connected, but when i open safari, i can't connect. i've tried EVERYTHING -- reread the apple support stuff about 100 times. i thought maybe there was a PPPoeP issue, but that doesn't seem to be it... i've done a hard reset of the airport express and that doesn't fix it... i've checked all the network configurations and they seem to be fine... the IP addresses on both laptops begin with "10.0.1."something, which seems to be right... i'm stumped.
    my best guess is that there must be settings on my dad's computer that don't recognize the laptops trying to connect.
    if anybody has any advice, it would be greatly appreciated. if you have any particular places on the apple support page that you think i should look at, just post the link. thanks in advance.
    p.s. my dad's computer runs 10.4.5, my brother's laptop same, and my laptop 10.2.6, if that makes any difference.

    one more thing... my laptop definitely has the capacity to connect wirelessly, as i use it at work with no problem... it just automatically connects to the strongest signal. basically, everything looks right, it shows a strong signal and says i'm connected to the network, but then i can't get online.

  • Connecting from other environments

    Hello,
    i know it may not be an appropriate question for the forum but thought worth a try.
    One of my colleagues is attempting to connect to the Oracle database through their Lotus Notes environment. My Oracle database is Oracle 9i and he is using Lotus Notes 6.5. We have found some reference and help material but none seem to connect properly. We have managed a connection thorugh a command line interface on the Lotus Notes server by tweaking a TNSNAMES.ora service name but the Notes environment itself doesn't like to work the same way.
    Does anyone maybe have any ideas???
    Also does nayone have a reference to a complete guide to the TNSNAMES file
    Thanks in advance.

    Reference documentation for tnsnames.ora:
    http://download-uk.oracle.com/docs/cd/B10501_01/network.920/a96581/tnsnames.htm#496765

  • Block access from other subnets 2921 router

    Good day,
    I have a 2921 router...
    I got many subnets on network.. What I want to do is block access to one of my networks and allow all other subnets to browse the web.
    I have;
    192.168.4.0/24
    10.20.50.0/24
    10.20.40.0/24
    10.20.30.0/24
    10.20.60.0/24
    I want to block access to 10.20.60.0 from all other networks while allowing them to access the internet

    If what "Jon" said is correct you could do something like the following.
    ip access-list extended VLAN20_ACL
    deny ip 10.20.50.0 0.0.0.255 10.20.60.0 0.0.0.255
    permit ip any any
    ip access-list extended VLAN20_ACL
    deny ip 10.20.40.0 0.0.0.255 10.20.60.0 0.0.0.255
    permit ip any any
    ip access-list extended VLAN20_ACL
    deny ip 10.20.30.0 0.0.0.255 10.20.60.0 0.0.0.255
    permit ip any any
    ip access-list extended VLAN20_ACL
    deny ip 192.168.4.0 0.0.0.255 10.20.60.0 0.0.0.255
    permit ip any any
    int vlan 20
      access-group in VLAN20_ACL
    int vlan 30
      access-group in VLAN30_ACL
    Now technically, 10.20.60.0/24 could still get to the other subnets, but the return traffic would be blocked.
    And you could always change the permit ip any any to just HTTP traffic, etc. Depends on what you want to do.
    Although it might be a better idea to configure ACLs on the firewall. It would be easier to manage that way. If traffic has to go up to the ASA to get back to the other subnets.

  • Many Applications Crashing On Startup - fine from other account

    Just got a problem where many of my apps won't open, they crash with some kind of data access type failure - nothing consistent though.
    Console won't run, neither will Activity Monitor, Disk utility, Ableton Live, Quicktime etc.
    I created another account and logged into that and Quicktime, Disk utility worked fine.
    So its looking like a software issue - can anyone point me in the right direction? Thanks.

    Since the issue is specific to your original user account, you can proceed in two ways. One is to log into your new account, make a list of the preference files (plists) located in /username/Library/Preferences/, including any in the ByHost subfolder, log back into the original account, move everything on that other account's list from the original account's Preferences folder into a newly created folder on the Desktop, log out and back in, and see if the problem goes away. If so, you can copy the ones in the Desktop folder (one at time) back into /Preferences/, restart, and see if the problem returns. If so, you've identified the corrupt/conflicting one. Continue with all of them until isolating the bad ones. That'll save you the trouble of resetting preferences.
    The second way is much more detailed and I'll not burden you with the steps unless the above doesn't fix the issue.

Maybe you are looking for

  • Problem with console in Oracle VM Manager

    I have installed Oracle VM 3.0.3 and Oracle VM Manager 3.0.3 is install on Oracle LINUX 5.6. I cannot get the console to work from either the Oracle VM Manager server itself using firefox or remotely from Windows running IE or Chrome. After looking a

  • HTML Help viewer crashes.

    The Problem: After making some modifications to a working RH HTML file a crash occurs when trying to view a compiled .chm file. The Clues: - It doesn't occur right away, but after clicking on a couple links. - Sometimes the ".. tell Microsoft about t

  • Error message when we do search for claim in Isupplier

    Help Me. GET ERROR PAGE WHEN DO SEARCH FOR CLAIM IN PERSONNALIZATION OF Isupplier Error Page Exception Details. oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT x

  • How to play sound file in Forms 9i  using  PJC.

    Hi , I want to play a sound file in Forms 9i over the web using "Pluggable Java Component". Any pointers / help in this regard will be highly appreciated. Thanks in Advance, Vinod.

  • SBS 2008 - SBS Console and AD errors after migration to new hardware

    Hi there, I'm trying to work out how to fix some of the errors and random behaviour I'm experiencing with the SBS 2008 console and AD related matters since I had to quickly migrate SBS 2008 to new hardware using Windows Server Backup after a failure