Setting up a cluster for the first time: newbie questions

Any help appreciated with this situation:
          I'm trying to set up a cluster for the first time and running into
          issues (no big surprise). I'll outline my situation and pose questions
          as they arise. If/when I get things to work I'll post a step-by-step
          summary of what it took to get a simple cluster going.
          Here's what I have:
          machines:
          1 Windows 2000 machines with WL 6.1
          2 RedHat Linux machines with WL 6.1
          All machines are on the same Home LAN, can see each other, etc.
          IP addresses are:
          Windows box: 192.168.1.100
          Linux box 1: 192.168.1.102
          Linux box 2: 192.168.1.103
          servers:
          I've set up the Windows machine as my admin server, and set up
          a managed server on each Linux machine. I created a cluster that consists
          of the 2 Linux machines and deployed the web app and EJB to the cluster.
          The Windows machine is acting as a Proxy using ClusterServlet.
          The web application has been set as the Default Web Application on the
          two Linux machines. All 3 machines are listening on ports 80/443. I also
          set up session memory replication through the console.
          Application:
          I have an application that I package as an EAR file. I'm using it as a
          "reference" application designed to mimic a real world app as much as possible.
          The EAR file contains a web application that uses Struts. It also consists
          of a single Stateless Session Bean. The WAR file and EJB Jar are all
          packaged up into the EAR file. I've been able to run this application just
          fine on a single managed server on all 3 machines.
          The web application works fine, and it can invoke the EJB. I can also
          invoke the EJB from Java stand-alone clients. Struts works great. All is
          well with the world. Now I'm trying to "cluster-ize" this app using
          the environment described above and encountering issues.
          I've read the docs and followed the instructions according to the
          "Weblogic Bible" book. I can bring up all 3 servers and the Linux
          managed servers connect to the cluster just fine. I can also
          see the Struts messages in their logs which normally happens and tells me
          the webapp is initialized properly. The console tells me that the managed
          servers are running. I get no error messages starting up any of the serves.
          Here are the problems I am encountering.
          When I try to access the Web Application (through a browser on the
          Windows machine using http://localhost) I get the following error message:
          <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
          x,admin) found no context for "/". This request does not match the context path
          for any installed web applications and there is no default web application confi
          gured.>
          Also, when I try to invoke the EJB through a stand-alone Java client,
          I get a JNDI lookup error on the EJB's home interface.
          Questions:
          Question1: I noticed when setting up the machines that console lets you
          define a "Machine" or a "Unix Machine". What's the difference? Should I
          define the Linux machines as Unix machines or machines, and what are the
          consequences of either choice?
          Question2:
          I'm not totally clear on how my web.xml should look to set up Struts,
          the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
          Here is what I had before I tried to cluster and which works fine:
          <filter>
          <filter-name>MainFilter</filter-name>
          <filter-class>com.refapp.servlets.MainFilter</filter-class>
          <init-param>
          <param-name>myAttribute</param-name>
          <param-value>Foo</param-value>
          </init-param>
          </filter>
          <filter-mapping>
          <filter-name>MainFilter</filter-name>
          <url-pattern>/*</url-pattern>
          </filter-mapping
          <!-- Struts ActionServlet Configuration -->
          <servlet>
          <servlet-name>action</servlet-name>
          <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
          <init-param>
          <param-name>application</param-name>
          <param-value>refappstruts</param-value>
          </init-param>
          <init-param>
          <param-name>config</param-name>
          <param-value>/WEB-INF/struts-config.xml</param-value>
          </init-param>
          <init-param>
          <param-name>debug</param-name>
          <param-value>2</param-value>
          </init-param>
          <init-param>
          <param-name>mapping</param-name>
          <param-value>org.apache.struts.action.RequestActionMapping</param-value>
          </init-param>
          <load-on-startup>2</load-on-startup>
          </servlet>
          <servlet-mapping>
          <servlet-name>action</servlet-name>
          <url-pattern>*.do</url-pattern>
          </servlet-mapping>
          <welcome-file-list>
          <welcome-file>index.do</welcome-file>
          <welcome-file>index.jsp</welcome-file>
          <welcome-file>index.html</welcome-file>
          </welcome-file-list>
          (I have set up a "dummy" 0-length file called index.do that triggers
          Struts to go into its ActionServlet when first accessing the web site).
          Here is how I added ClusterServlet to web.xml:
          servlet>
          <servlet-name>ClusterServlet</servlet-name>
          <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
          <load-on-startup>0</load-on-startup>
          <init-param>
          <param-name>defaultServers</param-name>
          <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
          </init-param>
          <init-param>
          <param-name>DebugConfigInfo</param-name>
          <param-value>ON</param-value>
          </init-param>
          </servlet>
          <servlet-mapping>
          <servlet-name>InitServlet</servlet-name>
          <url-pattern>/servlet/InitServlet</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
          <servlet-name>action</servlet-name>
          <url-pattern>*.do</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
          <servlet-name>ClusterServlet</servlet-name>
          <url-pattern>/</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
          <servlet-name>ClusterServlet</servlet-name>
          <url-pattern>*.html</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
          <servlet-name>ClusterServlet</servlet-name>
          <url-pattern>*.jsp</url-pattern>
          </servlet-mapping>
          <servlet-mapping>
          <servlet-name>ClusterServlet</servlet-name>
          <url-pattern>*.do</url-pattern>
          </servlet-mapping>
          Clearly there is a problem with the Default Web application not being
          seen/mapped properly. Any chances my URL mappings for the filter servlet,
          Struts, and ClusterServlet are stepping on each other?
          With respect to the EJB, here is what my weblogic-ejb-jar looks like:
          <weblogic-ejb-jar>
          <weblogic-enterprise-bean>
          <ejb-name>Hello</ejb-name>
          <stateless-session-descriptor>
          <pool>
               <max-beans-in-free-pool>100</max-beans-in-free-pool>
          </pool>
          <stateless-clustering>
          <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
          <stateless-bean-load-algorithm>
          round-robin
          </stateless-bean-load-algorithm>
          <stateless-bean-methods-are-idempotent>
          true
          </stateless-bean-methods-are-idempotent>
          </stateless-clustering>
          </stateless-session-descriptor>
          <jndi-name>Hello.Home</jndi-name>
          </weblogic-enterprise-bean>
          I run this through ejbc and package everything up into the EAR file.
          However, I get a JNDI lookup failure when I try to access the Bean from
          a standalone Java client running on the Windows machine.
          Here is the jndi.properties file that I am using:
          java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
          java.naming.provider.url=t3://localhost:80
          Any ideas what I'm doing wrong here? I can post config.xml also if needed.
          Thanks in advance!
          

Let me try to answer :)....
          A1> No need to name diff machines by default weblogic
          considers the servers are physically located in diff boxes.
          The names are used to differtiate the mang servers which are in
          multihomed
          Some things to chk
          1> Did u targeted the ear file Target as cluster.
          2> Can u see on the Admin console that both the man servers
          are participated in the cluster( u can see by clicking the monitoring
          tab on the Cluster node).
          3>Is the URL:PORT for the default web app correct?
          the reason: is I dont see the port# on the link u mentioned
          4> probably ur ejb might not been deployed on the target thats the
          reason u cant access thru java client. If u correct the targets that
          will probably fix it.
          Hope this helps
          Please post the result
          Thanks
          Sudhir
          [email protected] (Chris) wrote in message news:<[email protected]>...
          > Any help appreciated with this situation:
          > I'm trying to set up a cluster for the first time and running into
          > issues (no big surprise). I'll outline my situation and pose questions
          > as they arise. If/when I get things to work I'll post a step-by-step
          > summary of what it took to get a simple cluster going.
          > Here's what I have:
          >
          > machines:
          > 1 Windows 2000 machines with WL 6.1
          > 2 RedHat Linux machines with WL 6.1
          > All machines are on the same Home LAN, can see each other, etc.
          > IP addresses are:
          > Windows box: 192.168.1.100
          > Linux box 1: 192.168.1.102
          > Linux box 2: 192.168.1.103
          >
          > servers:
          > I've set up the Windows machine as my admin server, and set up
          > a managed server on each Linux machine. I created a cluster that consists
          > of the 2 Linux machines and deployed the web app and EJB to the cluster.
          > The Windows machine is acting as a Proxy using ClusterServlet.
          > The web application has been set as the Default Web Application on the
          > two Linux machines. All 3 machines are listening on ports 80/443. I also
          > set up session memory replication through the console.
          >
          > Application:
          > I have an application that I package as an EAR file. I'm using it as a
          > "reference" application designed to mimic a real world app as much as possible.
          > The EAR file contains a web application that uses Struts. It also consists
          > of a single Stateless Session Bean. The WAR file and EJB Jar are all
          > packaged up into the EAR file. I've been able to run this application just
          > fine on a single managed server on all 3 machines.
          > The web application works fine, and it can invoke the EJB. I can also
          > invoke the EJB from Java stand-alone clients. Struts works great. All is
          > well with the world. Now I'm trying to "cluster-ize" this app using
          > the environment described above and encountering issues.
          >
          > I've read the docs and followed the instructions according to the
          > "Weblogic Bible" book. I can bring up all 3 servers and the Linux
          > managed servers connect to the cluster just fine. I can also
          > see the Struts messages in their logs which normally happens and tells me
          > the webapp is initialized properly. The console tells me that the managed
          > servers are running. I get no error messages starting up any of the serves.
          >
          > Here are the problems I am encountering.
          >
          > When I try to access the Web Application (through a browser on the
          > Windows machine using http://localhost) I get the following error message:
          >
          > <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
          > x,admin) found no context for "/". This request does not match the context path
          > for any installed web applications and there is no default web application confi
          > gured.>
          >
          > Also, when I try to invoke the EJB through a stand-alone Java client,
          > I get a JNDI lookup error on the EJB's home interface.
          >
          > Questions:
          > Question1: I noticed when setting up the machines that console lets you
          > define a "Machine" or a "Unix Machine". What's the difference? Should I
          > define the Linux machines as Unix machines or machines, and what are the
          > consequences of either choice?
          >
          > Question2:
          > I'm not totally clear on how my web.xml should look to set up Struts,
          > the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
          > Here is what I had before I tried to cluster and which works fine:
          >
          > <filter>
          > <filter-name>MainFilter</filter-name>
          > <filter-class>com.refapp.servlets.MainFilter</filter-class>
          > <init-param>
          > <param-name>myAttribute</param-name>
          > <param-value>Foo</param-value>
          > </init-param>
          > </filter>
          >
          > <filter-mapping>
          > <filter-name>MainFilter</filter-name>
          > <url-pattern>/*</url-pattern>
          > </filter-mapping
          >
          >
          > <!-- Struts ActionServlet Configuration -->
          > <servlet>
          > <servlet-name>action</servlet-name>
          > <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
          >
          > <init-param>
          > <param-name>application</param-name>
          > <param-value>refappstruts</param-value>
          > </init-param>
          >
          > <init-param>
          > <param-name>config</param-name>
          > <param-value>/WEB-INF/struts-config.xml</param-value>
          > </init-param>
          >
          > <init-param>
          > <param-name>debug</param-name>
          > <param-value>2</param-value>
          > </init-param>
          >
          > <init-param>
          > <param-name>mapping</param-name>
          > <param-value>org.apache.struts.action.RequestActionMapping</param-value>
          > </init-param>
          > <load-on-startup>2</load-on-startup>
          > </servlet>
          >
          > <servlet-mapping>
          > <servlet-name>action</servlet-name>
          > <url-pattern>*.do</url-pattern>
          > </servlet-mapping>
          >
          > <welcome-file-list>
          > <welcome-file>index.do</welcome-file>
          > <welcome-file>index.jsp</welcome-file>
          > <welcome-file>index.html</welcome-file>
          > </welcome-file-list>
          >
          > (I have set up a "dummy" 0-length file called index.do that triggers
          > Struts to go into its ActionServlet when first accessing the web site).
          >
          > Here is how I added ClusterServlet to web.xml:
          >
          > servlet>
          > <servlet-name>ClusterServlet</servlet-name>
          > <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
          > <load-on-startup>0</load-on-startup>
          > <init-param>
          > <param-name>defaultServers</param-name>
          > <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
          > </init-param>
          > <init-param>
          > <param-name>DebugConfigInfo</param-name>
          > <param-value>ON</param-value>
          > </init-param>
          > </servlet>
          >
          > <servlet-mapping>
          > <servlet-name>InitServlet</servlet-name>
          > <url-pattern>/servlet/InitServlet</url-pattern>
          > </servlet-mapping>
          >
          > <servlet-mapping>
          > <servlet-name>action</servlet-name>
          > <url-pattern>*.do</url-pattern>
          > </servlet-mapping>
          >
          > <servlet-mapping>
          > <servlet-name>ClusterServlet</servlet-name>
          > <url-pattern>/</url-pattern>
          > </servlet-mapping>
          >
          > <servlet-mapping>
          > <servlet-name>ClusterServlet</servlet-name>
          > <url-pattern>*.html</url-pattern>
          > </servlet-mapping>
          >
          > <servlet-mapping>
          > <servlet-name>ClusterServlet</servlet-name>
          > <url-pattern>*.jsp</url-pattern>
          > </servlet-mapping>
          >
          > <servlet-mapping>
          > <servlet-name>ClusterServlet</servlet-name>
          > <url-pattern>*.do</url-pattern>
          > </servlet-mapping>
          >
          >
          > Clearly there is a problem with the Default Web application not being
          > seen/mapped properly. Any chances my URL mappings for the filter servlet,
          > Struts, and ClusterServlet are stepping on each other?
          >
          > With respect to the EJB, here is what my weblogic-ejb-jar looks like:
          >
          > <weblogic-ejb-jar>
          > <weblogic-enterprise-bean>
          > <ejb-name>Hello</ejb-name>
          > <stateless-session-descriptor>
          > <pool>
          >      <max-beans-in-free-pool>100</max-beans-in-free-pool>
          > </pool>
          > <stateless-clustering>
          > <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
          > <stateless-bean-load-algorithm>
          > round-robin
          > </stateless-bean-load-algorithm>
          > <stateless-bean-methods-are-idempotent>
          > true
          > </stateless-bean-methods-are-idempotent>
          > </stateless-clustering>
          > </stateless-session-descriptor>
          > <jndi-name>Hello.Home</jndi-name>
          > </weblogic-enterprise-bean>
          >
          > I run this through ejbc and package everything up into the EAR file.
          > However, I get a JNDI lookup failure when I try to access the Bean from
          > a standalone Java client running on the Windows machine.
          > Here is the jndi.properties file that I am using:
          >
          > java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
          > java.naming.provider.url=t3://localhost:80
          >
          > Any ideas what I'm doing wrong here? I can post config.xml also if needed.
          >
          > Thanks in advance!
          

Similar Messages

  • TS1702 I am setting my ipad up for the first time and the onscreen instructions do not appear

    I am setting up an ipad for the first time and the online instructiuons don';t show up in itunes

    No.

  • Making a purchase for the first time, security questions are different to what I've set up?

    Hello,
    My friend has recently gifted me a $10 for my app store. After redeeming it, it says I have $10.00 Credit, which I assume is a good thing. Now, with this money he has sent me, I am trying to buy a Gem Pack in the game 'Clash Of Clans', this costs $9.99.
    I click purchase and it tells me "Insufficient Remaining Store Credit" where it also says "Tap Continue to Sign In". After typing my password in, I am led to the account billing settings where I've got the 'none' option selected as I have not put any credit card details which shouldn't be a problem as I'm trying to buy with the money my friend has given me.
    I click the 'done' button where it then tells me "confirmation required" where I then click 'buy', but then it comes up with "Verification Required".
    Putting in my password once again, it asks me for security questions. Here lies the problem. It usually asks me one question I know, and another that I haven't put in before. Usually "What's your dream job?" comes which I've put the answer to as this is a question I know. But, after it usually asks me either "What was your first pet's name?" which is a question I haven't put before.
    I've tried going to appleid.apple.com and changing and resetting my security questions multiple times, even to match the questions that are asked and it gives me the same result.
    "You've typed one or more security questions answers wrong".
    Please help, this is getting on my nerves. If this persists, I'm afraid I won't be buying from iTunes much.
    Cheers,
    Jack.

    After resetting your questions you've tried logging out (tap on your id in Settings > iTunes & App Store) and back into your account on your iPad to see if they then tie up ?
    If they don't, and resetting them yourself doesn't make any difference, then you could try contacting Support and see if they can help with what's going on.
    Normally when needing to contact support to get the questions reset you need to contact Support in your country : http://support.apple.com/kb/HT5699
    You could try the same contact method for your problem - or you could try contacting iTunes Support via this page, but as it's related to security questions they might just point you to the above : http://www.apple.com/support/itunes/contact/ , click on Contact iTunes Store Support on the right-hand side of the page
    For the $9.99 purchase and your $10 credit, if you are in the US then you need to add on your state's sales tax to an item's listed price

  • How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.

    How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.
    When Charter Tech goes to your site, have them connect the modem up, but do not connect the modem to your iMAC or MacBook Pro.  What you want to do is connect the Airport Extreme to the iMac or MacBook Pro first with the Ethernet Cable. You have to do this to configure via Airport Utility to set up the Base Station Name & Base Station Password.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple Tv, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.
    WHAT TO DO IF YOUR AIRPORT EXTREME WAS PREVIOUSLY SET UP FOR USE WITH ANOTHER CARRIERS ROUTER OR MODEM.
    NOTE:  If you already had your Airport Extreme connected for example, I previously had ATT Uverse and the Airport Extreme was connected to the Wireless Router Model 3801HGV, I disabled the Uverse Wireless and used the Airport Extreme for the Wireless signal in bridge mode, as the Airport extreme Signal is much stronger than the Uverse router, and I was able to obtain a Wireless signal with the Airport Extreme way much better with no signal loss which was very very frustrating with the Uverse router.
    Anyhow if you had it hooked up like this, now that you will be using it with the Charter ARRIS Modem TM902A, you will need to reset the Airport Extreme to clear out the old data it has in memory, with the previous set up otherwise it will not work. Trust me I spent 6 hours trying to make it work reading all Apple Support Community questions and answers relating to this type issue/problem others have been having trying to get their set up working. I tried all the tips, and I finally decided just to see if by chance I would be able to connect with someone with Charter Tech support who might be familiar with Apple to be able to assist me and by luck I did.  He told me why it was not working and was all due the previous configuration with the ATT Uverse router was still in memory with the Airport Extreme. Finally it was 10:30 PM when I decided to call Charter Tech Support and I had been working on this since 3:00 pm pacific. I did not call them earlier as all the post I read said they never received any good help from Charter. After calling them I finished up by 11:00 PM and was able to finally connect Apple Tv, iMac, iPhones and Macbook Pro. We love our Apple Product and Happy all is connected with the new
    Internet Provider Charter. I must say the speed is way way much better than it ever was with AT&T Uverse. 
    THIS IS WHAT YOU WILL NEED TO DO:
    First you will need to unplug the Airport Extreme, then by taking the tip of a pen or paper clip end you need to push the reset button on the back of the Airport Extreme and hold it
    down and at the same time plug the power cord back into the Airport Extreme count to 5 or 10 then release the reset button. Then once he light in front of the Airport Extreme stops blinking you need to plug the Ethernet cable from the Airport Extreme to your iMAC or Macbook Pro, and restart which ever one you have, then open the Airport Utility once it is back up.  If you see airport extreme pop up with the old network name or it shows and yellow triangle click on the Airport Extreme ICON it will not let you configure it but will ask if you want to get rid of it or remove and just do it.  Then Again restart your iMAC or MacBook Pro, open up Airport Utility again, and on the top left you should see under “Other Airport Base Stations” the MAC ID for the Airport Extreme.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple TV, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.

    I just got a Charter Modem. Model TM822. While I was moving, my Airport Extreme was still at my old place.
    I have a Linksys WRT320N I used for the initial Charter setup.
    I can get my Airport to work here, but the Internet light on the Modem flashes Yellow.
    Hasn't caused any issues so far but one thing I did notice.
    On the Linksys there were 3 DNS servers listed.
    The Airport Extreme only lists 2 and i don't see where I could add another, only change whats already there.
    I tried everything above, but light on modem still flashes yellow.
    I have the technicians cell phone. Told me "that shouldn't be" and gave the same advice listed above.
    I'll break down and call Charter one day, see if it's on their end. NSA tracking may need a reset LMAO.

  • I have bought an iPhone4 and to be able to use it for the first time I connected into a friends itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?

    I have bought an iPhone4 and to be able to use it for the first time I connected into a friends' itunes. Now when I want to buy itunes stuff on the phone it asks me her password. How can I set up again my itunes account?
    Now I also have a macbook where I can sync my iphone but it doesn't allow me

    first of all only sync it with 1 computers itune account
    second settings->general->store click the appleID box with her appleID in it and log out

  • When using my new US ipad for the first time my computer switched it to an Australian format (where we used to live) How do I set the default to all US settings on all of my iproducts? I set them individually but when they sync with my comp they b/c AU

    When syncing my iPad for the first time to my iTunes (which was in Australia at one time but no longer) my iPad defaulted to the Australian format for phone numbers and each contact listed was now an Australian address. My iTunes is set to the USA. How/Where do I change the setting? It also changes the default to Australia on each of my iTouches and iPhones.
    Thanks!

    thanks for the help

  • HT1222 My phone is telling me about a Software Update but for the first time it is asking me for a passcode, I have never set up a passcode and do not know how to get around this to do the upgrade?

    My phone is telling me about a Software Update 7.1.1 but for the first time it is asking me for a passcode, I have never set up a passcode and do not know how to get around this to do the upgrade?

    See if this helps:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212

  • When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    Go to Settings>General>Passcode Lock>tap Turn Passcode Lock Off, enter your "pin".
    Edit:  Are you saying you are getting a prompt for your email pin, or are you talking about the passcode lock that appears when you turn the phone on?

  • I'm setting up my Time Capsule for the first time and cannot get an internet connection throughWAN connection

    I'm setting up my Time Capsule for the first time and can't get an internet connection via ethernet cord

    So new AC model TC??
    What modem is it? Pure cable modem .. did you power cycle the modem ( OFF for at least 30min..)??
    This is essential to lose the old setup and start afresh. 
    How have you setup the TC?
    Did you try just bridge to existing router? If it doesn't get an IP and you just bought it, possible it is faulty.
    Lots more details.. really important things like did the ethernet connectivity leds go on.. both the TC port and the modem port - front ethernet indicator should light up..

  • Does Resetting Internet Explorer Maintenance settings from GPO will also remove the proxy set in IE by a third party tool when the GPO refreshes for the first time

    Hi,
    We have two GPO's with IE maintenance (Preference Mode Configured)
    The settings it has are
    1. Automatically detect configuration settings - Set to Enabled.
    2. Automatic Browser configuration - Not configured.
    We do not have proxy value set in IE through this GPO.
    We have proxy set in IE through a third party tool (TPT) which updates the proxy at logon event 5 and 10.
    Does Resetting Internet Explorer Maintenance settings from these GPO's also clear proxy set in IE by third party tool after the first GPO refresh. 
    I am sure the second time when the GP refreshes, the client won't find any IEM settings and hence there is no question of the proxy set in IE by TPT to erase. It is only the first time of the GPO refresh that I am concerned about.
    Can someone please guide as I am planning to do the same in our production and concerned about the downtime caused due to the proxy being removed if at all for the first time.

    It will disable the proxy server option in Internet Options (untick the box), but will still store your proxy details.
    Thanks
    Ryan

  • Setting up a Time Capsule for the first time and replacing it with an existing Router

    Hey there,
    I have got a new TC which I will be setting it up for the first time. I have a very old beetle router. I would be using the TC as a wireless hard drive and also as my WiFi Router. After reading the setup guide, I am confused about which option to choose. Moreover, available references on the internet do not provide any clear-cut solution.
    My basic aim is to replace my router with the TC and use its in-built WiFi hardware. Since I have an EPSON printer which is connected to my router wirelessly, I am not willing to change its settings. Please guide me which option to choose regarding the same.
    Thanks in advance

    Since you have a modem/router, you must continue to use the Beetel modem/router on your network.
    The Time Capsule can connect to the Beetel modem/router using a wired Ethernet cable connection and produce a separate wireless network.  You would NOT want the Beetel router and Time Capsule to both try to produce the same wireless network if they are located close together, since this will likely create interference problems that may prevent devices from connecting to either the Beetel orTime Capsule wireless network.
    The exception to having the Beetel modem/router and Time Capsule produce the same wireless network would be if you can locate the Time Capsule at least a room or two away from the Beetel modem/router.  An Ethernet cable can be run up to 300+ feet or about 100 meters with no signal loss, so you should be able to locate the Time Capsule anywhere you want.
    Are you able to consider this option?
    Another option.....if you cannot locate the Time Capsule in another room......would be to configure the Time Capsule to use the same wireless network name and password as the Beetel network and turn off the wireless on Bettel modem/router.
    Important.....there is no guarantee that the printer will be able to connect to the Time Capsule wireless network, so you should expect to start over and set up the printer again.
    Yet another option would be to turn off the wireless service on the Time Capsule and use the Beetel wireless to back up your computers to the Time Capsule, which will act as a wired hard drive for the network. If you select this option, the Time Capsule can be located close to the Beetel modem/router.

  • I am using an airport express to stream from iTunes to my stereo.  My router is a net gear type G.  Setting up is no problem for the first time.  But, when I close iTunes then restart I have to reset (using the reset button)and reset up.  Wanna do it one?

    Using a. Airport express to stream from iTunes.  My Router is a Netgear type G.  The express sets up fine and works the first time.  When I try to use it at a later date after closing then reopening iTunes I have to physically reset the express and then go through the process of finding it again.  Is this normal? 

    I have a 3rd generation (802.11n capable, 2.4Ghz only) airport express, my problem is that I've tried using it to extend my network and that brick wall, no matter how close I get the express to the room, the signal and throughput in that room becomes abysmal.
    As you might imagine, brick is a lot like cement, and it will not allow much of the wireless signal through.
    Regarding your Express, there is no such thing as a 3rd Generation model....yet. You likely have a 1st Generation AirPort Express. Check and confirm the Model No on the side of the Express. A 1st Gen model is A1264.
    Here's my problem, I don't think the express supports "extending" a network from a wired network jack.
    The Express can "extend" wirelessly, or using an Ethernet connection. The configuration for this is very simple, but post back if you need it.
    The jack just seems to be shut off
    Have you temporarily turned off the wireless on a laptop and tried to connect it using an Ethernet cable to the wall jack as a "test"?
    If you can get a good Internet connection this way, then you know the Ethernet cabling and jack are working correctly.
    On the other hand, if you cannot get an Internet connection on the laptop during this "test", then this indicates that the Ethernet cable or jack is not functioning correctly and the wiring will need troubleshooting before you can proceed any further.
    I need to create a whole new wireless network in this room for this configuration to work?
    AirPort Setup will take care of this for you automatically during the configuration of the AirPort Express.
    If I have an apple TV connecting to the express and an AppleTV connecting to the extreme, will they both be visible when connected wirelessly to either network?
    Yes
    Will I be able to connect to my network seemlessly?
    Yes
    Post back after you have confirmed that the Ethernet cable and Ethernet jack are functioning correctly in the temporary "test" mentioned above.  Then, we will continue.

  • In setting up for the first time, the appletv will not let me submit my password

    I am setting up appletv for the first time.  After entering my password, I try to submit and it does nothing.  Do I use the center select button for the submit?

    Meredith199,
    does your MacBook Pro have an Eject key (⏏) in the top-right corner of the keyboard? If so, does pressing Control-⏏ show a restart/sleep/shutdown dialog box?
    If you press Shift-⌘Q, does your MacBook Pro recognize that as an attempt to log out?

  • HT1145 I am setting up my Time Capsule for the first time, all of my connections are right but, AirPort is not recognizing the Time Capsule or my network!

    I am setting up my Time Capsule for the first time, all of my connectiions are correct but, AirPort Utility is not recognizing my Time Capsule or my network?

    Try connecting your iMac to the Time Capsule with an Ethernet cable to see if that allows AirPort Utility to "see" it.

  • I was setting up my IPod Nano 7 for the first time and I can't play the songs I bought. What did I do wrong?

    I was setting up my IPod Nano7 for the first time and purchased 3 songs.  When I went to play it on my IPod the screen said "No Music".  What did I do wrong?

    We are going through same thing and looks like alot of other people also. Seems to me Apple would have invalid email instead of us loosing the gift card all together. Very irratating. Good Luck.

Maybe you are looking for

  • Word Headings- ALL become bookmarks in the PDF

    Just started using Acrobat X Pro. (bought with TCS4) When I make a Word 2010 document into a pdf, ALL the Word headings seem to become bookmarks visible in the left pane of Acrobat or the Reader, and of the main chapter hedaings, every subsection is

  • Search via classification in CV04N returns incorrect documents

    When doing a search in SAP DMS CV04N using classification, and incorrect list of DIRs return. The search criteria is for one signle value, but it returns documents that does not form part of the search criteria. Any suggestion as to what the problem

  • Squeaking sound on Satellite C655 S5048

    I have been having trouble with the sound on my lap-top.  I did not have this problem when I originally bought it back in 12/2010.  The CDs play however when I play something from YouTube or iTunes it squeaks and crackles.  I can't get any sound from

  • Dedicated server process

    1)How can we limit the max number of dedicted server processes in a adatabase? or it will be a memory dependent?or any parameter to limit the dedicated server processes? 2)when i connect through database: a) sqlplus "/as sysdba" or b)sqlplus connect

  • WRT54GS wireless router - Outlook Express won't allow me to send/recieve e-mails.

    I've followed the Port Triggering advive on http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=666&p_created=108421... but still doesn't work. these are the error messages that pops up when I open Outlook express: ***The