Localhost access

I want to execute a php file locally using Apache (the file is in Sites folder). I thought I could do it by entering in the browser http://127.0.0.1/Users/tony/Sites/xx.php (or localhost in place of 127.0.0.1), but this doesn't work. I always get Not Found. I have a feeling that not all of the path is relevant, so I have tried eliminating folder names individually and in combination to no avail. Anyone help?
Tony.

This one had me losing some hair for a while, too, but I got it running again, after of course doing everything recommended here -- the problem seemed to be that apache was looking for its log directory, and there wasn't one. (I figured this out while trying to read the ErrorLog, which should have been the first thing I did, but live and learn.)
So, in the finder, Go > Go To Folder, and type /private/var/log.
There should be a folder called apache2 in that directory. If there's not, that's a problem (although I wouldn't dare assume it's the only one).
To make sure, check out the system log by double-clicking on the file in the directory called system.log. When I did that with the web server (supposedly) running, I saw this:
Jan 4 20:42:32 Hatter org.apache.httpd[1028]: (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
Jan 4 20:42:32 Hatter org.apache.httpd[1028]: Unable to open logs
Jan 4 20:42:32 Hatter com.apple.launchd[1] (org.apache.httpd[1028]): Exited with exit code: 1
Jan 4 20:42:32 Hatter com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
Jan 4 20:42:42 Hatter org.apache.httpd[1029]: (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
Jan 4 20:42:42 Hatter org.apache.httpd[1029]: Unable to open logs
Jan 4 20:42:42 Hatter com.apple.launchd[1] (org.apache.httpd[1029]): Exited with exit code: 1
Jan 4 20:42:42 Hatter com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
over and over, every ten seconds, for as long as the web server was active.
To fix that, just create that directory. Turn off the webserver, then from terminal:
mkdirhier /private/var/log/apache2/
and restart the webserver.

Similar Messages

  • Localhost access not working under Leopard

    When I attempt to set my browser to a URL like:
    http://localhost/~AllenW/UnityByAW/index.html
    I get a message telling me, "Forbidden: you do not have access to blah-blah on this server."
    Yet, if I boot back into Tiger and try the exact same thing, it works fine. Same user (AllenW) in both cases. I have no other trouble with file permissions.
    Any suggestions, anyone?

    This one had me losing some hair for a while, too, but I got it running again, after of course doing everything recommended here -- the problem seemed to be that apache was looking for its log directory, and there wasn't one. (I figured this out while trying to read the ErrorLog, which should have been the first thing I did, but live and learn.)
    So, in the finder, Go > Go To Folder, and type /private/var/log.
    There should be a folder called apache2 in that directory. If there's not, that's a problem (although I wouldn't dare assume it's the only one).
    To make sure, check out the system log by double-clicking on the file in the directory called system.log. When I did that with the web server (supposedly) running, I saw this:
    Jan 4 20:42:32 Hatter org.apache.httpd[1028]: (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
    Jan 4 20:42:32 Hatter org.apache.httpd[1028]: Unable to open logs
    Jan 4 20:42:32 Hatter com.apple.launchd[1] (org.apache.httpd[1028]): Exited with exit code: 1
    Jan 4 20:42:32 Hatter com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
    Jan 4 20:42:42 Hatter org.apache.httpd[1029]: (2)No such file or directory: httpd: could not open error log file /private/var/log/apache2/error_log.
    Jan 4 20:42:42 Hatter org.apache.httpd[1029]: Unable to open logs
    Jan 4 20:42:42 Hatter com.apple.launchd[1] (org.apache.httpd[1029]): Exited with exit code: 1
    Jan 4 20:42:42 Hatter com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds
    over and over, every ten seconds, for as long as the web server was active.
    To fix that, just create that directory. Turn off the webserver, then from terminal:
    mkdirhier /private/var/log/apache2/
    and restart the webserver.

  • [SOLVED] XAMPP 1.8.0 + virtual hosts = 403 access forbidden

    Hello, all. I am happy migrant from ubuntu to arch, but have problem, which i can't solve myself.
    I need to setup xammp for local development.
    My actions
    Install last xampp from aur
    Run lampp
    Open locahost, there is "xampp welcome page"
    Open localhost/phpmyadmin and get
    xampp new xampp security concept, blablabla
        Okay, add "Require all granted" in httpd-xampp.conf
    <Directory "/opt/lampp/phpmyadmin">
            AllowOverride AuthConfig Limit
            #Order allow,deny
            #Allow from all
            Require all granted
        </Directory>
        phpmyadmin came back
    I need virtual hosts, structure will be
    /home/$USER/Sites/{site1/index.html,site2,site3 etc.}
    Uncomment include vhosts in httpd.conf
    Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf
    Clear httpd-vhosts.conf and put there
    <VirtualHost *:80>
            DocumentRoot "/home/shara/Sites/mysite"
            ServerName mysite
            ServerAlias www.mysite
            ErrorLog "/home/shara/Sites/mysite-error_log"
            CustomLog "/home/shara/Sites/mysite-access_log" common
        </VirtualHost>
    Add new host in /etc/hosts
    127.0.0.1 mysite
    Set "User shara" and "Group www" in httpd.conf
    <IfModule unixd_module>
    User shara
    # commented out by lampp compatibility check
    #Group nogroup
    Group www
    </IfModule>
    Add group "groupadd www"
    Add user to group "usermod -aG www shara"
    Change htdocs group "chgrp -R www /opt/lampp/htdocs"
    Change sitedir group "chgrp -R www /home/shara/Sites"
    Change htdocs chmod "chmod 2775 /opt/lampp/htdocs"
    Change sitedir chmod "chmod 2775 /home/shara/Sites"
    Run xampp
    Open "mysite"
    Access forbidden Error 403
    Open "localhost"
    Access forbidden Error 403
    Open "localhost/phpmyadmin"
    Existing configuration file (./config.inc.php) is not readable.
    Oookay
        Set chmod 664 to /opt/lampp/phpmyadmin/config.inc.php
    Open "localhost/phpmyadmin"
        phpmyadmin works, but nothing else
        XAMPP 1.7 worked perfect with this config. Where is the FAIL?
    Last edited by Shara (2012-09-04 12:18:48)

    I did it.
    phpmyadmin new security problem solved with set passwords with /opt/lampp/lampp security (NO require all granted in httpd-xampp.conf)
    virtual hosts 403 problem solved with
    New instruction:
    *User name "shara" and group "www" is myown, you need to set yours
    INSTALL
    yaourt -S xampp
    /opt/lampp/lampp security
    VIRTUAL HOSTS
    Uncomment including vhosts in "/opt/lampp/etc/httpd.conf" and set "User shara" and "Group www"
    Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf
    <IfModule unixd_module>
    User shara
    # commented out by lampp compatibility check
    #Group nogroup
    Group www
    </IfModule>
    Clear "/opt/lampp/etc/extra/httpd-vhosts.conf" and add
    <VirtualHost *:80>
            DocumentRoot "/home/shara/Sites/mysite"
            ServerName mysite
            ErrorLog "/home/shara/Sites/mysite/mysite-error.log"
            CustomLog "/home/shara/Sites/mysite/mysite-access.log" common
        <Directory "/home/shara/Sites/mysite">
           Require all granted
        </Directory>
    </VirtualHost>
    Add new host in /etc/hosts
    127.0.0.1 mysite
    Add group
    groupadd www
    Add user to group
    usermod -aG www shara
    Change htdocs group
    chgrp -R www /opt/lampp/htdocs
    Change sitedir group
    chgrp -R www /home/shara/Sites
    Change htdocs chmod
    chmod 2775 /opt/lampp/htdocs
    Change sitedir chmod
    chmod 2775 /home/shara/Sites
    Set phpmyadmin config chmod
    chmod 664 /opt/lampp/phpmyadmin/config.inc.php
    Run lampp
    sudo /opt/lampp/lampp start
    WIN ^_^
    May i need to write archwiki manual?
    Last edited by Shara (2013-02-28 17:07:22)

  • Cross-origin resource sharing (CORS) does not work in Firefox 13.0.1 or 6.0.2

    I have a simple Java HttpServlet and a simple JSP page. They are both served by a WebSphere Application Server at port 80 on my local host. I have created a TCP/IP Monitor at port 8081 in
    Eclipse IDE so as to create a second origin. The protocol output further down comes from this monitor. This should work equally well on a simple Tomcat server.
    When I perform the cross-origin resource sharing test, I see that all of the correct TCP data is exchanged between Firefox and the web server (i.e. HTTP OPTIONS and its response followed by an HTTP POST and its response) but the data in the body of the POST response is never passed to the XMLHttpRequest javascript object's responseText or responseXML variables and I get a status equal to 0. If I click the button while pressing the keyboard control key then the test will work as it will not be performed as a cross-origin request.
    Here are all of the files used in this test:
    Servlet Cors.java
    <pre><nowiki>--------------------------------------------------------------------------------------
    package example.cors;
    import java.io.IOException;
    import java.util.Enumeration;
    import javax.servlet.Servlet;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Servlet implementation class Cors
    public class Cors extends HttpServlet {
    private static final long serialVersionUID = 1L;
    private static final String APPLICATION_XML_VALUE = "application/xml";
    * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response); // do the same as on the post
    * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setBufferSize(1024);
    response.setContentType(APPLICATION_XML_VALUE);
    response.setStatus(HttpServletResponse.SC_OK);
    String xml="<?xml version=\"1.0\"?>\n<hello>This is a wrapped message</hello>";
    response.setContentLength(xml.length());
    response.getWriter().append(xml);
    response.getWriter().close();
    * @see HttpServlet#doOptions(HttpServletRequest, HttpServletResponse)
    @SuppressWarnings("unchecked")
    protected void doOptions(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    Enumeration<String> headers=request.getHeaders("Origin");
    StringBuffer sb=new StringBuffer();
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Origin= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Origin", sb.toString());
    response.addHeader("Access-Control-Allow-Methods","POST, GET, OPTIONS");
    sb=new StringBuffer();
    headers=request.getHeaders("Access-Control-Request-Headers");
    while (headers.hasMoreElements()) {
    String o=headers.nextElement();
    if (sb.length()!=0) sb.append(", ");
    System.err.println("Access-Control-Request-Headers= "+o);
    sb.append(o);
    response.addHeader("Access-Control-Allow-Headers", sb.toString().toUpperCase());
    response.addHeader("Access-Control-Max-Age", Integer.toString(60*60)); // 1 hour
    response.addHeader("Content-Type","text/plain");
    response.addHeader("Allow", "GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS");
    response.getWriter().print("");
    And a simple JSP page test.jsp:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <%
    String url ="http://localhost:8081/cors/ping";
    String url_ctrl="http://localhost/cors/ping";
    %>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Test CORS</title>
    <script type="text/javascript">
    var invocation;
    var method='POST';
    var body = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><hello>Today</hello>";
    var buttontest2_label="Direct AJAX call";
    function callOtherDomain(event){
    invocation = new XMLHttpRequest();
    if(invocation) {
    var resultNode = document.getElementById("buttonResultNode");
    var resultMessage = document.getElementById("buttonMessageNode");
    resultNode.innerHTML = "";
    document.getElementById("buttontest2").value="Waiting response...";
    var url
    if (event.ctrlKey) url="<%=url_ctrl%>";
    else url="<%=url%>";
    resultMessage.innerHTML = "Sending "+method+" to URL: "+url;
    invocation.open(method, url, true);
    // invocation.withCredentials = "true";
    invocation.setRequestHeader('X-PINGOTHER', 'pingpong');
    invocation.setRequestHeader('Content-Type', 'application/xml');
    invocation.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
    invocation.onerror = function(errorObject) {
    display_progress(resultMessage, "***** error occured=" +errorObject);
    invocation.onreadystatechange = function() {
    display_progress(resultMessage, "onreadystatechange="+invocation.readyState+", status="+invocation.status+", statusText="+invocation.statusText);
    if(invocation.readyState == 4){
    document.getElementById("buttontest2").value=buttontest2_label;
    display_progress(resultMessage, "responseText="+invocation.responseText);
    resultNode.innerHTML = "Response from web service='"+invocation.responseText+"'";
    invocation.send(body);
    function display_progress(node, message) {
    node.innerHTML = node.innerHTML + "<br>" + message;
    </script>
    </head>
    <body>
    <p>The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)</p>
    <p><input type="button" id="buttontest2" onclick="callOtherDomain(event)" name="buttontest2" value="Waiting for page load..."></p>
    <p id="buttonMessageNode"></p>
    <p id="buttonResultNode"></p>
    <script type="text/javascript">
    document.getElementById("buttontest2").value=buttontest2_label;
    </script>
    </body>
    </html>
    When I click on the Direct AJAX call button, I get the following output on my page:
    The button will create a cross site request (Use the control key to disable this, i.e. no cross site request)
    Sending POST to URL: http://localhost:8081/cors/ping
    onreadystatechange=2, status=0, statusText=
    onreadystatechange=4, status=0, statusText=
    responseText=
    ***** error occured=[object ProgressEvent]
    Response from web service=''
    Here is the HTTP traffic produced:
    HTTP REQUEST
    OPTIONS /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    Origin: http://localhost
    Access-Control-Request-Method: POST
    Access-Control-Request-Headers: content-type,x-pingother,x-requested-with
    Pragma: no-cache
    Cache-Control: no-cache
    POST /cors/ping HTTP/1.1
    Host: localhost:8081
    User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip, deflate
    Connection: keep-alive
    X-PINGOTHER: pingpong
    Content-Type: application/xml; charset=UTF-8
    X-Requested-With: XMLHttpRequest
    Referer: http://localhost/cors/client/test.jsp
    Content-Length: 75
    Origin: http://localhost
    Pragma: no-cache
    Cache-Control: no-cache
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><hello>Today</hello>
    HTTP RESPONSE
    HTTP/1.1 200 OK
    Access-Control-Allow-Origin: http://localhost
    Access-Control-Allow-Methods: POST, GET, OPTIONS
    Access-Control-Allow-Headers: CONTENT-TYPE,X-PINGOTHER,X-REQUESTED-WITH
    Access-Control-Max-Age: 3600
    Content-Type: text/plain;charset=ISO-8859-1
    Allow: GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS
    Content-Language: en-CA
    Content-Length: 0
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    HTTP/1.1 200 OK
    Content-Type: application/xml
    Content-Length: 62
    Content-Language: en-CA
    Date: Wed, 11 Jul 2012 17:50:10 GMT
    Server: WebSphere Application Server/7.0
    <?xml version="1.0"?>
    <hello>This is a wrapped message</hello>
    --------------------------------------------------------------------------------------</nowiki></pre>

    No errors in error console. No effect using *. I tried using the dns name of my localhost both in the Firefox URL and in the javascript and I get exactly the same. I have spent a huge amount of time looking into this issue.
    One thing I noticed is that if I use the examples on the internet (http://arunranga.com/examples/access-control/preflightInvocation.html or http://saltybeagle.com/cors/) they work in the same browser. These examples however, are accessed through HTTP proxies.
    I am wondering if the issue has to do with using the same hostname just with different ports.

  • User Authentication Mechanism

    Hi All.
    I have some piece of code that I need your opinion of:
    It is deliberately "elongated" to show a bit of detail. Here we go then
    public boolean login(String usernameGiven, String passwordSupplied)
            try
                // Declare some constant values
                final String user = this.database_user;
                final String password = this.database_password;
                int resultCount = 0;
                // check for blank values
                if ((usernameGiven.trim().length() == 0) || (usernameGiven == null) || (passwordSupplied.trim().length() == 0) || (passwordSupplied == null))
                    throw new java.lang.NullPointerException("Invalid username or password!");
                // we now connect to MySQL
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                Connection connection = DriverManager.getConnection("jdbc:mysql://localhost/access?", user, password);
                Statement statement = connection.createStatement();
                String query = "SELECT * FROM users WHERE username='" + usernameGiven + "' AND password=MD5('" + passwordSupplied + "')";
                ResultSet rs = statement.executeQuery(query);
                // Get the results
                while (rs.next())
                    String name = rs.getString("username");
                    int flag = rs.getInt("flag");
                    resultCount++;
                    if (rs.getString("username").trim().length() != 0)
                        return true;
                    if (resultCount != 1)
                        return false;
                connection.close();
            catch (Exception e)
                return false;
            return false;
        }Thats the method. The aim of which is to authenticate users. What I had in mind is this:
    1. The username is unique
    2. Each username must be accompanied by a password
    3. The passwords may not necessarily have to be unique
    So if a user supplies a username and a password, there maybe one and only one match for the username and password supplied.
    If there is a match, only one result row gets returned. And if one row is returned, we have a "true" boolean value, else we have a "false".
    Thus my question is, is this the best way to go about it?

    I assume that, if username is unique then you also have a unique constraint on the table to make sure this is always true. If so then you really don't need to fetch the data from the cursor because the rs.next() will fail if the username and password are incorrect. You can simplifiy your code to
    ResultSet rs = statement.executeQuery(query);
    boolean found = rs.next();
    rs.close();
    statement.close();
    connection.close();
    return found;You may even want to change "SELECT * FROM ..." with "SELECT 1 FROM ..." so the database driver doesn't have to read a bunch of unnecessary data. I doubt you will notice any performance difference but it may make the code easier to maintain.
    Or, if you now how to create a stored procedure you can move the SQL into the procedure (passing it the username and password as parameters) and have it simply return a 1 if found or 0 if not. This will allow the database to skip the parse operation and result in even less network traffic. This also puts your authenticaton logic into a central location that can be called from different client apps, if necessary.
    Also, just FYI, you should check if username and password are null before checking if the length is zero. If it is null the length check will throw a null pointer exception. If you reverse these the null check will be true and the length check won't be performed.

  • MySQL DSNs

    Hi
    Is anyone out there able to do a quick test of MySQL DSNs?
    I am running CF10 beta on Win Vista Home Premium 64-bit, and trying to create DSNs to a  "MySQL 5.5.2-m2-community" DB, also installed locally.  When I do so, I get this:
    Connection verification failed for data source: dsntest
    com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
    The root cause was that: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
    Connecting to the same DB with the same credentials on CF8 and CF9 (and Railo, OpenBD and BD.NET) works fine.
    I have ruled out firewall issues.
    I'm less interested in people offering advice as to what might be the cause (Adobe are on the case, and they'll be best placed to advise there), but just interested if someone who has a comparable environment could try to set up a MySQL DSN and see if it works.
    If someone can get a DSN to work on  Win Vista Home Premium 64-bit, and MySQL 5.5.2-m2-community (or similar, if not exactly the same point release), then I'd be pretty happy to just put it down to a vagary of my PC, and advise Adobe to stop looking at it.
    On the other hand if someone else has the same problem, it would be handy to know.
    Cheers.
    Adam

    Geoff
    You may need to use MySQL Administrator to add a host from which root
    can connect, if you want to be able to log in as root from workstations.
    By default I believe root can only connect from localhost, ie the
    server itself, and this is a security feature.
    However, you can add additional hosts, including %.yourinternaldomain,
    and re-assign the privileges you want root to have. I find it a bit
    confusing, but root@localhost and root@somewhere_else seem to behave as
    different users.
    I personally leave root for just localhost access and use another user
    for workstation access - a bit safer and if I stuff up the other user if
    worst comes to worst I can fix it from a command line on the server.
    Hope this helps
    Rob
    Geoff Roberts wrote:
    >>>> On 6/08/2007 at 8:53 am, in message <[email protected]>,
    > Christopher Premo<[email protected]> wrote:
    >> I've just loaded it as well. I am running the Free NSure Audit (version
    >> 2.0.2) on my File servers. Currently, I'm just tracking Netware and
    >> eDirectory Logins and outs and intruder detections.
    >>
    >> I've tried to connect to the MySQL database via the MySQL ODBC driver,
    >> but have been unsuccessful so far. However, I have been able to use the
    >> MySQL Administration and Query Browser program to access the MySQL
    >> database on the Master server.
    >>
    >> I'm in the processes of developing instruction for our unit to "export"
    >> the Audit data, clear the MySQL database, and import the data into an
    >> Access database for audit analysis. Unfortunately, there are some manual
    >
    >> steps, but the process seems to be easy and quick to accomplish.
    >
    > I've been able to login remotely. Finally. However NOT as root. I had to
    > create another user and grant it all rights for everything. That works from
    > console and remotely, root still only works from the console. I'm wondering
    > if this is a 'feature'...
    >
    >
    > Regards
    >

  • Problem running reports

    I finally configured and was able to start the reports server on my Solaris box. The listener is running. When I run a report, either by command line using rwrun60 or from a form using RUN_REPORT_PRODUCT, the report kicks off without error but will not finish. I have to kill the process, and no output results. I had no problems when running from NT, so I'd bet the problem is in the configuration not the report itself. Any ideas?

    I'm still working this problem.
    I have a printer configured, and have no problem generating report in character mode and send directly to printer.
    I did have to add localhost access to Xwindows with
    $ xhost +localhost
    Now I have valid display value.
    Unfortunately, still having the same problem. rwrun60 kicks off, but gets hung. I have no problems running forms on the this server. Any other ideas?

  • MySQL Forum?

    MySQL is driving me *nuts*.
    Is this the right forum to seek help? I can't figure out why I can't login
    from anywhere except the console.
    I get
    Invalid Login - Please Try Again Access denied for user
    'root'@'groupwise.stmarks.college' (using password: YES)
    From the helpdesk installer (php)
    I can authenticate from the NW Server console as root with the same password
    ie I can use it to shutdown mysql with mysqladmin etc.
    But apparently from nowhere else.
    myphpadmin is not installed on this server since it didn't get mysql when it
    was built and I can't seem to get it working (dl the latest but the
    setup.php doesn't seem to do anything just put up a blank screen.)
    It's all documented in unixspeak so I'm probably doing it wrong anyway,
    there seems to be no specific instructions for Netware so I have no clue if
    I am doing it right, wrong or indifferent.
    Any help appreciated.
    Thanks
    Geoff Roberts
    Computer Systems Manager
    Saint Mark's College
    Port Pirie, South Australia
    geoffrobxATstmarksxdotppxdotcatholicxdoteduxdotaux
    Remove the x's

    Geoff
    You may need to use MySQL Administrator to add a host from which root
    can connect, if you want to be able to log in as root from workstations.
    By default I believe root can only connect from localhost, ie the
    server itself, and this is a security feature.
    However, you can add additional hosts, including %.yourinternaldomain,
    and re-assign the privileges you want root to have. I find it a bit
    confusing, but root@localhost and root@somewhere_else seem to behave as
    different users.
    I personally leave root for just localhost access and use another user
    for workstation access - a bit safer and if I stuff up the other user if
    worst comes to worst I can fix it from a command line on the server.
    Hope this helps
    Rob
    Geoff Roberts wrote:
    >>>> On 6/08/2007 at 8:53 am, in message <[email protected]>,
    > Christopher Premo<[email protected]> wrote:
    >> I've just loaded it as well. I am running the Free NSure Audit (version
    >> 2.0.2) on my File servers. Currently, I'm just tracking Netware and
    >> eDirectory Logins and outs and intruder detections.
    >>
    >> I've tried to connect to the MySQL database via the MySQL ODBC driver,
    >> but have been unsuccessful so far. However, I have been able to use the
    >> MySQL Administration and Query Browser program to access the MySQL
    >> database on the Master server.
    >>
    >> I'm in the processes of developing instruction for our unit to "export"
    >> the Audit data, clear the MySQL database, and import the data into an
    >> Access database for audit analysis. Unfortunately, there are some manual
    >
    >> steps, but the process seems to be easy and quick to accomplish.
    >
    > I've been able to login remotely. Finally. However NOT as root. I had to
    > create another user and grant it all rights for everything. That works from
    > console and remotely, root still only works from the console. I'm wondering
    > if this is a 'feature'...
    >
    >
    > Regards
    >

  • Cotejamiento MySQL

    Hola
    Como cambio la tabla de caracteres de una base de datos, sus
    tablas y todos
    los campos en unas pocas instrucciones SQL?. Porque mi
    proveedor tiene la
    MySQL en suizo (latin1_swedish_ci) y si creas una BD te la
    crea con tablas y
    campos en suizo, y cuando guardas datos con Ñ, acentos,
    etc. te guarda
    garabatos.
    Y ya de paso, que es mejor usar:
    latin1_spanish_ci
    utf8_spanish_ci
    Gracias
    "El que no encuentra diversión en todo lo que hace,
    necesita reorganizar su
    vida lo antes posible, pues el gozo de lo que hacemos en la
    vida es la base
    de la felicidad, la eficiencia y el éxito"

    Geoff
    You may need to use MySQL Administrator to add a host from which root
    can connect, if you want to be able to log in as root from workstations.
    By default I believe root can only connect from localhost, ie the
    server itself, and this is a security feature.
    However, you can add additional hosts, including %.yourinternaldomain,
    and re-assign the privileges you want root to have. I find it a bit
    confusing, but root@localhost and root@somewhere_else seem to behave as
    different users.
    I personally leave root for just localhost access and use another user
    for workstation access - a bit safer and if I stuff up the other user if
    worst comes to worst I can fix it from a command line on the server.
    Hope this helps
    Rob
    Geoff Roberts wrote:
    >>>> On 6/08/2007 at 8:53 am, in message <[email protected]>,
    > Christopher Premo<[email protected]> wrote:
    >> I've just loaded it as well. I am running the Free NSure Audit (version
    >> 2.0.2) on my File servers. Currently, I'm just tracking Netware and
    >> eDirectory Logins and outs and intruder detections.
    >>
    >> I've tried to connect to the MySQL database via the MySQL ODBC driver,
    >> but have been unsuccessful so far. However, I have been able to use the
    >> MySQL Administration and Query Browser program to access the MySQL
    >> database on the Master server.
    >>
    >> I'm in the processes of developing instruction for our unit to "export"
    >> the Audit data, clear the MySQL database, and import the data into an
    >> Access database for audit analysis. Unfortunately, there are some manual
    >
    >> steps, but the process seems to be easy and quick to accomplish.
    >
    > I've been able to login remotely. Finally. However NOT as root. I had to
    > create another user and grant it all rights for everything. That works from
    > console and remotely, root still only works from the console. I'm wondering
    > if this is a 'feature'...
    >
    >
    > Regards
    >

  • Using the ipad for coding while travelling (mobile NAS?)

    Hi there,
    I am aware this sounds a bit cooky; getting a Macbook air is certainly easier, but:
    I am looking for input from other people who are using their iPad for coding.
    Apps like textastic require internet(/server) access, however sometimes that's neither available nor preferable, e.g. when travelling in foreign countries.
    For building lightweight php sites or small CMS based sites, it would be perfect to have some sort of mobile localhost access,
    or at least something that doesn't require internet.
    Wouldn't it be possible to run a webserver from let's say, a small wireless HDD/NAS?
    Don't know any really small options. Any reccomendations?
    Another way would be to install lighthttpd via cydia I suppose, but can textastic even access this then?
    Any other ideas I am missing?
    thx folks!
    Phil

    Check out pogo plug device, it allows you to upload camera roll via wifi.

  • Doubts about HTTPS requests and Java proxy

    Hello,
    I need help about SSL connections and Java.
    I'm developing a HTTP/S proxy with Java. To test my proxy, I use Firefox. I configure the proxy option in the browser. The proxy works good with HTTP requests, but with HTTPS requests doesn't work and I don't know why.
    I explain the steps that I do for a HTTPS request:
    * The browser sends a CONNECT message to the proxy.
    I check that the proxy receives the CONNECT request correctly.
    * The proxy establish a secure connection with the content server.
    I use an SSLSocket to connect with my content server, and the SSL handshake is succesful.
    * The proxy sends a 200 HTTP response to the client:
    I send
    HTTP/1.0 200 Connection established[CRLF]
    [CRLF]
    to the application client (Firefox)
    * The proxy sends/receive data to/from Firefox/content server
    I have a Socket between Firefox and my proxy, and a SSLSocket between my proxy and my content server. I use two threads to communicate the client and the server.
    Java code:
    //Thead server-->proxy-->application(Firefox)
    ThreadComm tpa = new ThreadComm(bis_serverSSL, bos_app);
    //Thread application(Firefox)-->proxy-->server
    ThreadComm tap = new ThreadComm(bis_app, bos_serverSSL);
    The "tpa" thread reads from the SSLSocket between the proxy and the server and sends data to the Socket between the proxy and Firefox.
    The "tap" thread reads from the Socket between the proxy and Firefox and sends data to the SSLSocket between the proxy and the server.
    This is the class ThreadComm:
    public class ThreadComm extends Thread{
        private BufferedInputStream bis = null;
        private BufferedOutputStream bos = null;
        public ThreadComm(BufferedInputStream bis, BufferedOutputStream bos) {
            this.bis = bis;
            this.bos = bos;
        @Override
        public void run() {
            int b = -1;
            FileOutputStream fos = null;
              do {
                   try {
                        b = bis.read();
                        System.out.print((char) b);
                        fos.write(b);
                        bos.write(b);
                        bos.flush();
                   } catch (Exception ex) {
                        Logger.getLogger(ThreadAplicacionProxy.class.getName()).log(Level.SEVERE, null, ex);
                        //b=-1;
              } while (b != -1);
        }But this doesn't work and I don't know why.      
    I have an Apache server with the mod_ssl enabled as content server, I can send requests (with Firefox) to the port 80(HTTP request) and 443(HTTPS request) without use my proxy and it works. If I use my proxy, HTTP request works but with HTTPS request doesn't work, I look the log of Apache and I see:
    [Tue Apr 27 17:32:03 2010] [info] Initial (No.1) HTTPS request received for child 62 (server localhost:443)
    [Tue Apr 27 17:32:03 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue Apr 27 17:32:03 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue Apr 27 17:32:03 2010] [info] [client 127.0.0.1] Connection closed to child 62 with standard shutdown (server localhost:443)
    Why it say? Invalid method in request \x80\x7f\x01\x03\x01 , my proxy sends the data that the Firefox sends.
    I think than I have follow the explanations of [1] but doesn't work, I have problems in implementation in Java but I don't know where.
    I appreciate any suggestions.
    Thanks for your time.
    [1] http://www.web-cache.com/Writings/Internet-Drafts/draft-luotonen-web-proxy-tunneling-01.txt

    ejp, I have checked the socket between the proxy and server and ... You are right! , I was using the port 80 instead of the 443 (incredible mistake!, I'm sorry). I was convinced that I was using the port 443... Well, is a little step, but I still have not won the war :)
    If I see the log files of Apache, We can see that something goes wrong.
    localhost-access.log
    >
    127.0.0.1 - - [04/May/2010:17:44:48 +0200] "\x 80\x 7f\x01\x03\x01" 501 219
    >
    localhost-error.log
    >
    [Tue May 04 17:44:48 2010] [info] Initial (No.1) HTTPS request received for child 63 (server localhost:443)
    [Tue May 04 17:44:48 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue May 04 17:44:48 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 17:44:48 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    I think that this happens because Apache receives the data without decrypt, this is the reason because in the log we can see the "Invalid method in request \x80\x7f\x01\x03\x01". This supposition is true?
    ejp, you say that the "Termination is quite tricky." I have changed my code following yours suggestions (using the join and the shutdownOutput) but the threads don't die.
    I explain you what I do:
    (in time 1)
    I launch the thread (threadFirefoxToApache) that reads data from Firefox and sends to Apache.
    I launch the thread (threadApacheToFirefox) that reads data from Apache and sends to Firefox.
    (in time 2)
    threadFirefoxToApache sends the firts data to the server.
    threadApacheToFirefox is waiting that the server says something.
    (in time 3)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox sends data to Firefox.
    (in time 4)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox is waiting that Firefox says something.
    and they are waiting... and never finish.
    In time 2, these first data are encrypted. The server receives these data and It doesn't understand. In time 3, the server sends a HTTP response "501 Method Not Implemented", here there is a problem because this data must be encrypt. According to the documentation that I read, the proxy cannot "understand" this data but I can "understand" this data. What's happen?
    Firefox encrypt the data and send to the proxy. This It's correct.
    The proxy encrypt the data another time, because I use the SSLSocket to send the data to the server. Then the server receives the data encrypted two times, when decrypt the data gets the data encrypted one time. And this is the reason why the server doesn't understand the data that sends Firefox. It's correct? May be.
    Then If I want that the server receives the data encrypted one time I need to use the socketToServer, It's correct?
    I will supposed that yes. If I use the socketToServer, the proxy doesn't understand nothing, because the data received from the socketToServer are encrypted (I only see simbols), but the Apache log says that there is a problem with the version? (If I use the socketToServer the threads die)
    >
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 read finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write change cipher spec A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 flush data
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1756): OpenSSL: Handshake: done
    [Tue May 04 19:55:42 2010] [info] Connection: Client IP: 127.0.0.1, Protocol: TLSv1, Cipher: RC4-MD5 (128/128 bits)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1817): OpenSSL: read 5/5 bytes from BIO#29bd910 [mem: 29ea0a8] (BIO dump follows)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1750): -------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1789): | 0000: 80 7f 01 03 .... |
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1793): | 0005 - <SPACES/NULS>
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1795): ------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] SSL library error 1 reading data
    [Tue May 04 19:55:42 2010] [info] SSL Library Error: 336130315 error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    What option is the correct? I need use the SSLSocketToServer or socketToServer to send/read the data to/from the server?. Use the SSLSocket has sense because the data travel in a secure socket, but use the Socket also has sense because the data are encrypted and they are protected by this encription. It's complicated...

  • IWA authentication procedure foo APACHE websever

    I am not able to configure the single sign on with windows native authetnication.Which I believe is IWA at OAM end. I assume that once you log onto windows domain and then when you open access protected URL (http://localhost/access/oblix in my case) it should go through and not ask for authentication again.
    I have installed webgate on Apache 2.0.52.
    Could any of you please help me with the steps that need to be done setup IWA.
    Thanks,

    We are having a similar requirement from our end. To make situation worst I do not even have an idea about an approach.
    What are the ways that we can use windows credentials to authenticate against IIS with tomcat?
    any help is greatly appreciated.
    R.

  • Mysql will not let me login remotly

    Hello all this is the contents of the /etc/my.conf have commented out the client stuff as well as the skip networkingline.  Tried adding a bind-address = X.X.X.X line but mysql would not start so i commented it out as well. Do i need the client stuff?
    The following options will be passed to all MySQL clients
    [client]
    password        = your_password
    port            = 3306
    socket          = /tmp/mysql.sock
    # Here follows entries for some specific programs
    # The MySQL server
    [mysqld]
    port            = 3306
    socket          = /tmp/mysql.sock
    datadir         = /var/lib/mysql
    skip-locking
    key_buffer = 16M
    max_allowed_packet = 1M
    table_cache = 64
    sort_buffer_size = 512K
    net_buffer_length = 16K
    myisam_sort_buffer_size = 8M
    #bind-address = 68.144.12.210
    there is no firewall on this machine and i have opened a port for
    I restarted the database and ran these commands they seemed to work ok something about rows being updated
    update db set Host='all' where Db='mydb';
    update user set Host='all' where user='myuser';
    Tried connecting to it from a remote linux machine like this and get an error
    mysql -u myuser -h 68.144.12.210 -p
    Enter password:
    ERROR 2013 (HY000): Lost connection to MySQL server during query
    there is no firewall on this machine and i have opened a port for 3306 on the hardware firewall/router.
    Last edited by c0mputerking (2009-04-15 18:56:16)

    Thank you for your reply i added the mysqld: ALL to my hosts file as you suggested and now things are working.  However i did a terrible nasty hack to make mysql work and i need a hand fixing it.  My mysql command prompt skill are fairly weak and ran a command that effectively looked me out of mysql see below or in my past post on this thread.  I changed the root users host allow to all and now localhost access is denied the way i am getting around this is by adding skip-grant-tables to the /etc/my.cnf file.
    Could you please help me with some basic user management? i would like to set a password for root as right now it has none this i can probably figure out.  However how do i change root to only have access to localhost again and my new remote user to have access from any or every remote address?  How do i list the users and there permissions/allowed hosts maybe point me to some good docs too thanks.
    update db set Host='all' where Db='mydb';
    update user set Host='all' where user='myuser';

  • Since updating to FF 5.0, I can no longer access my MAMP server (Mac/Apache/MySQL/PHP) Wordpress development site on my Localhost computer (MacBook Pro, OSX 10.6.4). Why not? It's running EXTREMELY SLOWLY when I try to access the pages on my site.

    PROBLEM WITH LOCALHOST SITE LOADING VERY SLOWLY (IF AT ALL) AFTER I UPGRADED FIREFOX TO 5.0 FROM 3.6
    I have been successfully running MAMP, a personal Apache server with MySQL, on my MacBook Pro using OSX 10.6.4. This is so I can create a Wordpress blog locally to later upload to my remote website.
    Yesterday, I updated my Firefox browser from 3.6 to 5.0 (and added the following extensions: Better Privacy 1.51, Bloody Vikings! 0.5.3, Copy as HTML Link 2.0, Firebug 1.7.3, Firepicker 1.3.4, NoScript 2.1.1.2, and Ultimate Free Stock Photo Search Add-on 1.0.1, TypeGauge 0.5, and Zotero 2.1.8)
    Now, I'm having trouble: At first, MySQL database server in MAMP wouldn't turn on at all. I restarted both Firefox and MAMP a few times. Finally, MySQL turned on and MAMP started to load into the browser. But it got only as far as the top bar on the MyPHP page, and would not load the rest of the page. Finally, pages do load, but I'm getting a "Waiting for localhost…" message looping at the lower left screen for a VERY LONG TIME (30-60 sec?) before my localhost web page appears (sometimes it says "Read localhost…").
    But even when the localhost pages appears, it continues to run VERY SLOWLY when the browser tries to load the pages (although it runs a little less slowly when I use only the backend Wordpress administration pages). In short, it seems that something is stopping Firefox from accessing the MySQL database properly so that my site can show up as quickly as it did before.
    Since this mess only happened after I upgraded to Firefox 5.0 and added the plugins, and nothing else has changed on my computer, it seems the Firefox 5.0 app and/or an extension is the culprit.
    Can you advise me ASAP about what to do? If not, I'll have to downgrade to 4.0 or something. I've got deadlines to meet.
    Thank you.

    PROBLEM WITH LOCALHOST SITE LOADING VERY SLOWLY (IF AT ALL) AFTER I UPGRADED FIREFOX TO 5.0 FROM 3.6
    I have been successfully running MAMP, a personal Apache server with MySQL, on my MacBook Pro using OSX 10.6.4. This is so I can create a Wordpress blog locally to later upload to my remote website.
    Yesterday, I updated my Firefox browser from 3.6 to 5.0 (and added the following extensions: Better Privacy 1.51, Bloody Vikings! 0.5.3, Copy as HTML Link 2.0, Firebug 1.7.3, Firepicker 1.3.4, NoScript 2.1.1.2, and Ultimate Free Stock Photo Search Add-on 1.0.1, TypeGauge 0.5, and Zotero 2.1.8)
    Now, I'm having trouble: At first, MySQL database server in MAMP wouldn't turn on at all. I restarted both Firefox and MAMP a few times. Finally, MySQL turned on and MAMP started to load into the browser. But it got only as far as the top bar on the MyPHP page, and would not load the rest of the page. Finally, pages do load, but I'm getting a "Waiting for localhost…" message looping at the lower left screen for a VERY LONG TIME (30-60 sec?) before my localhost web page appears (sometimes it says "Read localhost…").
    But even when the localhost pages appears, it continues to run VERY SLOWLY when the browser tries to load the pages (although it runs a little less slowly when I use only the backend Wordpress administration pages). In short, it seems that something is stopping Firefox from accessing the MySQL database properly so that my site can show up as quickly as it did before.
    Since this mess only happened after I upgraded to Firefox 5.0 and added the plugins, and nothing else has changed on my computer, it seems the Firefox 5.0 app and/or an extension is the culprit.
    Can you advise me ASAP about what to do? If not, I'll have to downgrade to 4.0 or something. I've got deadlines to meet.
    Thank you.

  • Server 2012 Local Shares - Cannot access using \\IP but works via \\localhost

    I've been stuck on this problem for the last couple of days and I can't find a solution on the internet that works.
    I have a Windows Server 2012 instance running on Amazon AWS with a public IP address. I am using it as an SCCM (System Center 2012 Configuration Manager) Server (so it is a Domain Controller also). I realize that it's probably not best practice to use a public
    IP here, but I'm in a weird position where we are not connecting any of the Clients to the actual Domain (they are Workgroup computers all around the world). The goal here is to use SCCM to deploy software packages to all of the Clients, which are not on the
    same LAN/VPN/Domain.
    This is my first time setting something up like this, so I followed this guide. I am able to get the Workgroup computers to show up in the SCCM Server Device list (via manual client install), but these Workgroup computers need access to the Server's shares
    to download the software packages. On Amazon, I opened all ports and allowed all IPs to communicate with the Server. I am able to RDP into the Server from any Workgroup computer using the IP address, but cannot access the Server's SMB shares even though I
    am attempting the connection with a Domain account with access to those shares.
    I decided to see if I can even connect to the shares locally on the Server. Logging in with an account with administrator privileges, I can access \\localhost\shares without
    a problem. But when I try to do \\X.X.X.X\shares,
    it asks for user/pass (confirming that it is able to connect) and I put in the correct credentials for the account with administrator privileges (using DOMAIN\ACCOUNT), but it continually says that the user/pass is incorrect. After I click cancel, an error
    comes up saying "Error Code 0x80004005 Unspecified Error".
    It is crazy to me that the administrator account that is logged in cannot access the local shares via the public IP address... obviously no remote computer would be able to access the shares if the Server itself cannot. I have tried disabling the firewall,
    but this makes no difference. I am able to ping the IP from the Server and I get a response.
    I have searched around the internet for a solution but nothing has worked. Here are some of the suggestions I've found (that have failed): 
    - Making sure "Client for Microsoft Networks" and "File and Printer Sharing for Microsoft Networks is installed and enabled for the Ethernet Adapter 
    - Enabling NetBIOS over TCP/IP in IPv4 properties 
    - Ensuring IPv6 is disabled 
    - Server, TCP/IP NetBIOS Helper, and Workstation (services) are all running
    Any ideas? Sorry for such a long post, just wanted to get as many details as I could. All help is appreciated. Thanks! 
    Shawn

    Hi,
    Are there any anti-virus software or other third party products running on the server? If yes, please disable them to see if it resolves the issue.
    Here is a similar thread below I suggest you refer to:
    Shared Folder Access
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/c0bbbe8e-55d8-467c-bb85-2b98f122cc15/shared-folder-access?forum=winserverPN
    Best Regards,
    Amy

Maybe you are looking for

  • Cancelled PR

    All, Suppose I have cancelled a PR by going to txn ME55 , now there is any report where I can see the cancelled PR's ? After cancelling a PR in ME55 , then that PR is not visible after executing ME55 . How I can find out that ? No workflow here . Kin

  • New to the iPad world. Need PDF help!

    I have some work related ebooks online that come up on the web page as a PDF. I don't see where I can save the PDF so I can view it later offline, like on a PC. I need to be able to review them when on an airplane or when Internet is not available. S

  • I hope I am one of the masses - want to sync Googl...

    I love the phone !! - but I think I am making something quite simple into something complex - please help :-) I 'just' want the Nokia5800 to sync with my Google Calendar, Google Contacts and Google Mail. ++++++ Calendar (Syncs - but not automatically

  • Sun Application Server 8.1 remote deplyment database connection

    I use the deploy to Remote server to deply a project to Sun Application Server 8.1. When i try to connect to the database I get connection error javax.servlet.ServletException: javax.faces.FacesException: java.sql.SQLException: Error in allocating a

  • Error while installing Oracle 11.5.9 on Windows NT

    Hi, Please help me out with this difficulty i m facing. The oracle applications installation is being completed successfully. The only problem is that i cannot log in. the html page for logging in is showing error. Following is the error it is showin