I can't connect to a certain server through my airport extreme

A couple of weeks ago, I noticed I could no longer connect to my websites, which are all on the same server.
I can see all other websites I've tried to visit.
It doesn't seem to be a server problem. Everyone else can see the sites fine.
If I connect my computer directly to my router, I can see the sites.
I've tried many computers and phones on my network, and none can see the sites.
Any Ideas?

My ISP is Time Warner Cable.
If I traceroute kalvan.net (one of my websites), I get:
traceroute to kalvan.net (72.52.151.201), 64 hops max, 52 byte packets
1  10.0.1.1 (10.0.1.1)  1.455 ms  1.170 ms  0.753 ms
2  user-10cm241.cable.mindspring.com (64.203.8.129)  35.231 ms  11.834 ms  13.975 ms
3  76.167.27.193 (76.167.27.193)  34.563 ms  11.825 ms  15.520 ms
4  agg11.vnnycajz01r.socal.rr.com (72.129.14.96)  12.418 ms  16.525 ms  22.996 ms
5  agg29.lsancarc01r.socal.rr.com (72.129.13.0)  14.835 ms  13.719 ms  20.857 ms
6  bu-ether26.lsancarc0yw-bcr00.tbone.rr.com (66.109.6.212)  16.578 ms  12.756 ms  15.067 ms
7  * 107.14.17.248 (107.14.17.248)  12.767 ms  23.991 ms
8  50-248-118-177-static.hfc.comcastbusiness.net (50.248.118.177)  13.727 ms  13.847 ms  16.533 ms
9  te-2-0-0-0-cr01.losangeles.ca.ibone.comcast.net (68.86.82.33)  18.490 ms
    te-2-0-0-13-cr01.losangeles.ca.ibone.comcast.net (68.86.84.161)  20.720 ms
    te-2-0-0-6-cr01.losangeles.ca.ibone.comcast.net (68.86.82.57)  15.689 ms
10  he-2-8-0-0-cr01.sanjose.ca.ibone.comcast.net (68.86.86.97)  30.465 ms  25.046 ms  24.117 ms
11  he-0-13-0-0-cr01.denverqwest.co.ibone.comcast.net (68.86.89.130)  60.354 ms  76.570 ms  61.537 ms
12  he-3-11-0-0-cr01.denver.co.ibone.comcast.net (68.86.89.29)  59.126 ms  57.527 ms  55.937 ms
13  he-5-7-0-0-cr01.350ecermak.il.ibone.comcast.net (68.86.86.109)  69.562 ms  67.496 ms  69.982 ms
14  hu-0-10-0-1.pe03.350ecermak.il.ibone.comcast.net (68.86.86.6)  64.994 ms  65.594 ms  68.749 ms
15  * 50.242.150.126 (50.242.150.126)  68.073 ms
    50.242.150.130 (50.242.150.130)  82.391 ms
16  lw-core5.rtr.liquidweb.com (209.59.157.244)  72.977 ms  70.951 ms  70.107 ms
17  69.167.128.241 (69.167.128.241)  70.520 ms  76.307 ms  72.934 ms
18  * * *
19  * * *
20  * * *
21  * * *
22  * * *
23  * * *
24  * * *
25  * * *
... (snip) ...
64  * * *

Similar Messages

  • Can't connect to local MySQL server through socket '/var/mysql/mysql.sock'

    I'm using the pre-installed versions of php and mysql under Mac OS X Server 10.4.4 running on a G4 and am unable to get anything involving mysql to work.
    I ssh to the server and enter various commands in Terminal:
    on typing "mysql" I get
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)
    and on typing "mysqladmin version" I get
    mysqladmin: connect to server at 'localhost' failed
    error: 'Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)'
    Check that mysqld is running and that the socket: '/var/mysql/mysql.sock' exists!
    On typing "sudo mysqld_safe" I get
    Starting mysqld daemon with databases from /var/mysql
    STOPPING server from pid file /var/mysql/MyServer.local.pid
    070722 16:06:05 mysqld ended
    /var/mysql/MyServer.local.err contains
    070722 16:06:04 mysqld started
    070722 16:06:04 [Warning] Setting lowercase_tablenames=2 because file system for /var/mysql/ is case insensitive
    070722 16:06:04 InnoDB: Database was not shut down normally!
    InnoDB: Starting crash recovery.
    InnoDB: Reading tablespace information from the .ibd files...
    InnoDB: Restoring possible half-written data pages from the doublewrite
    InnoDB: buffer...
    070722 16:06:05 InnoDB: Starting log scan based on checkpoint at
    InnoDB: log sequence number 0 43634.
    /var/mysql has permissions 775.
    The line
    mysql.default_socket = /var/mysql/mysql.sock
    is in /etc/php.ini
    whereis mysqladmin ->
    /usr/bin/mysqladmin
    whereis mysql ->
    /usr/bin/mysql
    ls /var/mysql ->
    MyServer.local.err
    ib_logfile1
    mysql
    ib_logfile0
    ibdata1
    test
    Can't find my.cnf or my.ini anywhere
    Can't find mysql.sock anywhere
    I'm trying to get a bug database running (mantis) under Mac OS X Server 10.4.4 that I can access from local clients.
    I'm trying to follow directions at http://www.mantisbugtracker.com/manual/manual.installation.php
    without knowing anything about mysql or php and I'm stuck on step 3:
    "Next we will create the necessary database tables and a basic configuration
    file."
    I get a message saying
    "Does administrative user have access to the database? ( Lost connection to MySQL server during query )"
    I don't even know if following the mantis directions has resulted in the creation of a database or not. Where would it be?
    Thanks for any help.
    Intel iMac   Mac OS X (10.4.10)  

    I've just done a clean install of OSX Server and added the latest MYSQL packaged installer. Afterwards I found the lock file in /private/tmp/mysql.lock
    The easiest way to solve this problem is to create a symbolic link so that the lock file appears to be in right place.
    e.g.
    cd /var
    sudo mkdir mysql <== this assumes the directory is missing
    cd mysql
    sudo ln -s /private/tmp/mysql.sock mysql.sock
    After this msql commands should work fine, and you've not fiddled with the security settings on users/groups.
    HTH
    Christian

  • "Can't connect to local MySQL server through socket '/tmp/mysql.sock'"

    Data Services=3.1
    Repository=12.2.2.0000
    Red Hat Enterprise 5
    Designer,Job Server,Job Engine=12.2.2.3
    After an unscheduled server reboot with DS up and running when trying to start a job in either Data Services Management Console or DS Designer getting the following:
    "Can't connect to local MySQL server through socket '/tmp/mysql.sock'"
    The mysql.sock have never been in /tmp and on the production server it does not exist there and the production server is up and running correctly. If a link is created to mysql.sock(/home/user/boedge31/bobje/mysql) the job will start but return this message: 
    "Cannot retrieve <Version> from the repository. Additional database information: <SQL submitted to ODBC data source <localrepo> resulted in error <MySQL ODBC 3.51 Driver mysqld-5.0.46-enterprise No database selected>. The SQL submitted is <select VERSION, SECURITYKEY, GUID from AL_VERSION where NAME = 'Repository Version'"
    I checked and AL_VERSION and the Version field exist. 
    Before the shut down DS was working correctly and had no issues.  My best guess is a part of the repository was corrupted during the unscheduled shut down.  It seems like DS has "forgotten" some of the settings.  
    Any suggestions on a possible solution?

    The issue has been solved. 
    There was a bad path in $LD_LIBRARY_PATH.
    Removed the path and DS started working again.

  • ./mysqlshow: Can't connect to local MySQL server through socket '/tmp/mysql

    hi all ,I install mysql on Solaris 10 at first it work fine , but after I restart my PC and go back again I got error on
    ./mysqlshow: Can't connect to local MySQL server through socket '/tmp/mysql
    I google , but still not sure how to deal with it
    Thank you

    I've just done a clean install of OSX Server and added the latest MYSQL packaged installer. Afterwards I found the lock file in /private/tmp/mysql.lock
    The easiest way to solve this problem is to create a symbolic link so that the lock file appears to be in right place.
    e.g.
    cd /var
    sudo mkdir mysql <== this assumes the directory is missing
    cd mysql
    sudo ln -s /private/tmp/mysql.sock mysql.sock
    After this msql commands should work fine, and you've not fiddled with the security settings on users/groups.
    HTH
    Christian

  • Can't connect to internet via MacBook Pro to Airport Extreme

    I can't connect to internet via MacBook Pro to Airport Extreme. I reset AE and modem (power down and back up again). Some computers on my home network will connect fine and others won't. The ones that won't don't populate the DNS server or the Search Domains. AE shows up on all the machines. I have one computer also connect to AE via ethernet and it has the same symptoms. Why do some Macs connect and others don't. Even when I get them to connect when I shutdown or put in sleep mode over night I lose the internet connection and have to start all over. Very frustrating.

    Regrettably no replies. I have struggled with this for days with no success and I have given up on the Airport Extreme. I have found several other Forum posts with very similar problems and no one seems to have a solution to this. It seems other wireless routers work better than the Apple product. I was able to get my old Linksys wireless router reset and it is set up and working well. The Linksys router does populate the DNS servers and domains where as the AE does not. Apple engineers should look into this. If I am mistaken and there is a fix for this someone please let me know, otherwise my AE will probably appear on Ebay very soon.

  • Can't connect to local MySQL server through socket '/tmp/mysql.sock' (46)

    I can't connect...I have th connection to the database form
    DW to the db....I can't get the server to connect. HELP!

    I've just done a clean install of OSX Server and added the latest MYSQL packaged installer. Afterwards I found the lock file in /private/tmp/mysql.lock
    The easiest way to solve this problem is to create a symbolic link so that the lock file appears to be in right place.
    e.g.
    cd /var
    sudo mkdir mysql <== this assumes the directory is missing
    cd mysql
    sudo ln -s /private/tmp/mysql.sock mysql.sock
    After this msql commands should work fine, and you've not fiddled with the security settings on users/groups.
    HTH
    Christian

  • Can I connect a Drobo or synology RAID to airport extreme to use as my time machine backup?

    I was wondering if there was any issue of using a raid box and connecting it via gigabit ethernet instead of USB? Would the airport extreme treat it the same way as with USB?

    There is a significant difference depending on the way the HDD is connected to the AirPort. When connected via the AirPort's USB port, the AirPort will perform as the file server. When connected via Ethernet or wireless, the HDD will perform this function.

  • How can i connect my Panasonic Viera Link TV with Airport Extreme?

    I use the Panasonic adaptor that came with my Blu-ray player. It worked with my Panasonic plasma TV when I used a NetGear router, but I recently changed to an Airport Extreme router and now neither the Blue-ray nor TV will connect. They find my network, but when I enter the password, after waiting a while, I get an error message that the network timed out. My iPad, iPhone, and MacBook Pro and MacAir all connect fine to this router from anywhere in the apartment. I am not using the wrong case when entering the letters of my password. It's exactly the same passsword that I enter on all my devices. Please help me connect the Panasonic TV to the Airport Extreme--I do NOT want to use ethernet. I want to use the wireless connection. Again--it worked fine withe the Netgear router, but does not connect wiht teh Airport Extreme.  Thanks!

    Checking the specifications of your camera, I see it as a Firewire out .
    DV:  4-pin, digital input/output, IEEE 1394 standard     (IEEE 1394 is Firewire)
    So you should be able to connect it to your Mini via the Firewire 800 port.
    You will need a Firewire 400 to Firewire 800 cable because the Firewire on the camera is a 400.
    But I couldn't fine any info that confirmed this model is compatible with iMovie if this is what you plan to use for editing.
    There is a work around but it is not very easy.
    Simplest way to import your videos is still Elgato video capture, but it will not give you the same quality as DV

  • How can you connect to MS SQL Server through Oracle 9i?

    i.e. we want to connect through a stored procedure and NOT a form. Our live DB is still in 9i.

    CKPT wrote:
    user12240205 wrote:
    i.e. we want to connect through a stored procedure and NOT a form. Our live DB is still in 9i.we want to connect through a stored procedure -- connect through stored procedire? i never heard. can you please post your views this information is not enough.CREATE PROCEDURE proc1 (p_sqlsever_credentials varchar2, p_status OUT boolean) IS
    BEGIN
    -- Connect to SQL Server using p_sqlsever_credentials
    -- Execute Stored Procedure (SP) in the SQL Server DB passing paras to it.
    -- If SP in SQL Server is successful then SP will COMMIT in SQL Server
    -- If failure it will be rolled back there.
    -- SP will return status
    -- Pass the status to the calling program
    END;
    /

  • ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock'

    PHP and Mysql aren't communicating on Mac OSX 10.4 and I
    tried changing the location for where PHP looks for the file, but I
    can't save in the etc folder. Help?

    D**iesel wrote:
    Apple made a presumption about MySQL and how it "should" be installed/configured.
    You mean correctly?
    Follow the instructions in this thread to properly configure PHP and MySQL on MacOS X: http://discussions.apple.com/thread.jspa?messageID=12229472&#12229472

  • MySQL problem -- ERROR 2002 Can't connect to local MySQL server

    Not Sure if this would be a right forum for my problem...
    I'm installing mySQL on my iBook, and thought that I have configured it. But then, after followring some instuctions from Adobe and Marc Liyanage sites, I have a problem to connect. This is what I've done in "TERMINAL"
    ~username$> cd /usr/local/mysql
    mysql ~username$> sudo chown -R mysql data/
    (asking for admin password)
    mysql ~username$> sudo echo
    mysql ~username$> sudo ./bin/mysqld_safe &
    username-ibook-g4:/usr/local/mysql username$ Starting mysqld daemon with databases from /usr/local/mysql/data
    STOPPING server from pid file /usr/local/mysql/data/roshaili-osmans-ibook-g4.local.pid
    060611 16:31:30 mysqld ended
    mysql ~username> /usr/local/mysql/bin/mysql test
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
    [1]+ Done sudo ./bin/mysqld_safe
    mysql ~username>
    When I typed ::
    /usr/local/mysql/bin/mysqladmin -u root
    (see that there's no password)
    Then it displays:
    /usr/local/mysql/bin/mysqladmin Ver 8.41 Distrib 5.0.22, for apple-darwin8.6.0 on powerpc
    Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
    This software comes with ABSOLUTELY NO WARRANTY. This is free software,
    and you are welcome to modify and redistribute it under the GPL license
    Administration program for the mysqld daemon.
    Usage: /usr/local/mysql/bin/mysqladmin [OPTIONS] command command....
    -c, --count=# Number of iterations to make. This works with -i
    (--sleep) only.
    ...... bla bla bla.....
    Variables (--variable-name=value)
    and boolean options {FALSE|TRUE} Value (after reading options)
    count 0
    force FALSE
    compress FALSE
    character-sets-dir (No default value)
    default-character-set (No default value)
    host (No default value)
    port 0
    .........bla bla....
    ping Check if mysqld is alive
    processlist Show list of active threads in server
    reload Reload grant tables
    refresh Flush all tables and close and open logfiles
    shutdown Take server down
    status Gives a short status message from the server
    start-slave Start slave
    stop-slave Stop slave
    variables Prints variables available
    version Get version info from server
    roshaili-osmans-ibook-g4:~ roshailiosman$ >
    -----------------finish-----------------
    Does that mean that I'm connected to mySQL?
    Does anybody how to connect to MYSQL from the terminal? Thanks.
    iMac Mac OS X (10.4.6)
    iMac   Mac OS X (10.4.6)  

    Your biggest 'issue' right now is that your mysqld process is stopping on you -- making a connection impossible.
    Why it's bombing might be in a log .. try in mysql/data/usr.local.err .. and fix why itsbombing.
    To connect to it it'll be : mysql -u root -ppassword -D database

  • Can't connect to a VPN server via Airport Extreme Base Station

    My husband is unable to connect to his employer's VPN server through our Airport Extreme when he uses his work PC at home. Strangely, when we had a Dell True Mobile wireless router this was not an issue. He could reach his VPN server via PC, AND our Mac wireless network also worked thru the Dell True Mobile. Is there any way to configure the AEBS to allow VPN connectivity? Do we need to switch to a different brand of wireless router? Please advise.
      Mac OS X (10.4.7)   Airport admin utilities 4.2

    First welcome to the discussions.
    To set up the client you'll first have to ask the Network Administrator for the name of the VPN server. The username and other details you will need to log on.
    You will also need to find out if the VPN uses PPTP or L2TP over IP Sec. with that information in hand open Internet connect in the Applications folder choose NEW VPN Connection then you click on either PPTP or L2TP whichever the network uses, then click continue in the confiquration pop up menu, Choose Edit confiqurations Then enter the information the Network administrator gave you.
    Bear in mind that the OSX client does not work with all VPN's.
    You may have to purchase a universal VPN client such as VPN Tracker from Equinux ($90.00).
    http://www.equinux.com
    Good Luck Don

  • How can I connect to a windows server from a mac book pro

    How can I connect to a windows server from a mac book pre?

    I have a Dell Power Edge T110 ii in the office that has files and software I need to access when away from the office, when I am on the road I use a mac book pro and an iPad.
    I am sorry if I am being a bit vague but this is all new to me, I have tried 3 IT guys but they can not find a way.
    Any help is greatly appeciated.

  • Can I connect to a windows server to veiw and download files to mark and return to server??

    Can I connect to a windows server to download and view files and return to server???

    I use the FTP on the Go Pro app to do just this. I don't know what kind of servers I connect to though but I've not had any problems connecting.
    I connect and select a file. I update the file, then tap save. The file is uploaded back to the server and the original version is ved just in case I might need it.

  • How can I connect to a UNIX server to execute a command?

    How can I connect to a UNIX server and execute a command using PowerShell? My shell script is sitting on one server, while the UNIX box is on another.
    also, I don't like the idea of hardcoding a username/password within the script file in order to do so.
    -Nothing to see. Move along.

    You will need a library to handle SSH connections.
    I'm using SSH.NET, you can find info on it here : http://www.powershelladmin.com/wiki/SSH_from_PowerShell_using_the_SSH.NET_library
    It has a bit of a learning curve but the web site has some fairly good tutorials.

Maybe you are looking for

  • Apple TV Inference with Time Capsule and Airport express?

    I have recently bought an Apple TV 2, which seem to be working fine, however since installing it on my wireless network both my Time Capsule and Airport Express can't be found. Following some fault finding it seems that when I unplug the Apple TV I c

  • Itunes update wont work with windows 8.1

    after i updated my laptop to windows 8.1 my itunes has been acting wacky. It only plays music and wont reconized or sync my iphone 4s anymore. Im not sure who to complain to because i updated both im not sure if its windows or itunes PLEASE help i ha

  • Regd SPAU and SPDD!!!

    Hi, I am involving in technical upgradation. I am getting the list of programs from my onsite persons and just correcting the programs and sending them the modified ones. But I want to know where exactly SPAU and SPDD transaction codes comes into pic

  • None of the Nik plugins would open after installing LR5.4

    I had LR 5.3 installed and I downloaded the LR5.4 update this afternoon on my Win 7 64 bit Desktop, and afterwards none of the Nik plugins would open and l got an AppCrash error.  I uninstalled my current version of Nik, rebooted and download again f

  • How to keep the selection as the old when I select one and click the submit

    maybe it is a HTML problem,but I still ask for help here! When I select one option in the form's element-select and submit it ,I want to keep the JSP page as old, but I can't .I also use cookie and bean.The problem is still being.