What are the correct domain settings @ Go Daddy?

I will set up a Mac Mini Lion Server using server assistant.  I bought a domain name from Go Daddy. What are the correct domain (DNS, host) settings @ Go Daddy - need step by step guide; thanks in advance.

I do not fully understand how the PTR pointer works
PTRs map IP addresses back to hostnames - also known as 'reverse DNS'.
The way it works is that when you (or any client) looks up an IP address they first query the root servers that maintain a map of the main IP address allocations. You then query the server that's authoritative for the IP address in question. That server may respond, or may further delegate responsibility to another server.
As an illustration, imagine a company - MegaISP - who's been allocated a large block of IP addresses - say 1.0.0.0 through 1.255.255.255. As an ISP they provide access service in all 50 states so they may further subdivide their network into chunks and delegate control of each chunk to a different server, e.g. 1.1.0.0 - 1.1.255.255 -> CA, 1.2.0.0 - 1.2.255.255 -> NY, etc.
Now you, as a customer of MegaISP, connect to their server and are allocated a dynamic address from the 1.2.0.0 - 1.2.255.255 subnet - let's say 1.2.3.4
When you perform a reverse lookup on 1.2.3.4 your query first goes to the root servers which say something like 'hey, those IPs are owned by MegaISP's DNS servers, so go ask them'. You then query MegaISP's main servers which then say 'hey, that IP is somewhere in the New York subnet, so go query the New York DNS server. Your query then goes to MegaISP's New York server that replies something like 'host-1-2-3-4.ny.megaisp.net' and that' your reverse lookup.
(of course, this is greatly simplified, and the whole process takes a fraction of a second, but hopefully you get the idea).
The problem you now have is that MegaISP have no idea what services you're running on your connection, so they just return a generic response (e.g. host-1-2-3-4.ny.megaisp.net) and not something that relates to your domain (e.g. www.yourdomain.net). Nobody knows to ask your DNS server what hostname your IP address should map to.
In order for that last step, MegaISP either have to change their DNS servers to map your IP address to your domain name rather than the generic hostname, or they have to further delegate your IP address's lookup to your own server (i.e. add another link in the chain - like 'hey, that IP address is delegated to yourdomain.net, so go ask their server').
Most ISPs are happy to either delegate or have a custom entry for your domain, but not on dynamic or residential-grade connections - it's not worth the time and effort to keep it up to date as your IP address changes, which is why it's typically only something that comes with business-grade services.
and what limitations this will lead to
Any service that relies on valid reverse DNS is doomed to fail. For the most part, http doesn't matter/care, but don't expect to run a mail server or certain other services.

Similar Messages

  • My new 4s cannot send emails; emails are rejected by server. What are the correct settings?

    What are the correct settings when my new 4s can receive but will not send messages. The emails are rejected by the server,

    You're going to have to ask your e-mail provider. We don't have the slightest clue who that is, much less what the correct settings would be.

  • What are the correct settings for my WRT54GS for using remote access on a Windows Home Server?

    I can not remotely access my Windows Home Server from outside.  What are the correct settings for my WRT54GS?

    I have opened ports 80, 443,and 4125 to PCP.  The  router address is http://192.168.1.1, my address is 221.40.138.170.
    Thank you.

  • CS3 - What Are the Best Export Settings for Animation?

    I have edited a project in Premiere Pro CS3. It is animated, and I want to preserve as much of the quality of the animation as I can.
    What are the best possible settings that I can use to export the video to a .MOV file?
    A little background info, in case it helps:
    The animations were created in After Effects, and the .MOV files were made with the Animation codec.
    After editing in Premiere, I exported the finished file to the Animation codec. It looks so-so.
    Important: I imported the Premiere Project into After Effects, and exported the project with After Effects. The After Effects Quicktime file looks better than the Premiere version of the Quicktime file. (And has a higher data rate, in case that matters.)
    What kind of settings do I need to select in Premiere when I export the video to make the .MOV file look as good as it can?
    (And please don't be afraid to dumb it down.)
    Thx!

    Try an Uncompressed "QT" file.  (Component YUV - 10-bit)
    BTW: Did your PPRO Settings match the AEFX Comp you exported from?

  • What are the correct answers ?

    after doing one sample swing application, i assumed the exam will be easy. when i took the exam, i couldn't do anything...
    what are the correct answers ??/
      Which one of the following converts the Image i into the BufferedImage bi? 
    Choice 1  
    bi = new BufferedImage(0, 0, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = (Graphics2D)bi.createGraphics();
    g.drawImage(i,i.getHeight(this),i.getWidth(this)); 
    Choice 2  
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
    bi.drawImage(i,0,0,this); 
    Choice 3  
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);
    Graphics2D g = (Graphics2D)bi.createGraphics();
    g.drawImage(i,0,0,this); 
    Choice 4  
    bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this), BufferedImage.TYPE_INT_RGB); 
    Choice 5  
    bi = new BufferedImage(i, i.getWidth(this), i.getHeight(this)); 
    CardLayout
    BorderLayout
    FlowLayout
    GridBagLayout
    GridLayout 
      Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself? 
    Choice 1  
    CardLayout, FlowLayout, GridBagLayout, GridLayout 
    Choice 2  
    GridBagLayout 
    Choice 3  
    BorderLayout, GridLayout 
    Choice 4  
    BorderLayout, FlowLayout, GridLayout 
    Choice 5  
    BorderLayout, CardLayout, FlowLayout, GridBagLayout, GridLayout 
    JFrame jf = new JFrame();
    jf.setSize(400,400);
    JTextField jtf = new JTextField("JTextField");
    JButton jb = new JButton("JButton");
    jf.getContentPane().setLayout(
                          new FlowLayout(FlowLayout.LEFT,1,2));
    jf.getContentPane().add(jtf);
    jf.getContentPane().add(jb); 
      Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other? 
    Choice 1  
    jtf and jb are in the top-center of the Jframe; jtf is to the left of jb, 2 pixels apart. 
    Choice 2  
    jb is in the top-right corner of the JFrame with jtf 1 pixel to the left of it. 
    Choice 3  
    jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it. 
    Choice 4  
    jb is in the top-right corner of the JFrame with jtf 2 pixels to the left of it. 
    Choice 5  
    jtf is in the top-left corner of the JFrame with jb 2 pixels to the right of it
    public void drawText(Graphics2D g, String text){
      Font f = new Font("Century Gothic", Font.BOLD, 10);
      g.setFont(f);
      g.drawString(text, 20, 20);
      Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
    Choice 1  
    The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
    Choice 2  
    "Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
    Choice 3  
    The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
    Choice 4  
    The Font() constructor throws an IllegalArgumentException. 
    Choice 5  
    A default Font object is returned and is used
    Sample Code 
    public void drawText(Graphics2D g, String text){
      Font f = new Font("Century Gothic", Font.BOLD, 10);
      g.setFont(f);
      g.drawString(text, 20, 20);
      Given the above sample code, what happens if the "Century Gothic" font is NOT available? 
    Choice 1  
    The Font() constructor fails, causing "f" to be null, and the setFont() method throws a NullPointerException. 
    Choice 2  
    "Century Gothic" is a built in Java font, which always exists within the Java runtime environment. 
    Choice 3  
    The code does not compile because only the following "logical" font names are supported in Java: Dialog, DialogInput, Monospaced, Serif, SansSerif, and Symbol. 
    Choice 4  
    The Font() constructor throws an IllegalArgumentException. 
    Choice 5  
    A default Font object is returned and is used. 
    How must do you interact with a JTextField in order to generate an ActionEvent? 
    Choice 1  
    Tab into the JTextField from another Component. 
    Choice 2  
    Type in the JTextField. 
    Choice 3  
    Activate the cursor in the JTextField. 
    Choice 4  
    Hit <RETURN> while the cursor is in the JTextField. 
    Choice 5  
    Hit the spacebar while typing in the JTextField. 
    double-buffering
    public class TimerTest implements ActionListener{
      public static void main(String[] args){
        TimerTest test = new TimerTest();
        javax.swing.Timer timer = new javax.swing.Timer(100,test);
      public void actionPerformed(ActionEvent ev){
        System.out.println("Timer ticked.");
      Given the above sample code, what is the result when the code is run? 
    Choice 1  
    The words "Timer ticked." are printed to the console once after 100 milliseconds. 
    Choice 2  
    The words "Timer ticked." are printed to the console every 100 microseconds. 
    Choice 3  
    The words "Timer ticked." are printed to the console every 100 seconds. 
    Choice 4  
    The words "Timer ticked." are printed to the console every 100 milliseconds. 
    Choice 5  
    Nothing, the Timer is not started. 
    1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
    2. slider1.setPaintTicks(false);
    3. slider1.setMajorTickSpacing(10);
    4. slider1.setMinorTickSpacing(2); 
      What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick? 
    Choice 1  
    Replace line 3 with slider1.setMajorTickSpacing(17); 
    Choice 2  
    Replace line 2 with slider1.setPaintTicks(true);
    Replace line 3 with slider1.setMajorTickSpacing(17);
    Replace line 4 with slider1.setMinorTickSpacing(5); 
    Choice 3  
    Replace line 3 with slider1.setMajorTickSpacing(5);
    Replace line 4 with slider1.setMinorTickSpacing(4); 
    Choice 4  
    Replace line 2 with slider1.setPaintTicks(true);
    Replace line 3 with slider1.setMajorTickSpacing(20);
    Replace line 4 with slider1.setMinorTickSpacing(4); 
    Choice 5  
    Replace line 4 with slider1.setMinorTickSpacing(6); 
       Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time? 
    Choice 1  
    ButtonGroup g = new ButtonGroup();
    g.add(b1); g.add(b2); g.add(b3); 
    Choice 2  
    b1.group(true); b2.group(true); b3.group(true); 
    Choice 3  
    JRadioButton jbs[] = {b1, b2, b3};
    ButtonGroup g = new ButtonGroup(jbs); 
    Choice 4  
    The default behavior of JRadioButtons is such that only one can be selected at a time as long as they are in the same Container. 
    Choice 5  
    ButtonGroup g = new ButtonGroup(b1, b2, b3); 
    Sample Code 
    public static void main(String args[]){
      What is the role of the method in the code above? 
    Choice 1  
    To provide a place for initialization code when instantiating the current class. 
    Choice 2  
    It is the first method run when a class is run with the Java Interpreter. 
    Choice 3  
    It serves no specific function. It is a residual method from Java 1.0. 
    Choice 4  
    It is the first method that the Java Compiler converts to bytecode when creating a .class file. 
    Choice 5  
    To process command-line parameters when running the Java Interpreter 
    How do you create a menu item, Save, with a shortcut key of Ctrl+S? 
    Choice 1  
    You have to override the KeyPressed event of the top level Frame and handle the Ctrl+S to call the menu item's actionPerformed. 
    Choice 2  
    JMenuItem save = new JMenuItem("Save");
    save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK)); 
    Choice 3  
    JMenuItem save = new JMenuItem("Save");
    save.enableShortcut(KeyEvent.CTRL_KEY + KeyEvent.S); 
    Choice 4  
    JMenuItem save = new JMenuItem("Save");
    save.setMnemonic("Ctrl+S"); 
    Choice 5  
    JMenuItem save = new JMenuItem("Save");
    save.addShortcutKey( new KeyStroke(KeyStroke.S | KeyStroke.CTRL_KEY) ); 
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
    gbl.addLayoutComponent(jb,gbc1); 
      In regards to the above code, which one of the following indicates jb's grid position? 
    Choice 1  
    Grid position 2,1 
    Choice 2  
    Grid position 1,2 
    Choice 3  
    Grid position 1, 1 
    Choice 4  
    Grid position 10, 1 
    Choice 5  
    Grid position 1, 3 
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1);
    gbl.addLayoutComponent(jb,gbc1); 
      In regards to the above code, which one of the following indicates jb's grid position? 
    Choice 1  
    Grid position 2,1 
    Choice 2  
    Grid position 1,2 
    Choice 3  
    Grid position 1, 1 
    Choice 4  
    Grid position 10, 1 
    Choice 5  
    Grid position 1, 3 
    Which one of the following is necessary when changing an Applet to a standalone application? 
    Choice 1  
    Add a no-argument constructor. 
    Choice 2  
    Remove the init(), start() and stop() methods. 
    Choice 3  
    Remove "extends JApplet" or "extends Applet". 
    Choice 4  
    Add a main() method. 
    Choice 5  
    Change the import statement so that it imports an Application container rather than Applet or JApplet. 
    Which one of the following adds the String "Java" to the JComboBox jcb? 
    Choice 1  
    ComboBoxModel cbm = jcb.getModel();
    cbm.addItem("Java"); 
    Choice 2  
    jcb.setText("Java"); 
    Choice 3  
    ComboBoxModel cbm = jcb.getModel();
    cbm.add("Java"); 
    Choice 4  
    jcb.add("Java"); 
    Choice 5  
    jcb.addItem("Java");

    I'll have a go but I am not saying they are all correct...
    Question 1.
    Which one of the following converts the Image i into the BufferedImage bi?
    Choice 3 (assuming this implements the imageobserver interface)
    bi = new BufferedImage(i.getWidth(this), i.getHeight(this), 1);  //1 is BufferedImage.TYPE_INT_RGB
    Graphics2D g = (Graphics2D)  
    bi.createGraphics();
    g.drawImage(i,0,0,this);Good luck with your homework...
    nes
    Question 2.
    CardLayout
    BorderLayout
    FlowLayout
    GridBagLayout
    GridLayout
    Which one of the following indicates all of the layout managers (from the list above) that allow you to set the space between the components from an instance of the LayoutManager itself?
    Choice 4
    BorderLayout,
    FlowLayout,
    GridLayout
    (GridBagLayout uses GridBagConstraints to decide component spacing, card layout does not provided component spacing due to the deck nature used)
    Question 3.
    JFrame jf = new JFrame();
    jf.setSize(400,400);
    JTextField jtf = new JTextField("JTextField");
    JButton jb = new JButton("JButton");
    jf.getContentPane().setLayout( new FlowLayout(FlowLayout.LEFT,1,2));
    jf.getContentPane().add(jtf);
    jf.getContentPane().add(jb);    Which one of the following indicates the positions of the JTextField jtf and JButton jb relative to the JFrame and each other?
    Choice 3 jtf is in the top-left corner of the JFrame with jb 1 pixel to the right of it.
    Question 4
    public void drawText(Graphics2D g, String text)
         Font f = new Font("Century Gothic", Font.BOLD, 10);  
         g.setFont(f);  
         g.drawString(text, 20, 20);
    }    Given the above sample code, what happens if the "Century Gothic" font is NOT available?
    Choice 5 A default Font object is returned and is used
    Question 5.
    How must do you interact with a JTextField in order to generate an ActionEvent?
    Choice 4 Hit <RETURN> while the cursor is in the JTextField.
    Question 6.
    public class TimerTest implements ActionListener
         public static void main(String[] args)
               TimerTest test = new TimerTest();    
               javax.swing.Timer timer = new javax.swing.Timer(100,test);  
         public void actionPerformed(ActionEvent ev)
              System.out.println("Timer ticked.");  
    }    Given the above sample code, what is the result when the code is run?
    Choice 5 Nothing, the Timer is not started.
    Question 7.
    1. JSlider slider1 = new JSlider (JSlider.VERTICAL, 0, 100, 50);
    2. slider1.setPaintTicks(false);
    3. slider1.setMajorTickSpacing(10);
    4. slider1.setMinorTickSpacing(2);    What changes do you have to make to the above Sample code so that there are six Major Ticks and four Minor ticks between each Major Tick?
    Choice 4 Replace line 2 with slider1.setPaintTicks(true); Replace line 3 with slider1.setMajorTickSpacing(20); Replace line 4 with slider1.setMinorTickSpacing(4);
    Question 8.
    Which one of the following defines a set of three JRadioButtons (b1, b2, and b3) so that only one JRadioButton can be selected at a time?
    Choice 1 ButtonGroup g = new ButtonGroup(); g.add(b1); g.add(b2); g.add(b3);
    Question 9.
    Sample Code
    public static void main(String args[]){ }
    TYPO - should be public static void main(String[] args){ }
    What is the role of the method in the code above?
    Choice 2 It is the first method run when a class is run with the Java Interpreter.
    Question 10.
    How do you create a menu item, Save, with a shortcut key of Ctrl+S?
    Choice 2 JMenuItem save = new JMenuItem("Save");
    save.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_S,Event.CTRL_MASK));
    Question 11.
    GridBagConstraints gbc1 = new GridBagConstraints(1,1,2,1,1,3,10,1,new Insets(5,5,5,5),1,1); gbl.addLayoutComponent(jb,gbc1);
    In regards to the above code, which one of the following indicates jb's grid position?
    Choice 3 Grid position 1, 1
    Question 12
    Which one of the following is necessary when changing an Applet to a standalone application?
    Choice 1 Add a no-argument constructor.
    Choice 2 Remove the init(), start() and stop() methods.
    Choice 3 Remove "extends JApplet" or "extends Applet".
    Choice 4 Add a main() method.
    Choice 5 Change the import statement so that it imports an Application container rather than Applet or JApplet.
    mmm. not a good choice of answers. look at the following link...
    http://forum.java.sun.com/thread.jsp?forum=57&thread=218096
    Question 13.
    Which one of the following adds the String "Java" to the JComboBox jcb?
    Choice 5 jcb.addItem("Java");

  • What are the best export settings to use...

    Operating system: Vista SP1
    Camera: Canon HF100 (1900x1080 HD quality 29.97fps) -- uses AVCHD compression which is H.264 I believe.
    I'm able to watch my camera video files in Vista nicely. However, I'm having trouble with the watching the results of my edited and exported videos. Assuming I want the same quality and playability as the source video, what settings should I use in the export?
    In the export settings window... I select:
    Format: H.264
    Preset: HDTV 1080p 29.97 High Quality
    Source files have the extension: .m2ts
    ...I don't change the other values. Then I export. Now the result is an .mp4 file which does not play in Windows Media Player. It does play in Quicktime or iTunes however it plays jerkily... I would like to be able to play it as smoothly as the original source plays... And I'd like to be able to play it in windows media player just as the source can be played in media player. Media player seems to play the source more smoothly than does iTunes or Quicktime.
    So what are the best export settings for me so that I can watch my edited HD video on my computer as easily as the source footage???
    I've been able to edit and save the results of the edit using the crappy ImageMixer3 video editor that comes with the camera. The results are perfect and play in windows media fine. The files it exports the edited video as is the same as the soure... the file extension is .m2ts
    So the problem is how to get Adobe to export the edited video to an .m2ts file or at least to a file type that plays as nicely in my system?

    See
    Exporting to iPods, cell phones, PSPs and other mobile devices in the PPro Help for details.
    Cheers
    Eddie
    PremiereProPedia   
    RSS feed)
    - Over 350 frequently answered questions
    - Over 300 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • What are the best import settings for iTunes - AAC 160 / AAC 192 / MP3??

    Hi I originally imported all my treasured CDs to iTunes several years ago, and they've served me well (AAC 128 - default setting) but in recent times hard-drive sizes have trebled and my much loved iTunes Library has not been updated.
    I am thinking of re-importing all of my original CDs - as I think now that hard-drive space would allow for a higher quality but at the same time I do not want to fill my hard-drive completely with music - hence my question;
    WHAT ARE THE BEST IMPORT SETTINGS CONSIDERING SIZE AND QUALITY?
    (I know this has probably been asked a million times, but I did a search and nothing came up that answered my Q - also all the answers that came up in Google search where dated 2003/ 2004 - a little out-dated me thinks!!)
    Rachael

    Personally I've started ripping everything Apple Lossless. That way I hope I never have to rip again.
    I used to rip 320 mp3. I couldn't tell the difference between 320 mp3 and lossless, but, one day I might be able to - big maybe. But since disk price is not likely to go up, I figured I'd rip lossless from now on "just in case."
    Probably few, if any, people could tell the difference between 256 AAC and lossless (I've done it at 192, but never at 256, and I have not bothered trying again recently - there might be a song out there where I could hear the difference, hence ripping lossless from now on - my time costs more than disk space . . .)
    256 AAC is a pretty safe bet, unless you need mp3 compatibility, then use 256 (or 320) mp3.

  • What are the best export settings for a HD video in Premier Pro CS4?

    Hi!
       I've been having so much trouble with this issue and it's something that continually frustrates my boss. I have a HD video the settings for it are
    FPS 23.98
    1920 x 1080, then a few lines down it says 1408 x 792
    16 bit,
    2 channels
    48000 Hz
       What should the settings be when I make a new sequence?
                 When I look at it in the window in Premiere Pro I have to contantly 'shrink' the image to fit the window, is that something I should be doing or does it indicate the sequence settings are incorrect?
    But more importantly what should the export settings be? I exported a 4 minute long video and the size was 1 GB, I know that's too big.
    I need to export it without loosing any quality and export another one that meets the Youtube and Vimeo limits on size.
    Vimeo is 500 MB per week, sometimes I upload 4 videos per week. I think Youtube you can only upload 500 MB at a time.
    I need to get smaller sizes with loosing the least amount of quality possible AND the best export settings for quality, so I guess I have 3 separate questions-
    What are the best sequence settings for HD video?
    What are the best export settings for HD without loosing any quality?
    What are the best export settings for the size to come out around 500 MB with loosing the least amount of quality possible?
    Thank You!
    http://forums.adobe.com/thread/713070
    On the above thread I used the 5th anwer, and it's going to take about 7 hours to export a 4 minute video :/

    It Stands for "Coder Decoder."
    Your format is like a container for your video file. Certain containers can hold certain codecs and not others. Other containers can hold other codecs. Sometimes different containers can hold the same codecs.
    This might be a bad analogy but I'll give it a try.
    A coffe cup (container) can hold pretty much any liquid you drink, where a red solo cup (container) won't hold scolding water. So, the coffe cup would be your container of choice most likely because it has the most options for liquids (codecs). But, you might want a red solo cup for just a single crappy beer at a party (a moderate quality streaming video on the web). In that case, you don't need all the optoins of another container.
    In Premiere Pro CC H.264 is a Container and the Codec in one option. This has been streamlined for web distrobution of video to be played in browsers without things like Flash or special players.
    Were as if you choose the QuickTime Container there are over 40 codec optoins (at least on my machine with additinal ones installed) but you may run into an issue where your browser doesn't support QuickTime playback.
    I would say that your container is for compatability with players and your codec is taken into consideration when looking at the quality of the compression.
    Yesteraday I wrote a blog entery on Exporting from Premiere Pro and found that the MPEG-4 codec inside of the QuickTime container gave me much richer colors than the H.264 container/codec option.
    I posted the link before but here it is:
    http://goo.gl/8GZq4i

  • What are the correct steps for installing Oracle Entitlement Server SSM?

    Can somebody explain what are the correct steps to install OES SSM 10.1.4.3? I have installed OES admin 10.1.4.3 and applied the CP2 patch. it is allowing me to open Entitlement Administration, where I can define the policy.
    Is it sufficient to have this Entitlement Admin to call the policy from BPM? Do I need a SSM ?
    When I try to configure Java SSM using ConfigTool.bat -process myssm_config.properties I am getting the following error
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • What are the proper print settings to print two sides, landscape and bind on the short side?

    what are the proper print settings to print two sides, landscape and bind on the short side?

    This is a question best asked in the appropriate product forum.

  • What are the report-relevant settings in the hierarchy maintenance?

    What are the report-relevant settings in the hierarchy maintenance?

    Hi,
    See these links.
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/fd4e3c97f6bb3ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/fd4e3c97f6bb3ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/fd4e3c97f6bb3ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/fd4e3c97f6bb3ee10000000a114084/frameset.htm
    assign points if this helps.
    Thanks.....................
    vasu...................

  • What Are The Correct Gray OS X Discs For This Imac?

    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    There has to be a serial or model number right? I have Leopard installed on it and I missing having the DVD player so could I connect the iMac to my PowerMac G5 using Target Disc Mode, and then install Panther or Tiger onto the iMac through it?

    Liquidus wrote:
    I got a free 700Mhz G4, 15" Screen, 512mb Ram, 40GB HDD and I was wondering what are the correct OS X discs (Gray) that came with this Mac?
    The correct Mac OS restore discs are Mac OS X 10.1.2 and Mac OS 9.2.2. I have restore discs for a 600MHz Late 2001 iMac G3, which has the same identical software as the iMac G4. That part number for the disc set is 603-0372.
    For the second part of your question, you can install Panther or Tiger through Target Disc Mode from your PM G5.
    -Brian

  • What are the correct Time Capsule Airport Utility Disk options?

    During configuration of the Time Capsule what are the correct options/settins in the Airport Utility on the Disk tab?  Does File Sharing interfere with Server File Saring>

    You can turn on file sharing.. it will not interfere with your server since it has a different IP address.
    You can use either device password or disk password.. do not use the profiles as that complicates things.. and Apple did not build in a link to Server to use standard user login which is a great pity.. when you have an active directory type setup it .. the TC could have been made a lot more business like.. However apple really have the TC aimed at the domestic market and users without a server.
    What are you intending to use the TC for?
    Most people would be better buying an airport extreme rather than TC when they are running business setup.

  • Transfer ADOBE creative Suite from an old Mac to a new Mac, I have the code but I don't have a CD. What are the correct steps?

    Hi
    I bought a new Mac and I want to transfer my Adobe Creative Suit CS6 to it from my old one. What are the correct steps? Please note that I don't have a CD because I downloaded it via the net. It was an upgrade for the student edition. I heard something about deactivation and reactivation but I don't want to do something wrong then lose my precious software. Please help. Thanks.

    You can download the software and install it using the page linked below.
    CS6 - http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    You are allowed to have the software installed and activated on two machines, so there should be no reason to deactivate it on your other machine, or at least you can wait until you see it loaded and working on the new one.

  • HT3228 What's the correct email settings for the fastest email receiving on my iPhone 4s

    What's the correct email settings for the fastest email receiving on my iPhone 4s

    As no one here knows who your email provider is, no, no one can help. Have you tried looking at your email provider's help pages? Done an internet search?

Maybe you are looking for

  • Specify Office 2013 kms host trough group policy settings

    Hello. Can someone please help me get the right registry key for Office 2013. I want to specify kms host for my clients in domain - trough group policy. Dont want to use dns or config.xml to specify the host. For Windows i use this key, activation wo

  • How do I delete old Numbers databases?

    I've had to sort a subgroup from a large group and now can't delete my copy that I made of the subgroup.  If I drag them to the trash, I can't empty the trash. Any help would be appreciated.  Pat

  • JSF and Scrollbars

    Hi: Is there a way of putting a table or other components in a grid or form with scrollbars? How do I add scrollbars to a table component, or at least the scrollbar functionality instead of its pagination functionality? I hope there is Thanks

  • Printing with hp 4620

    I can't seem to hook up AirPrint

  • Add DirectAccess 2012 R2 to DirectAccess 2012 Cluster

    Does anyone know if it is supported or possible to add DirectAccess 2012 R2 to an existing DirectAccess 2012 cluster? Hoping to use this approach to upgrade and to DirectAccess 2012 R2 without creating a new cluster and configuration. Thanks