Unable to connect to a NAS running ext3 file format or any Windows Servers

I just purchased a new MacBook running 10.6.3. When first connecting to my NAS(last week), I had no issues connecting to my NAS server. I created an iSCSI drive for Time Machine, formatted for a MAC, no issues. In the last week something changed on my macbook that I can't connect to the NAS drive anymore. iSCSI is sill available. Also, I have an older MacBook(10.6.4) and MacPro (10.5.8) with issues connecting to my NAS drives.
What can i research on my new MacBook that is not allowing me to do this?
BTW, I am using QNAP 809 Pros NAS drive.
Thanks in advance.

I'm following up on my question. Still looking for help.

Similar Messages

  • When I wake my iMac from sleep, the wireless does not connect.  I have to shut shutdown and then restart and then it connects.  I am running Lion 10.7.3  Any thoughts?

    When I wake my iMac from sleep, the wireless does not connect.  I have to shut shutdown and then restart and then it connects.  I am running Lion 10.7.3  Any thoughts?

    Been waiting along time for this problem to be fixed. Unfortunately the update hasn't help at all and even made the situation worse. Now my airplay connection from iMac to stereo abruptly stops after about 10-15 min. so I have to go over and quit wifi, start it up and find my airport network. Not sure why it always has a problem with the apple airport network. My neighbor's pc network is always there.

  • Unable to connect to database when running from JDeveloper

    Hi all,
    When I open a report in Reports Builder , and enter the database connection parameters, everything works fine. When I run my web application from JDeveloper (9.0.5.1), and I tried to run a report, I get this error:
    Rep-501 : Unable to connect to the specified database.
    I have ran tnsping, and it works fine. My tnsnames.ora file looks like this :
    GPGWL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    (CONNECT_DATA =
    (SERVICE_NAME = GPGWL)
    )

    Hi,
    this question is best answered on the Reports forum
    Reports
    Frank

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • Unable to Connect to the database in RCU, Oracle11g XE on Laptop/Windows

    Software downloaded unzipped and installed from OTN
    OBIEE foundation 11.1.1.5
    Repository Creation Utility 11.1.1.5
    Oracle Database Express Edition 11.2
    Issues
    1. I installed Oracle 11g express edition. I am able to start/stop and run sql against the database however the homepage ("get started " accessed from Start > Programs > Oracle Database 11g XE > Get Started) does not work. This i will post in a separate thread but I am writing this anyway just in case it has some relevance.
    2, This is the one I need help with. Can you confirm that these are the parameters when I hit the "create" option in RCU because I get the error message saying I cannot connect.
    Hostname:This is the same as the hostname, when I go to cmd prompt like below
    C:>hostname<enter> That is what I am using.
    Port and Service :Can you confirm, Port = "1521" and Service = "XE". 1521 is the Database listener port when I installed Oracle 11g Database Express Edition. I am not putting the quotes in the boxes in the RCU.
    Should the service be OracleServiceXE - i have tried it but does not work.
    Anyway I get this message:
    Unable to connect to the database using the provided details.
    Please enter a valid hostname and port or check if the listener is up and running.
    Any ideas appreciated.
    By the way My lsnrctl status returns the following: (meaning the listeners are up!0
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\dir>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 13-MAR-2012 13:44
    :03
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date 13-MAR-2012 10:55:11
    Uptime 0 days 2 hr. 48 min. 51 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\11.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\diag\tnslsnr\myspecifichostname\listene
    r\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myspecifichostname)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myspecifichostname)(PORT=8080)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Edited by: ideakat on Mar 13, 2012 1:57 PM

    Hi,
    Like Abhi said, check your tnsnames.ora file to check the port number and service name is correct or not for the Express Edition database you have installed.
    and when you are running RCU installer, Please give system adminstrator account of OracleXE like 'sys' or 'system' account with confirmed port number and service name.
    Hope this helps.
    Regards,
    Bose
    Edited by: Bose on Mar 16, 2012 11:42 AM
    Edited by: Bose on Mar 16, 2012 5:35 PM

  • Unable to connect to internet or print wirelessly on Boot Camp with Windows 7

    I recently installed Boot Camp and Windows 7 on my Mac Book Pro with no problems.
    A month later, I am unable to connect to internet or print wirelessly.
    It states that I am connected to my router.
    When I trouble shoot, it cannot find the problem.
    My wireless connection and cable connection are fine on the MAC side.
    Please help.

    looks a like a Windows 7 problem. I assume that you can click on the current connection info on the task bar and see a connection to your wireless router?  Have you updated your copy of Windows since it was working? I am wondering if it's an update that's applied in Windows which has done something.

  • Unable to connect to my home PC from my home Mac using Windows Remote Desktop

    i have downloaded from the Microsoft website and also the Application from the App store and both fail to connect. i have connected to my PC using the migration assistant so they are able to recognise each other.
    on the Mac:
    - downloaded the app and also done the download from MS website - both fail and suggest to check that remote access is enabled.
    on the PC:
    - have my Ipaddress from "IPConfig"
    - have enabled remote access through windows firewall
    The PC is on and has a password enabled 
    Error on App:
    "Unable to connect to remote PC. Please verify remote desktop is enabled, the remote pc is turned on and available on the network and try again"
    both are connected to the internet and on the same home network. Can anyone please advise to any additional steps as this seems as though this should be really straightforward. as another note i don't have another firewall software interrupting - am just
    using windows firewall until i can get this working.

    Hi,
    Firstly, please refer to the article below to enable remote desktop connection on your Windows 7.
    Remote Desktop Connection: frequently asked questions
    http://windows.microsoft.com/en-us/windows/remote-desktop-connection-faq#1TC=windows-7
    On your Mac, you can download the app here.
    https://itunes.apple.com/hk/app/microsoft-remote-desktop/id715768417?mt=12
    More information:
    Getting Started with Remote Desktop Client on Mac
    http://technet.microsoft.com/library/dn473012
    Hope this helps.
    Jeremy Wu
    TechNet Community Support

  • I have updated to Firefox 6 and I cannot get it to make a connection. Error message "unable to connect". Google Chrome and IE work fine. Any thoughts?

    Problem loading page. Unable to connect. Suggests a firewall might not let Firefox access internet.

    See [http://support.mozilla.com/en-US/kb/Cannot+connect+after+upgrading+Firefox Cannot connect after upgrading Firefox]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • Unable to connect 8300 to laptop running Vista, as tethered modem

    Hi
    This is my first time so please excuse any naivety. I just taken delivery of my new Blackberry 8300 Curve and after some initial teething troubles all is well except that I cannot get it to work as a tethered modem. My laptop is running Vista Business and I've tried the fixes on 'crackberry' w/out success. I'm in the UK and my network provider is British Telecom and they are less than helpful. Any suggestions would be gratefully received.
    Regards
    Peter

    Hi,
    I also had a same issue,then i went with installing the service packs of blackberry desktop manager software to get connected with vista,it worked fine.
    Pls check

  • Unable to connect to Buffalo NAS Server from Lion iMac.

    Message is: The version of the server you are trying to connect to is not supported. Please contact your system administrator to resolve the problem.

    I have the same problem with my Conceptronic CH3HNAS and have found a free and easy solution.
    Since a lot of people report they are able to access their NAS using apps other than the Finder itself, I decided to look for a free Lion-compatible File Manager to use instead of Finder.
    I have found muCommander ( http://www.mucommander.com/ ) and indeed it works fine. All I did was click on the button highlighted bellow, go to "bonjour services" and select my NAS. It prompted me for my username and password and voilá, it works fine.
    I keep Finder for everyday use and just load muCommander when I want to access the NAS. At least now I don't have to start my WinXP VM anymore just to access it.
    Hope it helps you.

  • Unable to connect BBPB to laptop running windows 7 os

    Still, after months of trying, I cannot get my playbook to install on my computer. In properties it says that windows cannot load the drivers required for this device (code 31)
    Any one have a fix for this? I would like to get this big fella situated on my laptop. 
    Also, probably could save yourself some time by not writing that I should restart and redownload and all that **bleep** because it hasn't worked. Not trying to be rude, but this is my third attempt on these forums.
    Solved!
    Go to Solution.

    There is no driver needed for Windows 7 as the PB installs automatically when you connect the USB cable to the PC/Laptop. Have you tried other usb ports on the Laptop?
    The better alternative is to share the files on the PB and mapped the PB drive to your PC/Laptop over your WiFi network.
    Chech out the Help App in the PB for how to set this up.
    This method also prevents accidental damage to your PB's USB connector if you yanked the cable!
    DC-IT

  • Mac 10.5.8 unable to connect to Mac 10.4 for file sharing purpose

    I'm currently using Mac 10.5.8, when i tried to connect to my friend Mac 10.4. It just show connecting status only. My friend already turn on the file sharing. Firewall turn off. Restarted and tried again also no use. His machine able to connect to my machine for file sharing. Previously we able to do file sharing for both way, but now only one way work (his can connect to mine). This problem happen since 2 weeks ago.
    I will appreciate if any Mac expect can give me some ideal how to resolve this problem.
    Thanking you in advance.

    Are you doing this local or over the net(ports opened on router/modem?)? And try connecting by menu bar, Go, Network if you are currently trying by menu bar, Go, Connect to Server. And what does System log show by Console or Terminal. This is Leopard connecting by LAN to my Tiger machine:
    AFP_VFS afpfs_mount: /Volumes/dpp, pid 6533

  • Issues with NAS, iPhoto, RAW file format, AEBSn, Leopard

    I think I've isolated it down to a networking stack issue with Leopard, but I was hoping I could get some more thoughts/advice. I don't want to downgrade to Tiger, but I may need to! Either that or host my iPhoto library locally.
    Scenario:
    My iPhoto library was messed up. Some albums were missing and it couldn't seem to find them. Rebuilding my library was giving me errors. So, I decided to start fresh. I created a new library and began importing files. I noticed that my RAW (.CR2) files were showing glitches in them! These were major glitches, like big squares of blue or yellow and distorted pictures. I checked the original pictures, those were fine. I checked the pictures in my new iPhoto library, those files are corrupted! Not the thumbnails, but the files themselves. I opened the file in Photoshop to verify. Yup, busted.
    Attempted Solution:
    I tried downgrading to iPhoto 7.0 from 7.1.1, thinking that that might be the problem. Still having issues with the RAW files. Do I need to downgrade to iPhoto 6? I can't believe that's the answer. Even in iPhoto 7.0, the problem persists.
    Now here's the interesting thing: not all files are broken. Some files work, others don't. Some files are imported without glitches some of the time; reimporting them results in a glitch. That suggests to me that it's a networking problem.
    I'm using 802.11n to an AEBSn2 (gigabit), which has a ReadyNAS NV connected to it by gigabit ethernet. I don't think it's a hardware network thing since everything seemed to work in Tiger.. I think it's a way that Leopard handles the networking stack. Didn't they revise the underlying network stuff for Leopard?
    Help!

    Are you able to switch to 11g? I heard that helps for some people. I haven't tried it yet. Right now, I have about 7500 photos, so I want to copy everything and back it up. Once I get it backed up, I'm going to try other solutions, but it may be a few days before I get anything tested.

  • Run application or applet on any windows machine

    OK, here is my question. If I write a application using swing, and then build the application into jars, can I take that app and run it on any computer, or does any computer I run it on need the jdk installed on it. The reason I am asking this, is a am writing some simple software using swing as a GUI. I want other user's to be able just to copy this app from a disk, set it on their computer and run it. Will this work, are will it work if I use applets. Please let me know.

    what do you mean by make a webservice app or use webstart/jnlp

  • Unable to connect to network iphone update server

    I have an Iphone 4 that has been slow for a couple of days , today it started to open app different apps ( click on one and another opened) so i decided to restore and update it . Was running 4.3 . It never updated , has locked in recovery mode . when i try to restore i get a message that the iphone update server network unable to connect . I am running 10.5 itunes on a windows 7 . the iphone is visible in itunes , but when i check the diagnostic it said there is now iOS device connected . Is this a software issue or a hardware issue ? any help would be appreciated .

    VarinderSandhu wrote:
    Helios- Gunes EROL wrote:
    Hi Nasir;
    Please see below note which could be helpful for you:
    ORA-12560: TNS:PROTOCOL ADAPTER ERROR [ID 989716.1]can you pls share me link or url as u suggested above ...
    Regard
    HeliosRegards,
    Varinder SandhuIt's referring to a note in My Oracle Support (formerly known as MetaLink). You need to have a paid service contract with Oracle to access.

Maybe you are looking for

  • Good Video Card on a Budget?

    I'm interested in getting a new video card for my pc. Currently i'm using a nvideo geforce 7050 which is pretty good for a built-in card but i'd like to get something better. some games i play are only going at 10fps so iwas wondering if i could do a

  • Problem in picking base value from PO while doing goods receipt for multiple POs

    Hi, Our user is trying to post goods receipt for two purchase orders which have same vendor. After the materials of two POs are allocated in the item detail screen and checked the item ok, system throwing error as "Please check the base value of the

  • Logic 9 downloaded from app-store, crash at start over and over (Lion 10.7.2)

    I just bought a brand new iMac 21, installed with the latest OSX (10.7.2) I installed Logic Pro from the app-store and when launching Logic, it crashes over and over again. Sometimes it lets me see the Logic menue at the top left, but when clicking s

  • Generating next number from the SQL database using java

    Hi friends, I have a problem and need your help. I am working on a project about submitting claims form through the adobe PDF file and SQL database. I have problem working on a web service (written in java) that will generate the next Invoice Number

  • Why is my available hard disk space disappearing?

    Hi, Occasionally my hard disk space will start disappearing for no apparent (to me) reason.  I'll have 15 gigs of available hard disk space that will disappear, and I'll get messages that I'm running out of disk space, interfering with what I'm doing