Can't create DNS zones in Server Admin

Hi All,
So, I've run into this strange problem where when configuring the zone files for the DNS server in Server Admin that clicking on the + button doesn't do anything. I've re-installed Tiger Server including reformating the disk and still nothing.
Can anyone tell me where the zone file is kept. It might be better just to make my own unless anyone can tell me why the + button isn't working.
Thanks much!

Definitely better to make your own, if you know how (lots of good google-able docs on this). Using Server Admin for DNS zone files is dicey at best.
BIND config file is located at '/etc/named.conf'
Zone files live in '/var/named/.' Primary zone files are named 'myDomain.com.zone' and secondary files are named 'myDomain.com.bak'
Feel free to email me if you need some default files.
Can anyone tell me where the zone file is kept. It
might be better just to make my own unless anyone can
tell me why the + button isn't working.
iBook G4   Mac OS X (10.4.3)  

Similar Messages

  • No DNS zones in server admin

    Here's my log: 
    Oct 21 12:49:25 server servermgrd[2019]: -[DNSManagerRRMgr bindZoneDB]: Unable to load zone database (RRs) for "***.com" from file "/var/named/db.***.com": CNAME and other data

    Definitely better to make your own, if you know how (lots of good google-able docs on this). Using Server Admin for DNS zone files is dicey at best.
    BIND config file is located at '/etc/named.conf'
    Zone files live in '/var/named/.' Primary zone files are named 'myDomain.com.zone' and secondary files are named 'myDomain.com.bak'
    Feel free to email me if you need some default files.
    Can anyone tell me where the zone file is kept. It
    might be better just to make my own unless anyone can
    tell me why the + button isn't working.
    iBook G4   Mac OS X (10.4.3)  

  • Maximum number of instances that can be created on an oracle server ?

    Hello all....
    Can you tell me what is the maximum number of instances that can be created on an oracle server ?
    thanks and regards
    vinay raj

    vinay raj wrote:
    Hello all....
    Can you tell me what is the maximum number of instances that can be created on an oracle server ?
    thanks and regards
    vinay raj
    The answer would be that as many as the server's ram would hold up . There is no limitation otherwise as such. How many maximum you have created so far?
    Aman....

  • Can't remove dns zone

    I messed up my dns zone while while adding a zone. I am trying to remove everything and start over, but SA will not let me. I have a primary and reverse zone that keeps coming back after I remove it. I have looked in /var/named/zone, but there is nothing there.
    If I add another zone, it appears in /var/named/zone, and I can remove it with SA. What should I try next?

    Hi
    This afp548 article explains the Leopard DNS Service including where relevant files are located. You might find it useful. You could restart the Server in safe mode (shift key depressed) and try deleting the zones that way. A normal restart thereafter should get you going again. You may actually be looking at a rebuild/reinstall but only you would know or decide that.
    This recent post describes how to set up the DNS Service in Leopard simply:
    http://discussions.apple.com/thread.jspa?threadID=1251475&tstart=0
    Stick with it because its not that obvious to begin with. Its about the 7th post down. One thing that could be added is at the setup assistant stage and when you are prompted to configure the Network Settings is to switch off IPv6.
    Hope this helps, Tony

  • How can i create datasource on apache server for ADF application?

    Hi All,
    i my use case i have created simple adf application using ADF BC and want to deploy on Apache server 6.x.
    So my question is that  how can i create Data Source i have goggling and find  two different way to do this.
    1. write following line of code on apache server conf/Context.xml file.
    <Resource name="jdbc/TestDB" auth="Container"
                  type="javax.sql.DataSource"
                   driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@localhost:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"/>
    but when i have used this way i got following exception.
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection
    check link-
    https://forums.oracle.com/thread/2564233
    2. write following line of code apache conf/Server.xml file
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/TestDB" auth="Container"
                  type="oracle.jdbc.pool.OracleDataSource"
                  description="User database that can be updated and saved"
                  driverClassName="oracle.jdbc.driver.OracleDriver"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@//172.31.43.207:1521:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"   />
      </GlobalNamingResources>
    and add this line in context.xml file inside <context> tag
    <ResourceLink global="jdbc/TestDB" name="jdbc/TestDB" type="oracle.jdbc.pool.OracleDataSource"/>
    but when i have run application i have got following error
    log-
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    Aug 2, 2013 5:17:21 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    so what is the solution how to create datasource on apche server which suitable for adf application?
    when i test data source using  following code used 1. way as i mentioned above  its running fine bt not for second.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <sql:query var="rs" dataSource="jdbc/TestDB">
    select empname from pay_emphdr where empcd='JK1306'
    </sql:query>
    <html>
      <head>
        <title>DB Test</title>
      </head>
      <body>
      <h2>Results</h2>
    <c:forEach var="row" items="${rs.rows}">
        Foo ${row.empname}<br/>
    </c:forEach>
      </body>
    </html>
    please help me. it is very urgent.
    thanks in Advance
    Manish

    Hi Lindalnci
    i have already tried  this tutorial and in my post i have defined first way to do using this procedure.
    in that case i have got following exception as i have mentioned above
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection

  • Can't see IMAP log in Server Admin

    For some reason, when I click on the IMAP log in Server Admin, it's just empty. Anyone know how I can get it back? Where is the actual log so it can be viewed in the console?

    The path to the log (posted across the top of the log display, if that's still visible) is /var/log/mailaccess.log
    That log should be visible via Console.log, or via Terminal.app and cd /var/log and then grep or cat or whatever.
    How much gets written into the various mail-related logs is controlled via (of course) Server Admin.
    Server Admin > select server > Mail > Settings > Logging

  • Can I create my own cirrus Server with ServerSocket?

    I wanna my own server for cirrus.
    how can I get it ?

    i assume you mean by using ServerSocket in AIR.  ServerSocket creates a TCP server (listening) socket. RTMFP uses UDP.  ServerSocket can't be used to create an RTMFP endpoint.
    Adobe Media Server (AMS) implements RTMFP and performs the same peer introduction services that codename Cirrus does.  AMS is available for purchase or by the hour on Amazon Web Services.  see http://www.adobe.com/go/ams for more information.
    the RTMFP base transport protocol is described in http://tools.ietf.org/html/draft-thornburgh-adobe-rtmfp . however, the Flash-specific adaptation for RTMFP, including the "cryptography profile" we use and the mapping of Flash communication to RTMFP flows, is not yet publicly published.  see section 3.5.1.6 for an illustration of how RTMFP P2P introduction works, as practiced by Cirrus and AMS.

  • Can't enter serial number in server admin

    I inadvertently entered the incorrect mac os x 10.4 serial number on a machine (Server 2 ) which disabled another machine (Server 1) with the same number. Now workgroup manager won't work on Server 1. All the items listed under computers and services are grey out, the serial number fields are blank and I can't enter data. Server number two is offline and the drive has been erased.
    Does anyone know how to reenter the serial number or do I need to rebuild server 1? I was hoping to be able to be able to just reenter the numbers. If not any tips on using the migration tool to transfer server 1 settings to server 2. Any suggestions are appreciated.
    Thanks
    Message was edited by: Zendad

    Hi
    serversetup might help. man serversetup for usage. You should be able view, validate and set the serial number. The tool is located in /System/
    Library/ServerSetup.
    To show the server’s software serial number:
    sudo serversetup -getServerSerialNumber
    To set the server software serial number:
    sudo serversetup -setserverSerialNumber serialnumber watermarkinformation
    Where serialnumber is a valid Mac OS X Server software serial number, as found on the packaging.
    This might help – Tony

  • Can't create SAP HANA Cloud server in eclipse

    Hi,
    I have an issue creating a server with SAP HANA Cloud Platform runtime in eclipse. I've created one a few days ago but today I couldn't republish my application and all menu entries were disabled.
    So I deleted the server and want to add it again. Now I get the following error:
    Erroneous HTTP response: HTTP/1.0 503 Service Unavailable for URL: https://hanatrial.ondemand.com
    Does anyone know how to resolve this?
    Thanks in advance,
    Felix

    Hi Felix,
    There is an issue currently with hanatrial.ondemand.com which affects start and stop of applications: Re: HANA Cloud Trial downtime announcements. We are working on it. Sorry for the inconvenience!
    --Vlado
    PS: You might want to follow that thread for downtime announcements.

  • Can not create repository in Content Server

    We just installed Content Server 6.40 on a Linux server.  When we go into CSADMIN and try to create a repository, we are getting the following error:
    "HTTP error: 500 Internal Server Error  Cannot create Repository: SQLConnect failed, [MySQL MaxDB][LIBSQLOD SO][MaxDB] Unable to connect to"
    Does anyone know how to fix this?
    Maximum points to the first correct answer.

    Hi,
    I am facing some problem "CreateTab ContentStorage, connect error SQLConnect failed"
    and for that I was doing following steps:
    1.
    D:\sapdb\programs\pgm>Odbcreg LiveCache -i -p d:\sapdb\program\pgm
    'Odbcreg' is not recognized as an internal or external command,
    operable program or batch file.
    D:\sapdb\programs\pgm>
    2.
    D:\>cd sapdb/programs/pgm
    D:\sapdb\programs\pgm>odbcreg
    'odbcreg' is not recognized as an internal or external command,
    operable program or batch file.
    D:\sapdb\programs\pgm>Odbcreg livecache u2013i u2013p d:\sapdb\programs\pgm
    'Odbcreg' is not recognized as an internal or external command,
    operable program or batch file.
    D:\sapdb\programs\pgm>
    So how to solve this??
    Regards,
    Malay.

  • Can't add new users in Server Admin console in Server 10.1.4.

    I've run into an issue with an older OS X Server 10.1.4 running on a G4 platform. It functions as a shared file repository and I need to add new users. However, it would appear that I've developed a problem.
    When trying to add new users I get the following error:
    An error occurred in the Users & Groups module in entry point "RACMMenuItemSelected".
    A program error has occurred.
    1004
    Now, my best guess is it's a corruption somewhere. But, I don't want to go poking around the production server taking it down and up until I've got some idea where I'm going. Any suggestions on where my troubles might be? Or has anyone had this issue before, and how was it corrected? (Hopefully not by a full software reload.)
    I'd like to replace/upgrade this server, but until there's money in the budget, that's just a dream, I need to try to figure out how to fix what's here.
    Help, please?
    PowerBook G4 17   Mac OS X (10.3.9)   1.5G RAM

    No answer was found for this issue. I've finally removed the server from production and will likely reformat and reinstall for use in other production areas. Hopefully we'll be upgrading the OS at the same time.

  • Fix the Server Admin UI for DNS

    Apple.
    DNS is a fairly important service as you know. I don't have time to edit zone entries manually and then also adjust reverse entries.
    The Server Admin UI for DNS has been broken for a long while now.
    Please.
    Fix it.
    Regards,
    Mezza

    I agree that the DNS GUI in Server Admin is bad and should never have been released as it is. It should at least have the option to be disabled. That way, the limited and somewhat useless config files the GUI generates wouldn't overwrite painstakenly edited config files. Why does my mail server have to sit on the same domain? Why does my primary DNS have to exist within the created domain? Anyway enough complaining. On to solutions...
    I would recommend you download "Webmin". It has a great interface for managing DNS and can do everything you should need. Keep in mind, for all my complaints about Server Admin Tool, it does keep you from adding multiple A records for the same IP which really shouldn't be done. "Webmin" will allow you to do just about anything you want to with DNS. It can be found at:
    http://www.webmin.com
    Hope that helps.

  • Can't see any tumbnails, Can't create proxy.

    Hello,
    I'm new into the FCS support and I do have a problem now with my FinalCutServer version 1.5.2 running on an Xserver with V-trak.
    First of all everything was running correctly but after some one did "propagate permissions" on my root harddrive everything was messed up ofcourse.
    I was able to create a back-up of the FCS database (production media and proxy media folders are stored on the V-trak).
    I did a complete clean install of the server and FCS and did place back the backup.
    Everthing works fine now but the only problem is that I can't see any thumbnails, when I rightclick on an image and click on View Original that all works perfect. When I click in the top and then at the left the landscape looking icon I get the error message that he can't create a proxy.
    This also happens with new images that go into FCS.
    I did already try to right-click on an image and then Analyze or re-create proxy but none of that works.
    Is there anyone who can help me or that have the same issues after restoring a back-up?
    Kindest regards,
    Luc Janssen
    Update: Maybe important to know, my Proxies.bundle is empty.

    Sounds like propagating the permissions is what screwed you up, as I'm sure you're aware. That's something that has to be adjusted in the Server Admin app, not in FCSvr.  How does FCSvr connect to the storage? Whatever user it's connected as needs to have read/write access to your proxies bundle and also the directory in which it lives. It looks like it doesn't have write access, which explains why it's empty, so proxies/thumbnails/poster frames cannot be generated. Go to the "Search All Jobs" list and see what it says when you try to generate a proxy or thumbnail - I'm guessing you'll see a bunch of  FAIL's. Open one of the jobs and look for the error message - I'm betting you'll see something to the effect of "Could not be created: Permission denied."
    Permissions changes can really screw your distribution up - I find that permissions issues are what plague my own distribution almost weekly. If you have a distribution where your users have Finder-level access to the storage that FCSvr is cataloging, you may have situations where your users will create folders and files that FCSvr doesn't have write or even read access to, because of various reasons (maybe the user copied the folder/file from elsewhere, maybe their umask is 022, etc). That can lead to wanting to use Server Admin's "Propagate Permissions" functionality, which if used improperly can cripple your entire distribution.
    Good luck.

  • Server Admin's Unreliability factor

    Hi, I'd like to know how reliable it is to use Server Admin from a remote machine.
    I've currently got the following situation: I've set up VPN a long time ago and now after a few updates to OS X server. It seems as if Server Admin is not reporting things correctly. It says VPN is running,l but when you check the VPN details it shows that its not configured. Both 'serveradmin' and Server Admin.app on the actual server report this. However, when I connect with my laptop to VPN, it functions as it did prior to this info disappearing out of Server Admin etc
    So apart from wondering about that.... How reliable is Server Admin? I've had FTP break on several occasions, and its broken again today, you can't fix it out of Server Admin. It's as if OS X Server just randomly decide how it wants to run...
    I think the only thing that has worked fine from day one with little trouble is. DNS, AFP, NFS.
    I'm having trouble trusting os x server...

    cat /etc/resolv.conf results
    +search s***.p****+
    +nameserver 10.0.0.2+
    sudo serveradmin fullstatus vpn
    +vpn:setStateVersion = 1+
    +vpn:configured = yes+
    +vpn:servicePortsAreRestricted = "NO"+
    +vpn:state = "RUNNING"+
    +vpn:servers:com.apple.ppp.l2tp:SubType = "L2TP"+
    +vpn:servers:com.apple.ppp.l2tp:CurrentConnections = 0+
    +vpn:servers:com.apple.ppp.l2tp:AuthenticationProtocol = "MSCHAP2"+
    +vpn:servers:com.apple.ppp.l2tp:pid = 62+
    +vpn:servers:com.apple.ppp.l2tp:Type = "PPP"+
    +vpn:servers:com.apple.ppp.l2tp:AuthenticatorPlugins = "DSAuth"+
    +vpn:servers:com.apple.ppp.l2tp:enabled = no+
    +vpn:servers:com.apple.ppp.l2tp:startedTime = "2009-06-16 15:31:01 0200"
    +vpn:servers:com.apple.ppp.pptp:SubType = "PPTP"+
    +vpn:servers:com.apple.ppp.pptp:CurrentConnections = 0+
    +vpn:servers:com.apple.ppp.pptp:AuthenticationProtocol = "MSCHAP2"+
    +vpn:servers:com.apple.ppp.pptp:AuthenticatorPlugins = "DSAuth"+
    +vpn:servers:com.apple.ppp.pptp:Type = "PPP"+
    +vpn:servers:com.apple.ppp.pptp:MPPEKeySize = "MPPEKeySize128"+
    +vpn:servers:com.apple.ppp.pptp:enabled = no+
    +vpn:logPaths:com.apple.ppp.pptp_ServerLog = "/var/log/ppp/vpnd.log"+
    +vpn:logPaths:vpnLog = "/var/log/ppp/vpnd.log"+
    +vpn:logPaths:com.apple.ppp.pptp_PPPLog = "/var/log/ppp/vpnd.log"+
    +vpn:readWriteSettingsVersion = 1+
    +vpn:servicePortsRestrictionInfo = emptyarray+
    +vpn:health = emptydictionary+
    See both L2TP and PPTP is showing that is enabled=no
    I configured L2TP and it's still functioning...

  • How can i Create Domain in the Weblogic 7.0

    hi !..........
    how can i create Domain in weblogic server 7.0 plz send the replay ASAP..
    thanks in advance
    From
    Sree

    Go to the directory:
    %BEA_HOME%\weblogic700\common\bin
    Start the batch or shell named as dmwiz.cmd / dmwiz.sh
    This should be able to launch a wizard and take you through the process.
    Thanks and regards,
    Paz

Maybe you are looking for

  • Is it possible to use the ram from a macbook in a iMac?

    I am installing new ram on my Early 2011 Macbook Pro (2.3 Ghz., 13 inch, os x 10.9.4). Can I install the old ram from my Macbook Pro into a Mid-2011 iMac(2.7 Ghz., 27 inch, os x 10.9.4)? These links show the ram specs, and they look identical to me.

  • Apple TV w/Vista

    I have a Dell w/Windows Vista, Newest version of iTunes,Sony WEGA w/HDMI, Linksys N Router on a wireless network and my ATV is not connecting at all! ( Can anyone suggest anything, or am I NOT the only person)!? VERY new to ALL of this

  • Node.length not updating after removeInstance

    I have a dynamic form where line items can be added dynamically. I also have a button to remove the last line item. The code worked fine until Acrobat 7.0.7 now I get an error that the index in the removeInstance method is invalid. After doing some d

  • About handbook 3 and installation (if wrong topic let me know)

    hi. i bought the arch linux handbook 3 and i read about /arch/setup at page 27. isnt it removed? well at the latest dualboot iso i couldnt see that script and i installed manualy from guides but i just wanted to ask. Last edited by manolos (2012-09-2

  • METHOD_OPT parameter

    Hi, which is the best method to set the option METHOD_OPT execute dbms_stats.gather_schema_stats('SCOTT',CASCADE=>TRUE,ESTIMATE_PERCENT=>DBMS_STATS.AUTO_SAMPLE_SIZE,METHOD_OPT=>'FOR ALL INDEXED COLUMNS SIZE AUTO') or execute dbms_stats.gather_schema_