DBConsole : running on port 5500 instead of 1158

i am upgrading my database from 8i to 10G.
everything was fine. i was working with OEM-database controll in 10G on port 1158 as per the documentation.
but suddently port 1158 stopped responding and i got PAGE NOT FOUND exceptions in browser, but at the same time when i tried http://localhost:5500/em and it was working !!!
can anybody tell me the reason ?
thanks in advance.
-imran

You're welcome. Typing emctl without options you can get options :
$ emctl
TZ set to Europe/Vatican
Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
Copyright (c) 1996, 2005 Oracle Corporation.  All rights reserved.
Invalid arguments
Unknown command option
Usage::
   Oracle Enterprise Manager 10g Database Control commands:
       emctl start| stop| status| setpasswd dbconsole
       emctl secure <options>
       emctl set ssl test|off|on em
       emctl set ldap <host> <port> <user dn> <user pwd> <context dn>
emctl blackout options can be listed by typing "emctl blackout"
emctl config options can be listed by typing "emctl config"
emctl secure options can be listed by typing "emctl secure"
emctl ilint  options can be listed by typing "emctl ilint"
emctl deploy  options can be listed by typing "emctl deploy"
$                                              

Similar Messages

  • How can I tell what service is running on port 8008?

    I have installed Rumpus on a Mini running SLS 10.6.4 and I am trying to configure the web based file sharing module. It defaults to port 80 but that is blocked by my ISP, so I am trying to set it to 8008 instead. I have opened the port in my router, but Rumpus gives me this alert:
    +"Another service is already running on the defined Web port. Turn off the other Web service so that the Rumpus Web server can accept connections.+
    +OS X Personal Web Sharing can be disabled by unchecking the 'Personal Web Sharing' option on the 'Sharing' panel of the System Preferences window.+
    +You will need to stop and restart Rumpus after disabling the other Web server for Rumpus to begin accepting connections."+
    I have been unable to find any services running on port 8008. Web service is https only via port 443. Other running services include Address Book, AFP, DNS, FTP, iCal, OD, Push, and SMB.
    How can I sniff this out?

    I don't have a server to look at at the moment, but I don't think there's an option to set the iCal service to SSL only. IIRC you can set it to "Use" mode, where it serves over both plain (port 8008) and SSL (port 8443), or you can set it to "Redirect" in which case it still listens on port 8008, but just serves HTTP redirects to the SSL/8443 port.
    Anyway, even if you can get iCal server to stop using port 8008, I wouldn't recommend using that port for something else because iCal clients are likely to try connecting to 8008 and get confused if they get something other than calendars back...

  • Can't connect to unc path, UNC using port 80 instead port 445

    Can't connect to unc path, UNC using port 80 instead port 445,
    Please advise me,
    Regards,
    Lior

    Hi,
    Can you successfully ping the UNC server? If the ping fails , it means that the UNC server is down, in this case, you should find the UNC server and check the running status.
    If you can successfully ping the UNC server, the port number you specify should not be 80, because the 80 port is already used by default, So, in this case, you should ask the UNC server administrator to change to the default port number 445.
    Regards
    Wade Liu
    TechNet Community Support

  • Changing the 10g EM Control console port from 5560  to 1158?

    Hi
    I have 2 instances of 10g running on server
    for the first Server and EM Control port 1158
    and 2nd is 5560
    i want to run both the EM controls on 1158
    Is it possible?How
    i know we need to play with emom.properties but in sysman/admin
    i see these files
    emomslogging.properties.template
    emoms.properties.template
    emomslogging.properties
    emoms.properties.emca
    emomsintg.xml
    i dont which exactly is that file
    and what entry we have to make?
    Thanks
    Gagan

    See my reply in your other post:
    change the EM console port 5560 to 1158?

  • How can I enable embedded pl/sql gateway to run on port 80

    I have a new 11G install on OEL 4.0, database created. I would like to be
    able to access the instance using the pl/sql gateway. Works fine with
    port 8080, the default. How to I enable it to run on port 80?
    I found this statement in the following docuementation:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb22pro.htm#ADXDB2500
    Using HTTP(S) on Nonstandard Ports
    By default, HTTP listens on a nonstandard, unprotected port: 8080. To use HTTP(S) on
    the standard port, such as 80, your DBA must chown the TNS listener to setuid ROOT
    rather than setuid ORACLE, and configure the port number in the Oracle XML DB
    configuration file /xdbconfig.xml.I have root priviledges on the box.
    I've tried setting the listener file permissions:
    chown root:dba /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    chmod 6775 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    Also put root in the dba group.
    The permissions turn out like this:
    -rwsr-sr-x 1 root dba 830854 Jun 17 21:04 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    I stopped the listener, bounced the database, and started the listener again.
    But it still shows the process being owned by oracle:
    oracle 29682 1 0 21:08 ? 00:00:00 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr LISTENER -inherit
    Changing the port is easy:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings
    * can interfere with Web browsing.I can set the port. Just can't talk to it.
    This is the entry from the listener log:
    <msg time='2008-07-03T15:40:09.741-06:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='hostname'
    host_addr='xxx.xxx.xxx.xxx'>
    <txt>TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    Linux Error: 13: Permission denied
    </txt>
    </msg>
    So this looks like an permissions problem. But where? I posted
    this on the apex forum here:
    Re: How can I enable embedded pl/sql gateway to run on port 80
    They suggested asking here.

    No, that thread did not provide the information that I need. Some more data:
    I have the port set to 8080:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.
    I can set the port. Just can't talk to it.

  • After upgrade to 10.6 Apache is running but port 80 is not open

    Hello,
    I just upgraded from 10.5 to 10.6. The server is a simple set up that is only used for web hosting. Everything appears to work fine except the browser can't connect. Server Admin and Activity Monitor shows Apache running. Port scan from another machine does not show 80 or 8080 as open ports. However it does show ftp 21, ssh 22 and others open. I double-checked firewall settings and even turn of the firewall software and it still does not work. The 10.5 setup was a clean install and manual migration from 10.4 so I don't that has anything to do with it. I'm not sure what to try next.
    Below is the Setup.log created during the upgrade process:
    10:34:56.152 local KDC set up
    10:34:56.292 Beginning setup migration extras
    10:34:57.828 Starting migration extras with arguments:
    --sourceRoot /Previous System --targetRoot / --purge 1 --language en --sourceVersion 10.5.8 --sourceType System
    10:34:58.656 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/1_SystemKeychainReady.sh
    RESULT CODE: 0
    STDOUT: certs = emptydictionary
    accounts:error = <62706c69 73743030 d4010203 04050626 27582476 65727369 6f6e5824 6f626a65 63747359 24617263 68697665 72542474 6f701200 0186a0a8 07081112 1a1b1c22 55246e75 6c6cd409 0a0b0c0d 0e0f1058 4e53446f 6d61696e 5a4e5355 73657249 6e666f56 4e53436f 64655624 636c6173 73800280 031103e8 80075f10 1c636f6d 2e617070 6c652e73 65727665 726d6772 5f616363 6f756e74 73d30c13 14151618 574e532e 6b657973 5a4e532e 6f626a65 63747380 06a11780 04a11980 055f1016 4e534c6f 63616c69 7a656444 65736372 69707469 6f6e5f10 164e6f20 4c444150 206d6173 74657220 70726573 656e74d2 1d1e1f20 5a24636c 6173736e 616d6558 24636c61 73736573 5c4e5344 69637469 6f6e6172 79a21f21 584e534f 626a6563 74d21d1e 2324574e 53457272 6f72a225 21574e53 4572726f 725f100f 4e534b65 79656441 72636869 766572d1 28295472 6f6f7480 01000800 11001a00 23002d00 32003700 40004600 4f005800 63006a00 71007300 75007800 7a009900 a000a800 b300b500 b700b900 bb00bd00 d600ef00 f400ff01 08011501 18012101 26012e01 31013901 4b014e01 53000000 00000002 01000000 00000000 2a000000 00000000 00000000 00000001 55>
    accounts:errorDescription = "No LDAP master present"
    accounts:errorCode = 1000
    STDERR: 2009-10-15 10:34:58.407 serveradmin[607:903] -[CertsRequestHandler(KeychainOpenSSLExport) existingPassphraseInKeychainForSha1DigestString:]: SecKeychainFindGenericPassword(5151426A4CB1E7F5E1D9817914F586474E2A0241) status: -25300
    2009-10-15 10:34:58.547 serveradmin[607:903] --Module NSBundle </usr/share/servermgrd/bundles/servermgr_certs.bundle> (loaded)'s response has retain count of 3.
    2009-10-15 10:34:58.620 serveradmin[609:903] -[AccountsRequestHandler(AccountsOpenDirectoryHelpers) openLocalLDAPNodeIfNeeded]: dsLocalLDAP = (null), error = Error Domain=com.apple.OpenDirectory Code=2000 UserInfo=0x10050cc80 "Unable to open Directory node with name /LDAPv3/127.0.0.1."
    2009-10-15 10:34:58.632 serveradmin[609:903] -[AccountsRequestHandler(AccountsOpenDirectoryHelpers) openLocalLDAPNodeIfNeeded]: dsLocalLDAP = (null), error = Error Domain=com.apple.OpenDirectory Code=2000 UserInfo=0x100217b70 "Unable to open Directory node with name /LDAPv3/127.0.0.1."
    10:34:58.945 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh
    RESULT CODE: 0
    STDOUT: /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Migrating DNS config files...
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Ensuring DNS configuration files are the correct version...
    dns:configuration:acls:array_index:0:addressMatchList:_arrayindex:0 = "localnets"
    dns:configuration:acls:arrayindex:0:name = "com.apple.ServerAdmin.DNS.public"
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:secondaryZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:reverseZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:primaryZones = emptyarray
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:allow-recursion = ""com.apple.ServerAdmin.DNS.public";"
    dns:configuration:views:arrayid:BD7790B8-2EEC-4FDD-A1D3-D8BAF698CA69:name = "com.apple.ServerAdmin.DNS.public"
    dns:configuration:isBonjourClientBrowsingEnabled = no
    dns:configuration:loggingLevel = "info"
    dns:upgradeSuccess = yes
    dns:readStatus = 0
    dns:dnsConfigurationFileVersion = 2
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: Migrating the launchd plist state...
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: /Previous System/private/var/db/launchd.db/com.apple.launchd/overrides.plist not found
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: no launchd overrides file: /Previous System/private/var/db/launchd.db/com.apple.launchd/overrides.plist; checking state in launchd plist
    /System/Library/ServerSetup/MigrationExtras/10_dnsconfigmigrator.sh: named disabled in /Previous System/System/Library/LaunchDaemons/org.isc.named.plist; not starting
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:34:59.411 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-afctlmigrator.pl
    RESULT CODE: 0
    STDOUT: AFCTL_DISABLED = true AFCTL_ENABLED = disabled AFCTL_STATE =
    state = false
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    mv: rename //private/var/db/af/whitelist to //private/var/db/af/whitelist.previous: No such file or directory
    mv: rename //private/var/db/af/blacklist to //private/var/db/af/blacklist.previous: No such file or directory
    mv: rename /Previous System/private/var/db/af/whitelist to //private/var/db/af/whitelist: No such file or directory
    mv: rename /Previous System/private/var/db/af/blacklist to //private/var/db/af/blacklist: No such file or directory
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:34:59.727 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-dsmconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    purge: 1
    sourceRoot: /Previous System
    sourceType:
    sourceVersion:
    targetRoot: /
    language:
    10:35:00.664 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-ftpconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: Print: Entry, ":Disabled", Does Not Exist
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:01.463 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-ipfilterconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:01.778 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-natconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:02.456 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/30-snmpconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: launchctl: Error unloading: org.net-snmp.snmpd
    10:35:04.637 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/42_odconfigmigrator
    RESULT CODE: 0
    STDOUT: /usr/sbin/slapconfig -migrateldapserver 1 /Previous System / 10.5.8 System en
    STDERR: sso_util command failed with status 2
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    Not an ldapmaster so there is no local node users to copy.
    10:35:04.829 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/45-restoreUsersFolder.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:05.614 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/50-vpnconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR: launchctl: Error unloading: com.apple.ppp.l2tp
    launchctl: Error unloading: com.apple.ppp.pptp
    10:35:05.695 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/51_afpconfigmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: No old afp settings record to update
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:35:08.617 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/58_jabbermigrator.pl
    RESULT CODE: 0
    STDOUT: Warning, /usr/libexec/jabberconfigmigrator.pl returned error status: 256:
    STDERR: Print: Entry, ":org.jabber.jabberd:Disabled", Does Not Exist
    Print: Entry, ":org.jabber.jabberd:Disabled", Does Not Exist
    10:35:10.501 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/59_calendarmigrator.py
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:15.088 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_mysqlconfigmigrator
    RESULT CODE: 0
    STDOUT: mysql:upgradeStatus = 0
    STDERR:
    10:35:15.508 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_printconfigmigrator
    RESULT CODE: 0
    STDOUT: print:status = 0
    STDERR:
    10:35:16.672 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/60_swupdateconfigmigrator
    RESULT CODE: 0
    STDOUT: swupdate:upgradeStatus = 0
    STDERR:
    10:35:16.830 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/61migrate_cyrusdb
    RESULT CODE: 0
    STDOUT: Nothing to migrate
    STDERR: grep: /etc/imapd.conf: No such file or directory
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: * Web Service SnowLeopard migration start *
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: /System/Library/ServerSetup/MigrationExtras/61_webconfigmigrator.rb --purge 1 --sourceRoot /Previous System --targetRoot / --sourceType System --sourceVersion 10.5.8 --language en
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/httpd.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard main config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added userdir module directives, disabled
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed spotlight module
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Adjusted the set of LoadModule directives
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Changed user from www to _www
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Changed group from www to _www
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed spotlight-search handler
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added dmgpart mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added mobileconfig mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added m3u8 mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Added ts mime type
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Removed <IfModule> block for Spotlight
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: De-activated reference to WO Adaptor
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/0000any_80.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/0000any_80.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000169.7.39.129_80rolandsystemsgroup.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000169.7.39.129_80rolandsystemsgroup.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000269.7.39.129_443admin.rolandsystemsgroup.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000269.7.39.129_443admin.rolandsystemsgroup.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000369.7.39.129_80edirol.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000369.7.39.129_80edirol.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000469.7.39.129_80rssamerica.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000469.7.39.129_80rssamerica.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000569.7.39.129_80rolandsystemsgroup.ca.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000569.7.39.129_80rolandsystemsgroup.ca.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000669.7.39.129_80v-mixingsystem.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000669.7.39.129_80v-mixingsystem.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Processing: /etc/apache2/sites/000769.7.39.129_80personalmixing.com.conf.saved-Pre-SnowLeopard-unmodified
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: ...Creating: /etc/apache2/sites/000769.7.39.129_80personalmixing.com.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Checksum indicates customized Apache 2.2 Leopard vhost config file. Updating for SnowLeopard.
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Appended port number to host in ServerName directive
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Replaced SSL directives with more secure protocol and cipher suite
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Deleted Include for httpd_directory.conf
    Thu Oct 15 10:35:18 2009: 61_webconfigmigrator.rb: Designating wild card vhost as collaboration site
    Thu Oct 15 10:35:21 2009: 61_webconfigmigrator.rb: Updated Apache configuration is valid
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: Migrated default wiki theme, set to com.apple.block.green.banner
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: Migrated max wiki attachment size, set to 52428800
    Thu Oct 15 10:35:22 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.tomcat has been unloaded based on pre-upgrade status
    Thu Oct 15 10:35:24 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.httpd has been loaded based on pre-upgrade status
    Thu Oct 15 10:35:24 2009: 61_webconfigmigrator.rb: The launchd plist for org.apache.htcacheclean has been unloaded based on pre-upgrade status
    Thu Oct 15 10:35:26 2009: 61_webconfigmigrator.rb: The launchd plist for com.apple.wikid has been loaded based on pre-upgrade status
    Thu Oct 15 10:35:26 2009: 61_webconfigmigrator.rb: * Web Service SnowLeopard migration end *
    10:35:26.388 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/61_webconfigmigrator.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:26.774 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/62upgrade_cyrusopts
    RESULT CODE: 0
    STDOUT:
    STDERR:
    2009-10-15 10:35:26 -0700: 62_wikiCreatorMigrator: * Starting migration of wiki creators
    2009-10-15 10:35:26 -0700: 62_wikiCreatorMigrator: Migrating from sourceVersion = "10.5.8" sourceRoot="/Previous System" to targetRoot="/"
    2009-10-15 10:35:27 -0700: 62_wikiCreatorMigrator: Wiki Creators have not been migrated from the previous system. You must use Server Admin Web to add them. Specific problem:WhitePages framework cannot find vhost for GUID: 7580C977-5C04-458B-8FD1-752152324E84
    10:35:27.777 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/62_wikiCreatorMigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: 2009-10-15 10:35:27.771 62_wikiCreatorMigrator[935:903] * -[WPSession createRecordWithType:attributes:inNode:resolveNamingConflict:error:]: * Warning: the record of type dsRecTypeStandard:Config was created successfully, but OpenDirectoryFramework cannot find it. More info: recordName 'ServicesInformation' in /Local/Default
    2009-10-15 10:35:27.772 62_wikiCreatorMigrator[935:903] * -[WPWebServices createServicesInformationRecordInLocalNodeWithSession:]: couldn't create the Computer record in /Local/Default. Reason: (null)
    10:35:27.907 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/63notificationmigrator.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:35:43.528 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/64postfixmigrator
    RESULT CODE: 0
    STDOUT: Upgrading Postfix...
    STDERR:
    10:37:05.578 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/65mailmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:05.741 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/66clamavmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:05.835 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/66spam_assassinmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR: crontab: no crontab for root
    10:37:05.869 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/67_CreateABSACLIfNeeded.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:06.142 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/70_smbconfigmigrator
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:37:07.307 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/80_radiusconfigmigrator.pl
    RESULT CODE: 0
    STDOUT: 80_radiusconfigmigrator.pl: Migrating RADIUS configuration...
    80_radiusconfigmigrator.pl: Migrating certificate parameters into eap.conf...
    80_radiusconfigmigrator.pl: extracting eap.conf dictionary from radius dictionary
    80_radiusconfigmigrator.pl: extracting certificate params from eap.conf dictionary
    80_radiusconfigmigrator.pl: No certificates in eap.conf, nothing to install
    80_radiusconfigmigrator.pl: Done migrating certificate parameters into eap.conf
    80_radiusconfigmigrator.pl: RADIUS migration complete
    STDERR:
    10:38:04.002 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/90_CertificateMigrator.sh
    RESULT CODE: 0
    STDOUT: certs = emptydictionary
    STDERR: 2009-10-15 10:38:03.746 serveradmin[2358:903] --Module NSBundle </usr/share/servermgrd/bundles/servermgr_certs.bundle> (loaded)'s response has retain count of 9.
    10:38:04.227 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/91_qtssmigrator
    RESULT CODE: 0
    STDOUT: /System/Library/ServerSetup/MigrationExtras/91_qtssmigrator: removing /Previous System/Library/QuickTimeStreaming
    STDERR:
    Thu Oct 15 10:38:04 2009: 93_pcastmigrator.rb: * Podcast Service Leopard->SnowLeopard migration start *
    Thu Oct 15 10:38:04 2009: 93_pcastmigrator.rb: Error: Unable to copy all files from the source system: unknown file type: /Previous System/Library/Preferences/com.apple.pcastserverd.plist
    Thu Oct 15 10:38:05 2009: 93_pcastmigrator.rb: pcastserverd has been unloaded based on pre-upgrade status
    10:38:05.027 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/93_pcastmigrator.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:07.634 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/94-wiki-group-migrator.py
    RESULT CODE: 0
    STDOUT:
    STDERR: 2009-10-15 10:38:07.561 Python[3052:d0f] * -[NSAutoreleasePool release]: This pool has already been released, do not drain it (double release).
    10:38:08.667 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/95-wikicalendarmigrator.py
    RESULT CODE: 0
    STDOUT: Logging to /Library/Logs/ServerAssistant.log
    Starting
    Options: {'wiki': None, 'sourceWikiPath': 'Library/Collaboration/Groups', 'guid': None, 'verbose': 1, 'language': 'en', 'targetRoot': '/', 'sourceCalendarPath': 'Library/CalendarServer/Documents', 'sourceRoot': '/Previous System', 'purge': True, 'output': None, 'calendar': None, 'sourceVersion': '10.5.8', 'targetCalendarPath': 'Library/CalendarServer/Documents', 'sourceType': 'System'}
    Looking for wiki group plists in /Library/Collaboration/Groups
    Found group plists: []
    Chowning /Library/CalendarServer/Documents to 93:93
    Done
    STDERR:
    10:38:10.365 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/95migratedhcp.pl
    RESULT CODE: 0
    STDOUT: 95migratedhcp.pl: Migrating DHCP and NetBoot configuration...
    95migratedhcp.pl: migrating etc/bootpd.plist
    95migratedhcp.pl: migrating private/tftpboot
    95migratedhcp.pl: migrating System/Library/LaunchDaemons/bootps.plist
    95migratedhcp.pl: DHCP is disabled for all interfaces
    95migratedhcp.pl: netboot_enabled not found in bootpd.plist
    95migratedhcp.pl: DHCP and NetBoot are both disabled in //etc/bootpd.plist: not loading //System/Library/LaunchDaemons/bootps.plist
    95migratedhcp.pl: DHCP and NetBoot migration complete
    STDERR:
    10:38:11.125 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/99-wikipermissionsfixer.py
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:38:11.270 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-alfconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    Missing: /Previous System/private/etc/syslog.conf
    10:38:11.331 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-syslogconfigmigrator.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    purge: 1
    sourceRoot: /Previous System
    sourceType: System
    sourceVersion: 10.5.8
    targetRoot: /
    language: en
    10:38:11.440 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/111-webobjects.pl
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.054 Migration extra succeeded:
    path: /System/Library/ServerSetup/MigrationExtras/BlojsomMigration.py
    RESULT CODE: 0
    STDOUT:
    STDERR: /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/zope /_init_.py:1: UserWarning: Module twisted was already imported from /usr/share/caldavd/lib/python/twisted/_init_.pyc, but /System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python is being added to sys.path
    _import__('pkg_resources').declare_namespace(__name_)
    10:38:15.241 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/AddAppServerUserToAppServerGroups.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.492 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/carddav.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.693 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/DisableBootP.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.718 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/EnableDSProxy.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:15.981 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/GenerateRNDCKey.sh
    RESULT CODE: 0
    STDOUT:
    STDERR: wrote key file "/private/etc/rndc.key"
    10:38:16.040 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/MarkServerFolderAsLocalizable.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.559 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetAFPEncoding.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.637 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetDefaultNFSThreadCount.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:16.886 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetSMBCodePage.rb
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.060 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/setupsecurityproxymail.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.346 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetupClamAV.sh
    RESULT CODE: 0
    STDOUT: Configuring Anti-Virus scanner...
    done.
    STDERR:
    10:38:17.372 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetUpFTPSharePoints.sh
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.672 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetupMailman.sh
    RESULT CODE: 0
    STDOUT: Configuring mailman for this host...
    done.
    Compiling mailman...
    Listing /usr/share/mailman/Mailman ...
    Listing /usr/share/mailman/Mailman/Archiver ...
    Listing /usr/share/mailman/Mailman/Bouncers ...
    Listing /usr/share/mailman/Mailman/Cgi ...
    Listing /usr/share/mailman/Mailman/Commands ...
    Compiling /usr/share/mailman/Mailman/Defaults.py ...
    Listing /usr/share/mailman/Mailman/Gui ...
    Listing /usr/share/mailman/Mailman/Handlers ...
    Listing /usr/share/mailman/Mailman/Logging ...
    Listing /usr/share/mailman/Mailman/MTA ...
    Listing /usr/share/mailman/Mailman/Queue ...
    Compiling /usr/share/mailman/Mailman/mm_cfg.py ...
    done.
    STDERR:
    10:38:17.750 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/SetUpNetBoot
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:17.964 Setup extra succeeded:
    path: /System/Library/ServerSetup/CommonExtras/websetup
    RESULT CODE: 0
    STDOUT:
    STDERR:
    10:38:22.136 touching AppleSetupDone

    Thanks for your help.
    I discovered that there was an issue with the virtual host config files. I am not sure why but the problem passed the Apache startup routine. I discovered the offending VH config file by turning them all off and reactivating them one at a time. The real head scratcher is why I couldn't scan or ping port 80 during the problem.

  • SMC not running on port 898

    hello,
    I am using solaris 10 x86.Some days back my SMC was running properly,now it is giving error when I try to start it "Solaris Management Console is not running on port 898".What should I do to make it running.
    regards,
    tanveer

    check for the package.if it is there try..
    /etc/init.d/init.wbem start

  • HT1926 I have a French computer running on 32 bits instead of 64 (Vista). Reinstalled several times iTunes but keep on having failure 42110!! No download available for 32 bits????

    I have a French computer running on 32 bits instead of 64 (Vista).
    Reinstalled several times the latest iTunes but keep on having failure 42110!!
    No download available for 32 bits???? This is more an Apple support question!!

    Try this user tip:
    https://discussions.apple.com/docs/DOC-4831
    Hope that helps.
    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.

  • Cannot find the CMS server running on port 6400?

    Hi all,
    I can see all the servers running on bo xi 2 other than the CMS server. If i start running using Administorator nor through the windows administration it displays the message
    "Cannot find the CMS server running on port 6400?"
    Can anyone explain me how to recitify this issue ?
    Thanks
    Pooja

    On the CMS server launch the CCM and then the CMS is likely red (not started) try to manually start it, if it fails check windows event viewer for errors to see why it failed. Could be the service account (try local system if not specified already).
    Regards,
    Tim

  • HT1689 I want to close apps running in back ground but after double clicking I dont get apps running in back ground instead photo apps open after double clicking home screen

    I want to close apps running in back ground but after double clicking I dont get apps running in back ground instead photo apps open after double clicking home screen Please help.

    iPhone 3G does not support multitasking

  • Where is config file for port 5500 ??? Help

    Where is config file for port 5500 ??? Help
    Hello I have 10g_win32_db, and I want to change the http://localhost:5500 to something else where can i find the config file for that ?
    thanks

    To modify port 5500:
    - Modify the file $ORACLE_HOME/<hostname_sid>/sysman/config/emoms.properties
    Change the ConsoleServerPort property to the new port.
    - Modify the file $ORACLE_HOME/<hostname_sid>/sysman/config/emd.properties
    Change the REPOSITORY_URL property.
    - Modify the file $ORACLE_HOME/oc4j/j2ee/<hostname_sid>/config/http-web-site.xml
    Change all references of the old port to the new port.
    Restart the DB Control process:
    emctl start dbconsole

  • Can't get Web Server 7 listener to run on port 80

    I'm replacing our older web server v6 servers with newer servers running web server 7u8. I can't get the listener to run on port 80 as a non-root user. I've run the usermod -K basic,net_privaddr command, and verified it in /etc/user_attr. When I try to start the instance, however, I get the following error "HTTP3127: http-listener-1: http://sun197d1z2.pseg.com:80: Error creating socket (No access rights)". If I change the listener to run on port 8080 the instance starts. Any ideas, what am I missing.
    Thanks

    Is it necessary to run as a non-root user. If you start up webserver as root, the core processes will run as root, but the virtual server will run as a different user for security. Usually on Linux, that would be the user "nobody". You can also specify the user each virtual server should run as.
    Hope that helps.
    Tony Z

  • Opening Port 5500 For OEM

    Hi,
    I can access OEM locally using http://oraclebox:5500/em (that is, when I'm on the machine "oraclebox"). However, when I try using the same URL on another machine in my lAN, I get a "Connection refused" error from remote machine's browser. I can SSH and ping into the oracle box from other nodes in my LAN, but I can't seem to access OEM through port 5500. Furthermore, this isn't a firewall issue, because I've disabled the firewall and still can't get OEM to show up remotely.
    I'm using Fedora Core 2 and Oracle 10g.
    A "netstat -l" shows that port 5500 is in fact being LISTEN'ed to.
    Thanks.

    Hi Luigi,
    Try the following it worked for me.
    Go to Security Level
    Add 5500:tcp in the Other ports section.
    That should do it.
    VC

  • Can you get an iPod 5 running ios6.1.3 instead of ios7

    Can you get an iPod 5 running ios6.1.3 instead of ios7

    Yh all of the above is true, you cant go from ios 7 back down to ios 6 sorry unless you were to buy an ipod touch that was made whilst ios 6 was in use of were to get ipod touch 4g (like i am) that only goes up to ios 6...
    Know everyone else helped but i was bored so i hoped i helped a little even though i basically repeated

  • Http server not running on port 8888

    i installed the forms 9i against oracle 8i, i tried to run the form but receives error that http server is not running on port 8888 check services or change your runtime settings.
    what to do?
    Thanks in anticipation

    Start the OC4J Instance. (there is a shortcut to this in your Oracle9iDS program group).

Maybe you are looking for

  • The item could not be found? Moved/renamed - TURN OFF?

    So often I get this error message when using the Favorites panel in Adobe Bridge CS4: "The item could not be found. It may have been moved or renamed." Sometimes it's a misclick, sometimes I forget my external isn't plugged in and am clicking on a fo

  • When do u go for elementary test and combined test(rsrv)

    hi all, Can anyone explain me with an realtime scenario ? when do we go for elementary test in rsrv trns code and combined test. thanxs hari

  • IPhoto 6.0.6 won't print after crash

    I successfully printed from my iMac (10.4.9) over my AirPort network to my Canon MP530 which is shared from my MacBook (also running 10.4.9). When I went to print another photo, iPhoto crashed. I reopened it, but whenever I would try to print a photo

  • Variable creation

    hi sdn,         I would like to create two variables based on fiscal year period and put them on columns. i am able to create two variables, but it is not allowing me to put them on columns, I can able to put only one in column. any one have suggesti

  • Can Date Picker be made to show only 00,15,30,45 minutes?

    Is there a way to let the minute selection dropdown in the date picker include only 00, 15, 30 and 45? Our customer doesn't like scrolling through a list of 60 values when all they really need i 4. Regards, Fredrik