Why mysql soen't start when i launch EASYPHP?

Could you gave me a explination to this and if my.ini is well written
sachant que my host : 127.0.0.1
port 3306
username [email protected]
password :naonetou
I give you my.ini
which ipath access is C:\Program Files (x86)\EasyPHP-DevServer-13.1VC9\binaries\mysql\my.ini
FICHIER CONFIGURATION
# IMPORTANT
# ${path} is used to specify EasyPHP installation path
# This is for a system with little memory (32M - 64M) where MySQL plays
# an important part, or systems up to 128M where MySQL is used together with
# other programs (such as a web server)
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MySQL clients
[client]
password          = naonetou
port                    = 3306
socket                    = "${path}/binaries/mysql/mysql.sock"
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
# The TCP/IP Port the MySQL Server will listen on
port                    = 3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir="${path}/binaries/mysql/"
#Path to the database root
datadir="${path}/binaries/mysql/data/"
# The default storage engine that will be used when create new tables when
default-storage-engine = INNODB
bind-address = 127.0.0.1
socket                    = "${path}/binaries/mysql/mysql.sock"
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# binary logging format - mixed recommended
binlog_format=mixed
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id          = 1
# Replication Slave (comment out master section to use this)
# To configure this host as a replication slave, you can choose between
# two methods :
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
   CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=3306,
   MASTER_USER='[email protected]', MASTER_PASSWORD='naonetou';
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#    Example:
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
# OR
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
# The replication master for this slave - required
#master-host     =   <hostname>
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = C:\\mysql\\data\\
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = C:\\mysql\\data\\
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 16M
innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 5M
innodb_log_buffer_size = 1M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[myisamchk]
key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# binary logging format - mixed recommended
binlog_format=mixed
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id          = 1
# Replication Slave (comment out master section to use this)
# To configure this host as a replication slave, you can choose between
# two methods :
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
   CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=3306,
   MASTER_USER='[email protected]', MASTER_PASSWORD='naonetou';
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#    Example:
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
# OR
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
# The replication master for this slave - required
#master-host     =   <hostname>
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = C:\\mysql\\data\\
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = C:\\mysql\\data\\
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
innodb_buffer_pool_size = 16M
innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 5M
innodb_log_buffer_size = 1M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[myisamchk]
key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
thanks

I get the same problem since I moved to Tomcat 4.1.18.
The difference is that when I look at a jnlp, I get
Date: Tue, 18 Mar 2003 10:58:25 GMT
Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
Content-Length: 1355
Content-Type: application/x-java-jnlp-file
Last-Modified: Mon, 17 Mar 2003 15:58:46 GMT
Client-Date: Tue, 18 Mar 2003 10:58:25 GMT
Client-Peer: 192.197.110.222:80
and at a jsp:
Date: Tue, 18 Mar 2003 11:06:10 GMT
Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
Content-Type: application/x-java-jnlp-file;charset=ISO-8859-1
Client-Date: Tue, 18 Mar 2003 11:06:10 GMT
Client-Peer: 192.197.110.222:80
Set-Cookie: JSESSIONID=026BF3209EC094A4045F1D37C2A0E98B;Path=/
Could the difference be ;charset=ISO-8859-1
How to remove that, in my jsp I just have :
<% response.setContentType("application/x-java-jnlp-file"); %>
Help
Benoit

Similar Messages

  • Why do several files open when I launch Pages and Numbers

    Why do several files open when I launch Pages and Numbers

    2139Mike wrote:
    Why do several files open when I launch Pages and Numbers
    Mike,
    Any document left open when you Quit the application reopens when you restart the application. Rather like the jacket that I neglected to hang up when I came home last night. It's still lying on the chair by the door.
    Jerry

  • Why does CS6 automatically start when i plug in my Canon Eos camera and how do I stop it

    Why does CS6 automatically start when i plug in my Canon Eos camera and how do I stop it from doing so?

    Autostart is controlled by your operating system. check the relevant system control panel or right-click the drive letter of your memory card to change these options in teh properties.
    Mylenium

  • DataSocket Server will not start when the Launch DS Server if Local URL.VI is bundled into a LabVIEW application.

    I want to run a LabVIEW application on several machines remotely that do not have LabVIEW installed (licensing issues). Hence I have built a LabVIEW executable with the RunTime Engine to install on all of these remote machines.
    The VI has a bi-directional link, using Datasockets, to a machine with DAQ and Image acquisition functions. It primarily receives data items, but also the capability to change data items so it needs to run the "Launch DS Server if Local URL.VI" in order to publish data to the DataSocket server.
    When I run the pre-built VI on a machine that has LabVIEW Developers Edition installed, everything works fine - ie.
    the DataSocket server starts on the remote machine. However when I build the *.exe application and run it on a machine with and without LabVIEW Developers Edition installed the VI successfully subscribes to the DAQ and Image Acquisiton machine, but it does not start its own connection to the Data Socket server, and hence does not publish the data that the DAQ machine needs to suscribe to. IT seems that the Launch DS Server if Local URL.VI is bypassed? I have fiddled around with the Build settings but to no avail.
    In short, how do I get the DataSocket Server to run in a LabVIEW executable? Is it indeed possible? Any advice would be welcomed.
    When distributing a Labview Application (*.exe) with Data Socket Server Publish functionality, the DataSocket server does not start and hence no data can be sent by the Remote PC to the Server. The VI successfully retrieves data from the DS Server. I have used the "Launch DS Server if Local URL.vi" in the ditributed application but for some r
    eason this VI is not executed when I run the executable. How can you force the DataSocket Server to run with executable LabVIEW applications?

    Ryan,
    How to add Datasocket Server Control.vi?
    Source Files only show Project Files.
    So, I added Datasocket Server Control.vi file to the project first.
    Then I added it to Always Included < Source Files < Application Properties (Build Executable).
    Last, I built the Executable, but it didn't work.
    Can you help me.
    Thank you.
    Pedro Raposo

  • Why jws doesn't start when i use jsp as dynamic jnlp?

    hello everyone,
    i use a jsp as dynamic jnlp to resolve the relative codebase problem,but jws can not start. while i use jnlp, there is no problem.i check the http head the jsp reterned,it seems no problem (it returns "application/x-java-jnlp-file" content type), but jws does not start and the browser opens it as a plan text. below is the http head the jsp and jnlp returned, i can not see any obvious difference that prevent jws start. hope somobody can help me, thanks.
    the jsp http head:
    HTTP/1.1 200 OK
    Content-Type: application/x-java-jnlp-file
    Date: Wed, 07 Aug 2002 02:52:31 GMT
    Server: Apache Tomcat/4.0.2 (HTTP/1.1 Connector)
    Connection: close
    Set-Cookie: JSESSIONID=EDAB1A3175B3D319BA33AE090EB973BF;Path=/webims
    the jnlp http head:
    HTTP/1.1 200 OK
    Content-Type: application/x-java-jnlp-file
    Content-Length: 372
    Date: Wed, 07 Aug 2002 02:49:58 GMT
    Server: Apache Tomcat/4.0.2 (HTTP/1.1 Connector)
    Connection: close
    Last-Modified: Wed, 07 Aug 2002 02:35:19 GMT
    ETag: "372-1028687719000"
    the response body is same. here is part of the jsp file:
    <%@ page contentType="application/x-java-jnlp-file"%>
    <%
    StringBuffer codebaseBuffer = new StringBuffer();
    codebaseBuffer.append(!request.isSecure() ? "http://" : "https://");
    codebaseBuffer.append(request.getServerName());
    if (request.getServerPort() != (!request.isSecure() ? 80 : 443))
    codebaseBuffer.append(':');
    codebaseBuffer.append(request.getServerPort());
    codebaseBuffer.append(request.getContextPath());
    %>
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="<%=codebaseBuffer.toString()%>" href="<%=request.getRequestURI()%>">

    I get the same problem since I moved to Tomcat 4.1.18.
    The difference is that when I look at a jnlp, I get
    Date: Tue, 18 Mar 2003 10:58:25 GMT
    Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
    Content-Length: 1355
    Content-Type: application/x-java-jnlp-file
    Last-Modified: Mon, 17 Mar 2003 15:58:46 GMT
    Client-Date: Tue, 18 Mar 2003 10:58:25 GMT
    Client-Peer: 192.197.110.222:80
    and at a jsp:
    Date: Tue, 18 Mar 2003 11:06:10 GMT
    Server: Apache/1.3.26 (Unix) mod_jk/1.2.0 mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.2.3 FrontPage/5.0.2.2510
    Content-Type: application/x-java-jnlp-file;charset=ISO-8859-1
    Client-Date: Tue, 18 Mar 2003 11:06:10 GMT
    Client-Peer: 192.197.110.222:80
    Set-Cookie: JSESSIONID=026BF3209EC094A4045F1D37C2A0E98B;Path=/
    Could the difference be ;charset=ISO-8859-1
    How to remove that, in my jsp I just have :
    <% response.setContentType("application/x-java-jnlp-file"); %>
    Help
    Benoit

  • Why does not PE8 start when I click a photo in CS4 after upgarde to PE8?

    As it said in the headline, when I upgrade to PE8 I can't click on a photo to opens in PE8. I'm using Mac OSX 10.6. When I used PE6 with my Mac there were no problem. I have marked in the startskript for CS4 that PE8  should start, but I must to click open with PE8 and the photo opens in PE8.
    Steve

    This issue can be caused by the McAfee SiteAdvisor.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • What is X11, and why does it now appear when I launch a window in Terminal?

    I just upgraded to Leopard from Tiger. I use Terminal to log-in via SSH to my website etc. What is this X11 thing that launches now every time I try to connect via SSH? I never saw this before in Tiger...

    Stephen,
    From the terminal do:
    *mkdir -p ~/.ssh*
    *vi ~/.ssh/config*
    In that file put
    <pre>
    Host *
    Protocol 2
    ForwardX11 no
    ForwardAgent no
    UseRsh no
    FallBackToRsh no
    </pre>
    This defensive ssh client configuration (*man ssh_config* if you want to learn more) says that I will connect using only SSH v2 (recommended), I will not forward an X11 session or my SSH agent. I will not use RSH under any circumstances.
    Of course command line options override the config all the time.

  • Why wont my apps start when i tap them? Iphone 4

    As of about two weeks ago my apps have only returned me to home screen. I have tried restarting my iphone and restarting the apps but neither works. What should i do?

    I am trying to do that now but with my computer, this problem is happening as well.... I am able to download a select few of the updates....

  • Why Wizard does not start when selecting Current User?

    Program does not RUN. Wizard does not open after selecting Option for Current User

    Did you try downloading and running the Firefox FULL installer, '''Firefox Setup 29.0.exe''' ? That will help with problems running the stub installer, which needs to download additional files after you run it.
    You can get Firefox FULL installer here: (choose the Windows download for your language, e.g., English US)
    * https://www.mozilla.org/en-US/firefox/all/
    Once you install Firefox, you may have to run it once with an Administrator account, if the installation was from a limited account. Ref: http://kb.mozillazine.org/Installing_Firefox
    If you install Firefox on a multi-user system where access privileges are restricted, you must run Firefox as a user with access to that location upon installation so that all initial startup files are generated.
    -----

  • CSMONITOR not starting when calendar starts?

    Why does csmonitor not start when the calendar server starts? Is it not supposed to? I have it configured in the ics.conf file to run in looping mode, and check every 30 minutes. But if I don't actually go and start it manually...it never runs (no entries in the csmonitor log).
    If I start it manually... (/opt/SUNWics5/cal/sbin/csmonitor) ...then it just starts spitting a bunch of info to the screen and I have to kill the processes before it will go away.
    What's the method for getting csmonitor to start up when the calendar services start?
    Thanks,
    Matt

    Yep....it's been set that way for months and we've restarted the calendar services many times. It's not been a hot issue, but I just noticed that we had a problem a few days ago, and if the csmonitor had been running I would have been notified.
    So...it is set correctly...but still is not running.
    Thanks,
    Matt

  • Why does Bridge Start Doing an Old Find I did when It launches?

    I did a find on files some time ago. Now when I launch bridge it starts that find every time. Any ideas? I purged cache and reset the work spaces to no avail.

    I did a find on files some time ago. Now when I launch bridge it starts that find every time. Any ideas? I purged cache and reset the work spaces to no avail.

  • Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    Having big problems with my new Mac Pro, when I launch Photoshop CC, I get an error message, can carry on but after a few tasks it starts going gar... menus go blank, when you try to save it shows a blank box.... can anybody help?

    when I launch Photoshop CC, I get an error message
    and what exactly is the text of that error message?

  • Why do Certain fonts change when I convert to PDF from Microsoft word?  They start out 60s chic and end up as a standard font.

    Why do some fonts change when converted from Microsoft word to PDF?  It starts out as 60s chic and changes to standard font.

    Related to the question, I suspect you have licensed fonts that cannot be embedded. Thus, the PDF is using what it is finding to be an equivalent as well as it can guess. Did you check the font list in the PDF?

  • Help: Pointbase db doesn't start when launching SP4 portal

    Hi,
    I downloaded WL platform SP4 today and installed (before the installation I uninstalled SP2)in my laptop. When I launch the examples portal, the pointbase db doesn't start. I tried both SP2 and SP3 in my laptop and both worked. The error messages below are directly copied from the console. My understanding is the portal server startup will automatically start pointbase db (I didn't do any configuration yet). Anybody know the problem and solution?
    My laptop config:
    Win XP, SP2, 1.6 GHz, 1GB memory
    I am the admin user.
    Thanks a lot!!
    Error messages from the launching console:
    <Jul 6, 2005 6:00:54 PM PDT> <Warning> <JDBC> <BEA-001129> <Received exception w
    hile creating connection for pool "cgPool": SQL-server rejected establishment of
    SQL-connection. Pointbase Server may not be running on localhost at port 9093.>
    <Jul 6, 2005 6:01:28 PM PDT> <Warning> <JDBC> <BEA-001129> <Received exception w
    hile creating connection for pool "portalPool": SQL-server rejected establishmen
    t of SQL-connection. Pointbase Server may not be running on localhost at port 90
    93.>
    <Jul 6, 2005 6:01:34 PM PDT> <Alert> <JMS> <BEA-040052> <JMSServer "cgJMSServer"
    store failed to open java.io.IOException: JMS JDBC store, connection pool = <cg
    JMSPool-nonXA>, prefix = <weblogic>: connection pool does not exist.
    java.io.IOException: JMS JDBC store, connection pool = <cgJMSPool-nonXA>, prefix
    = <weblogic>: connection pool does not exist
    at weblogic.jms.store.JDBCIOStream.throwIOException(JDBCIOStream.java:48
    8)
    at weblogic.jms.store.JDBCIOStream.checkPool(JDBCIOStream.java:1599)
    at weblogic.jms.store.JDBCIOStream.open(JDBCIOStream.java:548)
    at weblogic.jms.store.JMSStore.open(JMSStore.java:224)
    at weblogic.jms.backend.BEStore.open(BEStore.java:262)
    at weblogic.jms.backend.BEStore.start(BEStore.java:151)
    at weblogic.jms.backend.BackEnd.openStores(BackEnd.java:1171)
    at weblogic.jms.backend.BackEnd.resume(BackEnd.java:1290)
    at weblogic.jms.JMSService.addJMSServer(JMSService.java:2260)
    at weblogic.jms.JMSService.addDeployment(JMSService.java:2031)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Depl
    oymentTarget.java:337)
    at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Dep
    loymentTarget.java:597)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeploy
    ments(DeploymentTarget.java:575)
    at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(
    DeploymentTarget.java:241)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMB
    eanImpl.java:754)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl
    .java:733)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(Configurat
    ionMBeanImpl.java:509)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    60)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:15
    28)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(Rem
    oteMBeanServerImpl.java:988)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBean
    ServerImpl.java:946)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:954)
    at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanPro
    xy.java:481)
    at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(
    ServerMBean_Stub.java:7691)
    at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployment
    s(SlaveDeployer.java:1304)
    at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.j
    ava:347)
    at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resum
    e(DeploymentManagerServerLifeCycleImpl.java:229)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
    at weblogic.Server.main(Server.java:32)
    >

    The exception doesn't tell me much more than the DB connection / pool couldn't connect to the db.
    Sometimes solving these types of problems where it should work, this works everywhere else, so what could be wrong here... Let me suggest that you install a new domain using a new root directory. IE c:\bea814 and not reuse c:\bea.
    I'm guessing that an essential script or property file was not overwritten by the 814 install.
    JBTW, 814 pointbase is a new version and is run on a new port from prior 8.x versions, the new port is 9093, where prior versions was 9092.
    A diag. is after you start via, startWebLogic.cmd, to open a DOS window and run this command:
    netstat -an
    Look for a LISTEN on port 9093
    This would confirm that 814's pointbase is started and there's a configuration issue with the connection pools.
    Good luck, curt

  • Why does my FT freezes when it starts? or simply wont process the call?

    why does my FT freezes when it starts? or simply wont process the call?
    Facetime really *****...!

    Are you running iTunes 10.5.3?

Maybe you are looking for

  • Sorry, a serious error has occurred...(Premiere Elements 7)

    I am having a problem with Premiere Elements 7.  It was installed in January of this year and worked fine then.  I didn't do any video editing for a few months and came back to it recently.  Now I am having a problem opening old Version 7 projects an

  • Profit Center SQVI report guidance

    We are trying to build a report that will give lots of text elements that coincide with the fico information for shipment costs. Essentially, every shipment cost settles against a freight p.o. The freight p.o.'s are set up to settle the costs to a du

  • Call RFC on non ABAP-Host

    Hi experts, we try to integrate a machine into SAP. Therefore we want to use RFC-Communication. This means, the machine will call RFC-FMs on SAP. I know that this works and I only need to create a "normal" RFC-FM. But how can I call a RFC-FM on the m

  • Error "Could not find -Xrun library: libjdwp.so" when starting WL 6.1 in debug mode

    Hello, I installed WL 6.1 SP4 on Solaris (trial version). The installation went well and we were able to start the server and run our application. I then added the debug options in the start script : $JAVACMD $JAVA_OPTIONS -Xdebug -Xnoagent -Djava.co

  • Why is my iPod transferring dreadfully slow...

    No, I haven't ever used FireWire, aside from working with DV cameras, but as far as I can see, my iPod is only transferring at ~12 mB/s. However, the USB2.0 specification allows transfers up to 60 mB/s. So, how come my iPod isn't syncing at full USB