8080 port has been used,why?

windows and solaris both has this problem.thanks a lot.
D:\j2sdk1.4.0\bin\javaw.exe -Djava.endorsed.dirs=D:\Program Files\Apache Tomcat 4.0\bin;D:\Program Files\Apache Tomcat 4.0\common\lib -Dcatalina.base=C:\Documents and Settings\Administrator\.IntelliJIdea\system\tomcat_GetDemo_8c6d0204 -Dcatalina.home=D:\Program Files\Apache Tomcat 4.0 -Djava.io.tmpdir=D:\Program Files\Apache Tomcat 4.0\temp -classpath D:\j2sdk1.4.0\lib\tools.jar;D:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\jndi.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\activation.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\jdbc2_0-stdext.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\jta-spec1_0_1.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\tyrex-0.9.7.0.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\naming-common.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\naming-resources.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\mail.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\xerces.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\servlet.jar;D:\Program Files\Apache Tomcat 4.0\common\lib\tools.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\servlets-default.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\tomcat-http11.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\servlets-common.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\catalina.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\servlets-webdav.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\servlets-invoker.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\tomcat-coyote.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\tomcat-util.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\warp.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\jakarta-regexp-1.2.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\commons-logging.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\tomcat-ajp.jar;D:\Program Files\Apache Tomcat 4.0\server\lib\servlets-manager.jar;D:\j2sdk1.4.0\jre\lib\charsets.jar;D:\j2sdk1.4.0\jre\lib\jaws.jar;D:\j2sdk1.4.0\jre\lib\jce.jar;D:\j2sdk1.4.0\jre\lib\jsse.jar;D:\j2sdk1.4.0\jre\lib\rt.jar;D:\j2sdk1.4.0\jre\lib\sunrsasign.jar;D:\j2sdk1.4.0\jre\lib\ext\dnsns.jar;D:\j2sdk1.4.0\jre\lib\ext\ldapsec.jar;D:\j2sdk1.4.0\jre\lib\ext\localedata.jar;D:\j2sdk1.4.0\jre\lib\ext\sunjce_provider.jar;D:\j2sdk1.4.0\jre\lib\ejb10deployment.jar;D:\j2sdk1.4.0\jre\lib\j2ee-ri-svc.jar;D:\j2sdk1.4.0\jre\lib\j2ee.jar;D:\j2sdk1.4.0\jre\lib\j2eetools.jar;D:\j2sdk1.4.0\jre\lib\jhall.jar;D:\projects\classes org.apache.catalina.startup.Bootstrap start
Catalina.start: LifecycleException: null.open: java.net.BindException: Address already in use: JVM_Bind:8080
LifecycleException: null.open: java.net.BindException: Address already in use: JVM_Bind:8080
     at org.apache.catalina.connector.http.HttpConnector.initialize(HttpConnector.java:1130)
     at org.apache.catalina.core.StandardService.initialize(StandardService.java:454)
     at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:553)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:780)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:243)
----- Root Cause -----
java.net.BindException: Address already in use: JVM_Bind:8080
     at org.apache.catalina.connector.http.HttpConnector.open(HttpConnector.java:950)
     at org.apache.catalina.connector.http.HttpConnector.initialize(HttpConnector.java:1128)
     at org.apache.catalina.core.StandardService.initialize(StandardService.java:454)
     at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:553)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:780)
     at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
     at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:324)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:243)

I has tested "http://localhost:8080/" in my web browser,
it is tomcat home page.
This is my context.When I run the java projest,it reports the 8080 port error,
why?Thanks a lot.
This is GetDemo.java:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class GetDemo extends HttpServlet
public void doGet(HttpServletRequest req,
HttpServletResponse resp)
throws ServletException,IOException
resp.setContentType("text/html");
PrintWriter out=resp.getWriter();
String username=req.getParameter("uname");
String password=req.getParameter("userpw");
out.println("<HTML>");
out.println("<HEAD><TITLE>GetDemo</TITLE></HEAD>");
out.println("<BODY>");
out.println("Hello "+username+"<br>");
out.println("Your password was: "+password+"<br>");
out.println("</BODY>");
out.println("</HTML>");
out.close();
This is GetExample.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>Get example</TITLE>
</HEAD>
<BODY>
<font size="4">
<center>Please enter your name and passwd then press Start<br>
<FORM ACTION="http://localhost/projects/GetDemo" METHOD="GET">
Name:<INPUT TYPE="text" name="uname" value="" size="20"><BR>
Password:<INPUT TYPE="password" name="userpw" value="" type="password" size=10>
<INPUT TYPE="submit" value="Start"><BR>
</INPUT></INPUT></INPUT></FORM>
<center><HR>
</BODY>
</HTML>
This is server.xml:
<!-- Example Server Configuration File -->
<!-- Note that component elements are nested corresponding to their
parent-child relationships with each other -->
<!-- A "Server" is a singleton element that represents the entire JVM,
which may contain one or more "Service" instances. The Server
listens for a shutdown command on the indicated port.
Note: A "Server" is not itself a "Container", so you may not
define subcomponents such as "Valves" or "Loggers" at this level.
-->
<Server port="8005" shutdown="SHUTDOWN" debug="0">
<!-- A "Service" is a collection of one or more "Connectors" that share
a single "Container" (and therefore the web applications visible
within that Container). Normally, that Container is an "Engine",
but this is not required.
Note: A "Service" is not itself a "Container", so you may not
define subcomponents such as "Valves" or "Loggers" at this level.
-->
<!-- Define the Tomcat Stand-Alone Service -->
<Service name="Tomcat-Standalone">
<!-- A "Connector" represents an endpoint by which requests are received
and responses are returned. Each Connector passes requests on to the
associated "Container" (normally an Engine) for processing.
By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
You can also enable an SSL HTTP/1.1 Connector on port 8443 by
following the instructions below and uncommenting the second Connector
entry. SSL support requires the following steps (see the SSL Config
HOWTO in the Tomcat 4.0 documentation bundle for more detailed
instructions):
* Download and install JSSE 1.0.2 or later, and put the JAR files
into "$JAVA_HOME/jre/lib/ext".
* Execute:
%JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
$JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
with a password value of "changeit" for both the certificate and
the keystore itself.
By default, DNS lookups are enabled when a web application calls
request.getRemoteHost(). This can have an adverse impact on
performance, so you can disable it by setting the
"enableLookups" attribute to "false". When DNS lookups are disabled,
request.getRemoteHost() will return the String version of the
IP address of the remote client.
-->
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8080" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0" connectionTimeout="60000"/>
<!-- Note : To disable connection timeouts, set connectionTimeout value
to -1 -->
<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8081 -->
<!--
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8081" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0" connectionTimeout="20000"/>
-->
<!-- Define an SSL HTTP/1.1 Connector on port 8443 -->
<!--
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8443" minProcessors="5" maxProcessors="75"
enableLookups="true"
     acceptCount="10" debug="0" scheme="https" secure="true">
<Factory className="org.apache.catalina.net.SSLServerSocketFactory"
clientAuth="false" protocol="TLS"/>
</Connector>
-->
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
port="8009" minProcessors="5" maxProcessors="75"
acceptCount="10" debug="0"/>
<!-- Define a Proxied HTTP/1.1 Connector on port 8081 -->
<!-- See proxy documentation for more information about using this. -->
<!--
<Connector className="org.apache.catalina.connector.http.HttpConnector"
port="8082" minProcessors="5" maxProcessors="75"
enableLookups="true"
acceptCount="10" debug="0" connectionTimeout="60000"
proxyPort="80"/>
-->
<!-- Define a non-SSL HTTP/1.0 Test Connector on port 8082 -->
<!--
<Connector className="org.apache.catalina.connector.http10.HttpConnector"
port="8083" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0"/>
-->
<!-- An Engine represents the entry point (within Catalina) that processes
every request. The Engine implementation for Tomcat stand alone
analyzes the HTTP headers included with the request, and passes them
on to the appropriate Host (virtual host). -->
<!-- Define the top level container in our container hierarchy -->
<Engine name="Standalone" defaultHost="localhost" debug="0">
<!-- The request dumper valve dumps useful debugging information about
the request headers and cookies that were received, and the response
headers and cookies that were sent, for all requests received by
this instance of Tomcat. If you care only about requests to a
particular virtual host, or a particular application, nest this
element inside the corresponding <Host> or <Context> entry instead.
For a similar mechanism that is portable to all Servlet 2.3
containers, check out the "RequestDumperFilter" Filter in the
example application (the source for this filter may be found in
"$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
Request dumping is disabled by default. Uncomment the following
element to enable it. -->
<!--
<Valve className="org.apache.catalina.valves.RequestDumperValve"/>
-->
<!-- Global logger unless overridden at lower levels -->
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="catalina_log." suffix=".txt"
timestamp="true"/>
<!-- Because this Realm is here, an instance will be shared globally -->
<Realm className="org.apache.catalina.realm.MemoryRealm" />
<!-- Replace the above Realm with one of the following to get a Realm
stored in a database and accessed via JDBC -->
<!--
<Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
driverName="org.gjt.mm.mysql.Driver"
connectionURL="jdbc:mysql://localhost/authority?user=test;password=test"
userTable="users" userNameCol="user_name" userCredCol="user_pass"
userRoleTable="user_roles" roleNameCol="role_name" />
-->
<!--
<Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
driverName="oracle.jdbc.driver.OracleDriver"
connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL?user=scott;password=tiger"
userTable="users" userNameCol="user_name" userCredCol="user_pass"
userRoleTable="user_roles" roleNameCol="role_name" />
-->
<!--
<Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
driverName="sun.jdbc.odbc.JdbcOdbcDriver"
connectionURL="jdbc:odbc:CATALINA"
userTable="users" userNameCol="user_name" userCredCol="user_pass"
userRoleTable="user_roles" roleNameCol="role_name" />
-->
<!-- Define the default virtual host -->
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true">
<!-- Normally, users must authenticate themselves to each web app
individually. Uncomment the following entry if you would like
a user to be authenticated the first time they encounter a
resource protected by a security constraint, and then have that
user identity maintained across all web applications contained
in this virtual host. -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn"
debug="0"/>
-->
<!-- Access log processes all requests for this virtual host. By
default, log files are created in the "logs" directory relative to
$CATALINA_HOME. If you wish, you can specify a different
directory with the "directory" attribute. Specify either a relative
(to $CATALINA_HOME) or absolute path to the desired directory.
-->
<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="localhost_access_log." suffix=".txt"
pattern="common"/>
<!-- Logger shared by all Contexts related to this virtual host. By
default (when using FileLogger), log files are created in the "logs"
directory relative to $CATALINA_HOME. If you wish, you can specify
a different directory with the "directory" attribute. Specify either a
relative (to $CATALINA_HOME) or absolute path to the desired
directory.-->
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="localhost_log." suffix=".txt"
     timestamp="true"/>
<!-- Define properties for each web application. This is only needed
if you want to set non-default properties, or have web application
document roots in places other than the virtual host's appBase
directory. -->
<!-- Tomcat Root Context -->
<!--
<Context path="" docBase="ROOT" debug="0"/>
-->
<!-- Tomcat Manager Context -->
<Context path="/manager" docBase="manager"
debug="0" privileged="true"/>
<Context path="/GetDemo" docBase="d:\projects\GetDemo" />
<!-- Tomcat Examples Context -->
<Context path="/examples" docBase="examples" debug="0"
reloadable="true" crossContext="true">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="localhost_examples_log." suffix=".txt"
     timestamp="true"/>
<Ejb name="ejb/EmplRecord" type="Entity"
home="com.wombat.empl.EmployeeRecordHome"
remote="com.wombat.empl.EmployeeRecord"/>
<!-- PersistentManager: Uncomment the section below to test Persistent
          Sessions.
saveOnRestart: If true, all active sessions will be saved
to the Store when Catalina is shutdown, regardless of
other settings. All Sessions found in the Store will be
loaded on startup. Sessions past their expiration are
ignored in both cases.
maxActiveSessions: If 0 or greater, having too many active
sessions will result in some being swapped out. minIdleSwap
limits this. -1 means unlimited sessions are allowed.
0 means sessions will almost always be swapped out after
use - this will be noticeably slow for your users.
minIdleSwap: Sessions must be idle for at least this long
(in seconds) before they will be swapped out due to
maxActiveSessions. This avoids thrashing when the site is
highly active. -1 or 0 means there is no minimum - sessions
can be swapped out at any time.
maxIdleSwap: Sessions will be swapped out if idle for this
long (in seconds). If minIdleSwap is higher, then it will
override this. This isn't exact: it is checked periodically.
-1 means sessions won't be swapped out for this reason,
although they may be swapped out for maxActiveSessions.
If set to >= 0, guarantees that all sessions found in the
Store will be loaded on startup.
maxIdleBackup: Sessions will be backed up (saved to the Store,
but left in active memory) if idle for this long (in seconds),
and all sessions found in the Store will be loaded on startup.
If set to -1 sessions will not be backed up, 0 means they
should be backed up shortly after being used.
To clear sessions from the Store, set maxActiveSessions, maxIdleSwap,
and minIdleBackup all to -1, saveOnRestart to false, then restart
Catalina.
-->
          <!--
<Manager className="org.apache.catalina.session.PersistentManager"
debug="0"
saveOnRestart="true"
maxActiveSessions="-1"
minIdleSwap="-1"
maxIdleSwap="-1"
maxIdleBackup="-1">
<Store className="org.apache.catalina.session.FileStore"/>
</Manager>
          -->
<Environment name="maxExemptions" type="java.lang.Integer"
value="15"/>
<Parameter name="context.param.name" value="context.param.value"
override="false"/>
<Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
type="javax.sql.DataSource"/>
<ResourceParams name="jdbc/EmployeeAppDb">
<parameter><name>user</name><value>sa</value></parameter>
<parameter><name>password</name><value></value></parameter>
<parameter><name>driverClassName</name>
<value>org.hsql.jdbcDriver</value></parameter>
<parameter><name>driverName</name>
<value>jdbc:HypersonicSQL:database</value></parameter>
</ResourceParams>
<Resource name="mail/Session" auth="Container"
type="javax.mail.Session"/>
<ResourceParams name="mail/Session">
<parameter>
<name>mail.smtp.host</name>
<value>localhost</value>
</parameter>
</ResourceParams>
</Context>
</Host>
</Engine>
</Service>
<!-- The MOD_WEBAPP connector is used to connect Apache 1.3 with Tomcat 4.0
as its servlet container. Please read the README.txt file coming with
the WebApp Module distribution on how to build it.
(Or check out the "jakarta-tomcat-connectors/webapp" CVS repository)
To configure the Apache side, you must ensure that you have the
"ServerName" and "Port" directives defined in "httpd.conf". Then,
lines like these to the bottom of your "httpd.conf" file:
LoadModule webapp_module libexec/mod_webapp.so
WebAppConnection warpConnection warp localhost:8008
WebAppDeploy examples warpConnection /examples/
The next time you restart Apache (after restarting Tomcat, if needed)
the connection will be established, and all applications you make
visible via "WebAppDeploy" directives can be accessed through Apache.
-->
<!-- Define an Apache-Connector Service -->
<Service name="Tomcat-Apache">
<Connector className="org.apache.catalina.connector.warp.WarpConnector"
port="8008" minProcessors="5" maxProcessors="75"
enableLookups="true" appBase="webapps"
acceptCount="10" debug="0"/>
<!-- Replace "localhost" with what your Apache "ServerName" is set to -->
<Engine className="org.apache.catalina.connector.warp.WarpEngine"
name="Apache" debug="0">
<!-- Global logger unless overridden at lower levels -->
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="apache_log." suffix=".txt"
timestamp="true"/>
<!-- Because this Realm is here, an instance will be shared globally -->
<Realm className="org.apache.catalina.realm.MemoryRealm" />
</Engine>
</Service>
</Server>

Similar Messages

  • The ports has been used

    Hi,
    I am uninstalling my messaging 5.2 using ./uninstall. After uninstall process completed, i used rm -R to manually remove the ims folder. Then I tried to install messaging again but half way of the installation it will show me that pop, imap and smtp port has been used, i need to assign other ports to them. If i continue to use default ports, it will prompt me the ports have been used, but if i assigned other ports to them, the installation can complete successfully.
    May I know what is happening? I have checked /etc, there is no msgregistry.inf file. What other files that should i remove? Please help.. thank you.

    The problem is that the software is probably still running from your previous install attempt. You can telnet to one of the ports to see if this is the case, e.g.
    telnet <mailserver> 110Should return something like:
    Trying 111.222.333.444...
    Connected to mail.siroe.com.
    Escape character is '^]'.
    +OK mail.siroe.com POP3 service (Sun Java(tm) System Messaging Server 6.2-4.03 (built Sep 22 2005))If that is the case, do a ps -fu <mailserveruser> and kill -9 the processes returned.
    Michael
    Hi,
    I am uninstalling my messaging 5.2 using ./uninstall.
    After uninstall process completed, i used rm -R to
    manually remove the ims folder. Then I tried to
    install messaging again but half way of the
    installation it will show me that pop, imap and smtp
    port has been used, i need to assign other ports to
    them. If i continue to use default ports, it will
    prompt me the ports have been used, but if i assigned
    other ports to them, the installation can complete
    successfully.
    May I know what is happening? I have checked /etc,
    there is no msgregistry.inf file. What other files
    that should i remove? Please help.. thank you.

  • Why do Sony DSC-RX100M3 raw files look strange in PE9 when flash has been used in the shot?

    I have just bought a Sony DSC-RX100M3 camera and use it to shoot raw + jpeg.  I want to use the raw files in my Photoshop Elements 9, which has the Camera Raw plug-in version 6.5.0.216 installed. I have downloaded the Adobe DNG converter version 8.7.1.311 so I can import my Sony raw files into PE 9 as they cannot be used directly. Most of the time these raw files look OK, but when I use the flash on my camera and then look at the raw files in PE9 they look far more pink than the corresponding jpeg files. The jpeg files look more or less as I remember the scene when I shot the picture.
    When I look at the same raw and jpeg files in Sony's own Image Data Converter software (version 4.2.04.17270) the raw and jpeg files look very similar to one another, and there is no pink colour cast in the raw file.
    What am I doing wrong in Photoshop Elements? I though the DNG converter keeps all the information from the original raw file and makes no changes to it, so why does the raw file look so different when flash has been used?
    Thanks for any help you can give!
    AVM

    Looking at the pictures of the camera online, I'd say there is no lens shade--a device to keep light from the sides from causing lens flare--and the camera lens, itself, was just too far extended and there was a lens shadow.  You probably can't use the flash that close up and should back off and zoom in further.  Experimenting would give you a sense of what situations will have a shadow of the lens or not.
    Your ACR plug-in is old enough not use have Process Version 2012, yet, only 2010 and 2003 so Adobe didn't have the idea to put the selector down next to the camera profile. The toning options are better with Process 2012 so that would be a reason to upgrade, but I am not sure that the Camera Neutral profile in PSE9 would be different than PSE13.  If Adobe changed the camera profiles then people's pictures would look different once they upgraded to a new version and that's not something that's supposed to happen.
    You can certainly download the PSE13 trial and see if things look any different, but they may not:  Download a free trial or buy Adobe products | Adobe downloads   There would be newer minimum OS version requirements for the newer versions of Adobe software so check those out before trying to install, unless you're on Windows 7+ or OSX 10.8+ then it should be fine.
    One more thing, the White-Balance tint is set to +10 by the camera:
    This As Shot WB is more magenta and even when using the Adobe Standard profile, moving the Tint down to +0 makes things a little more green like your camera JPG.  So there is more than just changing the camera profile that you can do:

  • Every time I try do download an app iTunes asks for a billing update, claiming my account has been used on another machine. Why?

    Why is it, since the last iTunes update, I'm asked to update my billing information every time I try to download or update an app?
    iTunes claims that my account has been used on another machine, but it's only running on my iPhone and my laptop as always.
    Help. It's bugging me.

    Lt Chu
    You can buy an iTunes card and redeem it at the on-line store.
    Cheers

  • Port 80 has been used,

    hi, i am using Filemaker, at the begining it works well with port 80. but when i try to start some other software, the port has been automatically switched and thus filemaker is now no loger work with port 80. my mamp works with port 800. i dont know which software occupied the port 80. help me, pls. thx

    Apache Web Server by default uses port 80.

  • HT204053 Hi there im trying to download an applications and it is saying that ur apple ID has been disabled why ( Note that i am using my credit card in an another id ) and i want to use it in this id to ?

    Hi there
    Good greatings
    im trying to download an applications and it is saying that ur apple ID has been disabled why ( Note that i am using my credit card in an another id ) and i want to use it in this id to ?

    For assistance with a disabled account, see this support article:
    http://support.apple.com/kb/TS2446
    If that doesn't help, contact iTunes support via the link provided toward the bottom of that page.
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Why does my Elements 12 ask me to enter Program Key after the product has been used and registered

    I have had Elememts 12 for several months ... when I bought it ...I downloaded the program and registered it ... now ... every once in a while the program asks me to enter the Key number as if I never registered it ... also sometimes I get a message about my 30 day trial ...

    I purchased Elements 12 not the Premier addition .... the disk Elements 12 comes with a trial version of Premier ... I did not install the 30 day trial version .... maybe t is Adobe trying to sell me the Premier addition ... I will pay more attention the next time the message comes up ... after reading some of the posts, I think that is what is happening ... I will have to wait ... someone wrote that they had the same problem and after a while, the message stopped appearing .... as I indicated .... I will look more carefully the next time I see the message...
    Thanks again
    Date: Tue, 1 Apr 2014 16:22:01 -0700
    From: [email protected]
    To: [email protected]
    Subject: Why does my Elements 12 ask me to enter Program Key after the product has been used and registered
        Re: Why does my Elements 12 ask me to enter Program Key after the product has been used and registered
        created by A.T. Romano in Premiere Elements - View the full discussion
    JEROMESTEINER
    I am trying to get through all your recent replies to go back to your post numbered 8.
    1. Go to Control Panel/Programs and determine if you have Premiere Elements 12 and Photoshop Elements 12 installed.
    2. When you have gotten the try out dialog, what program is mentioned in the dialogs - Premiere Elements 12 or Photoshop Elements 12?
    3. The fundamental question is what did you purchase
    a Photoshop Elements 12
    b. Premiere Elements 12
    c. Photoshop Elements 12 and Premiere Elements 12
    From what you wrote it sounds like Photoshop Elements 12. Premiere Elements 12 seems to have come along as a tryout.
    4. If Premiere Elements 12 is a tryout, after 30 days from first install of it, you should not be able to use it without a purchased serial number specific for Premiere Elements 12.
    5. If you have no interest in Premiere Elements 12 tryout, uninstall it if it is installed. If it is not installed, then it is not the cause of your trial messages. But, I offer you this thought. Are these really License This Product/Continue Trial messages or are they really promotional dialogs (ads) put on your computer by Adobe who knows you have Photoshop Elements 12 and are trying to get you interested in Premiere Elements as well?
    Please review and consider.
    Thanks.
    ATR
    Add On...All my encountered with tryout pop ups have been as described and restricted to purchase Photoshop Elements 12 and Premiere Elements 12 purchased as bundle.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6262855#6262855
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6262855#6262855
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6262855#6262855. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Premiere Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • HT203167 Someone has been using my credit card to download games. this has happened before when I  had a different credit card on my itunes account. the apple store on that previous time would not give me the ip address where the downloads ended up.

    Someone I entrusted my computer to for repairs decided to keep it. all my personal information was on the computer. the peron has been using my credit card information o make ourchases from the apple store. If I do not have a credit card on the account on my iphone, I am unable to updatw it or my ipad. After persuading the apple store people to delete the last credit card info, I had to put aother credit card on the iphone to be able to update the software and thevapps. now that card is being used by the person o download war games on the new card. I cannot find any of his downloaded games on any of my devices. I am close to giving up my iphone and ipad. the last time i called the apple store, theynwould not give me the IP address of the omputer the games were downloaded to. they only gave me the name of my ipad. anyone could name thir ipad according to the name on mynipad. I have found the Apple store less than friendly about security matters like this. What can I do to maintain my acount and not continue to be ripped off by the thieving interloper? if i change my user name nd password, i will forever lose legitimate purchases. Please advise me.
    Killerappleuser

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    Is the credit card registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management
    Each time that you add or change your card details then a temporary store holding charge may be applied to check that the card details are correct and valid (though that is usually $1 or the approximate local equivalent) : http://support.apple.com/kb/HT3702
    Did your daughter owe any amounts to iTunes ? Does anything show on your purchase history : http://support.apple.com/kb/HT2727 ? If they are proper charges which you don't think that you should have then you can contact iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • HT4413 Migration Assistant for a brand new mac that has been used already?

    My dad bought a Mini but has been using it for a few months but didn't transfer anything from his old Mac. All his address book entries and files are still on his original Mac. Can Migration Assistant still be of help to transfer over the data without erasing what he's accumlated on his new Mac? Is it going to write over his email for instance?
    Thanks!

    Migration Assistant is not the tool you need to use at this point. Instead you should manually copy the data you want from the old computer to the new computer. If both computers have Firewire ports then use Target Disk Mode - Transferring files between two computers using FireWire. Boot the old computer into TDM and the new computer normally. You should then find a disk icon for the old computer's drive on the Desktop of the new computer.
    Before you do any of the described file copying below be sure you have quit Mail and Address Book if they are now open except where directed.
    For Mail you open Mail and select Import from the File menu. Check the top option to import from Apple Mail. Navigate on the old computer to its /Users/username/Library/Mail/ folder and then locate a folder named "Mailboxes." Select the folder and click on the Open button. Select the mailboxes you want to import and click on the Import/OK button. This will import the old mail to a new set of mailboxes in Mail under a mailbox named Imported. You can then move the old mail to wherever you want in Mail.
    For contacts locate the /Users/username/Library/Applications Support/AddressBook/ folder. Copy the entire folder to the new computer to the same location on the new computer.
    Last, navigate to the /Users/username/Library/Preferences/ folder and copy these preference files: com.apple.mail.plist and all beginning with com.apple.AddressBook. Copy them to the same location on the new computer.

  • I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone).

    I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone). Why doesn't my phone recognize him to have iMessage? Do I have to turn my data on and my airport off to send a message before it recognizes that he has iMessage?

    Call AppleCare, because, according to Apple, removing the devices from your support profile should have fixed this issue. You can also try changing your Apple ID password, but given what you've done, I doubt this will help.

  • My ipod wont let me buy apps etc... keeps saying this is the first time this device has been used and to sign in and answer security questions. I have had this account for years but cant remember the answer to the security questions. How can i fix it?

    My iPod touch wont let me buy anything, i've beem using this account for a couple of years and now it says that this is the first ime this id has been used on my device... it's not.... and to sign in and answer security questions. i cant remember the answers to the questions. How can i fix this without making a new account and losing all my stuff???

    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
    Go to https://expresslane.apple.com ; click 'See all products and services' at the
    bottom of the page. In the next page click 'More Products and Services, then
    'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
    ID security questions' and click 'Continue'. Please be patient waiting for the return
    phone call. It will come in time depending on how heavily the servers are being hit.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • I bought my ipad in us, and has been using a purchasing applications. Now i already went back to bahrain, i am trying to purchase apllication using my bahrain credit card but it cannot get through as the default country is USA.   I tried

    I bought my ipad in us, and has been using a pre paid card in purchasing applications. Now i already went back to bahrain, i am trying to purchase apllication using my bahrain credit card but it cannot get through as the default country is USA.
    I tried to change my country but a message says i have a store credit balance and must spend it before changing store. But how i can spend it i only have 8 cents left?
    So how will i be able to purchase applications if i am in bahrain?

    You can try again after a few hours after waiting and you still get the same error, you'll need to contact support.
    https://expresslane.apple.com/GetproductgroupList.action

  • From: Apple-ID [mailto:Apple.International@Apple.id]  Sent: Wednesday, December 11, 2013 7:36 PM To: Deborah McKay Subject: Final step To verify your Apple      Dear Apple Customer,  Your Apple ID has been used to open a session iCloud from an unauthori

    From: Apple-ID [mailto:[email protected]]
    Sent: Wednesday, December 11, 2013 7:36 PM
    To: Deborah McKay
    Subject: Final step To verify your Apple
    Dear Apple Customer,
    Your Apple ID has been used to open a session iCloud from an unauthorized device..
    It's easy: Click the link Your iTunes account is now locked, please enter your account to verify your information. .
    Update Now >
    After you finished your account is confirmed, let us know immediately. Report, it is important because it helps us prevent fraudsters from stealing your information. Sincerely, apple.
    copyright 2013 Apple Inc. Please do not reply to this email because we are not monitoring this inbox. To get in touch with us, log in to your account and click "Contact Us" at the bottom of any page. Copyright © 2013 apple. All rights reserved. apple (Europe) S.à r.l. et Cie, S.C.A. Société en Commandite par Actions Registered office: 22-24 Boulev ard Royal, L-2449 Luxemburg RCS Luxemburg B 118 349 apple Email ID PP315.
    I just got this message and sent it to [email protected] per instructions on another post. the link leads to a page asking for Apple id and credit card information.

    I got a similar email. It's obviously Spam. The double period afetr the first sentence and the otherwise poor grammar are dead giveaways even before I checked out the link embedded. -- I didn't click on it, just hovered over it to get the url. And the return address was [email protected] Very bogus.

  • My daughter has been using my iTunes account to buy music and apps. I now want to set up a separate iTunes account for her, with a different login. How can we transfer the music and apps she has already bought to her new iTunes account?

    My daughter has been using my iTunes account to buy music and apps. I now want to set up a separate iTunes account for her, with a different login. How can we transfer the music and apps she has already bought to her new iTunes account?

    Hello, thank you for your prompt answer. I did have an idea that Home sharing might be the answer but could not quite figure out how to do it. I have enabled home sharing in my iTunes account, put in username and password, clicked on creat etc. But the homs sharing icon doew not appear in the left side of iTunes. So I got stuck. Any further ideas?

  • TS3988 My icloud account is not verifying it says check my mail witch I have done and I get a message say your iPhone for has been used to set up and Icloud account but still can not use the icloud can anybody help me.

    My icloud account is not verifying it says check my mail witch I have done and I get a message say your iPhone for has been used to set up and Icloud account but still can not use the icloud can anybody help me.

    Be sure you are checking the email account that you used to set up the Apple ID you used to create the iCloud account.  Also, be sure to check your spam/junk folder as well as your inbox.  The email you should receive looks like the image below.  When you get it, click the Verify Now link.
    If it still isn't there, try going to https://appleid.apple.com, click Manage your Apple ID, sign in, click on Name, ID and Email addresses on the left, then to the right look for a link to resend the verification email.

Maybe you are looking for

  • How to stop insert of new row in tabular form if it's also being deleted

    Suppose you have a tabular form, and one of the fields is a not-null column. A user checks a button to "add additional row", which adds a new row to the form, defaulting that not-null column to null. Assume it's a name or something, so there is no re

  • Can't find Javac.exe

    I'm new to Java (presently taking a class). I'm very confused and not getting too far. I'm running Win XP and have downloaded the latest version of Java J2SE1.4.0_01 (actually because of repeated problems, I've uninstalled and installed it a few time

  • Keep losing my D:Drive

    Hi All Please can you help me?? I bought a Ipod nano 2nd gen in January - installed everything, uploaded some albums, next time came to use PC and D:Drive had gone from My Computer and wasn't reading or playing any discs. Did system restore to get D:

  • Count number of ticket in per organigation.

    hello expert. i have one internal table like that. org unit   |   ticket 1 aaa 1 bbb 1 ccc 2              |   ddd 2              |    eee 3 fff 4 ggg now  my requirment is i have to calculate ticket number in per org unit. in given senario  orgunit 1

  • PSE9 Time Stamp

    I was happily using PSE8 but 'upgraded' to PSE9.  Since then I've been suffering from the following problem. Somehow it looks like PSE knows that I'm in the UK and assumes that my camera's clock is set to GMT.  So now we are in BST it adds one hour t