How to setup Print server on multiple machines?

Hi,
Can someone please let me know the process to setup Print Server on multiple machines?
This is what I have been thinking.
1. Install Ghostscript on all the machines.
2. Setup Print Server on all the machines.
3. I guess I have to point the IP address somewhere as final step?
Thanks in advance
PM

The steps you have mentioned is correct.
When you set up the print service ,you will define the URL for Financial Reporting web application server in the .properties file and this will get registered in the HSS registry(This is the step where you run the FRprintserversetup.cmd).So when you run the setup from each print server there will entries created for the same in HSS registry.Then there will internal logic which will work on which server should take which process.
Thx

Similar Messages

  • How to add print server in server manager console

    Hello,
    I want to know how can I add print server in server manger console (not print management console)? I want to add another print server in server manager. I can add it by print management, but dont know how to add it in server manager. In server manager there
    is only local server in Print Services.

    Hi Amin2234,
    As far as I know you can There are two primary tools that you can use to administer a Windows print server:
    •Server Manager
    •Print Management
    Print Management provides a single interface that administrators can use to efficiently administer multiple printers and print servers and is the primary focus of this document.
    Print Management provides a central administration point for sharing printers on a network and managing print server and network printer tasks.
    The related KB:
    Print Management
    http://technet.microsoft.com/en-us/library/cc766474.aspx
    Add or Remove Print Servers
    http://technet.microsoft.com/en-us/library/cc755141.aspx
    Overview of Print Management
    http://technet.microsoft.com/en-us/library/cc731857.aspx
    I’m glad to be of help to you!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.
    Hello,
    Thanks for your answer, but I asked how to add print server in "Server Manager" consol, not by print management.
    My server manager has currently 1 print server added, while I have 2 print server added in print management. I want to add the second print server in server manager console too.

  • Setup PRINT server in Apex 3.0?

    Hi all,
    I need setup print server on upgraded Apex 3.0 and looking at instructions or manuals
    thanks in advanced
    Gordan

    Hi all,
    I need setup print server on upgraded Apex 3.0 and looking at instructions or manuals
    thanks in advanced
    Gordan

  • How does create a server with multiple Clients ?

    Any people can lead me .
    How does create a server with multiple Clients ?
    Thanks

    For a multithreaded server you will need a thread to listen and at least one thread per client. If the conversation is half duplex, one thread per client works very well, if it's full duplex you will find one thread to send and one to receive much easier to program.
    I posted a Simple Socket Server that uses 1+2*clients threads.

  • How to setup Printer style in application(11i)

    I got below request from user.How to setup print style.
    ====================================================
    Please setup the print Style "Portrait - For T4A Paper" for the TOR-PAY1-4100 and noprint printers in OAHP. I am trying to print paper T4A's and the process is completing with errors since I did not (or could not) specify a proper Portrait - For T4A Paper printer.
    ====================================================

    hi,
    thank you for your replies.
    we have inventory module installed with 4 inventory organizations.
    and we use the purchasing module for standard purchase orders operations.

  • Distributing the Application Server over multiple machines

    Hi,
    I want to deploy Application Server over multiple machines .I am using multiverse server it has nine sub servers and i want to deploy those servers in different system to achieve good performance and load balancing .Please help me
    Thanks in advance
    hemavathi.J

    what do you mean by 9 sub servers??...do you mean you have 9 different profiles for the same instance of the server or there are 9 different clusters with one profile each??

  • How to setup management server in oracle 10g database

    guys,
    i've installed oracle 10g database into my machine. but i don know how to setup the management server (for scheduling owb10g process flows). unlike 9idb, we have an option emca to setup the management server. if anyone of u knows abt it, please help me. do i need to install the grid control just to have the scheduling mechanism? please advice.

    Well, it depends heavily on what operating system you're using, what mail server you're trying to install, your network topology, etc. Realistically, this is a question that is probably better asked in a forum for whatever mail server you're trying to install...
    Justin

  • How to control one server with multiple clients via TCP/IP

    I am wanting to control a single server with multiple clients.  Only one client would be active at a time, so there would be no conflict.  I want to use TCP/IP.  So far, I have programmed a cluster that passes data back to the server with no problems.  The challenge come in when a second client is added to the mix.  I have't been able to figure out how to turn each client on and send the appropriate data and then turn it off so it doesn't keep sending the same data to the server. 
    Here are the things that I have considered and did some preliminary testing, but don't really know how to impliment:
    1.  Send a numeric on the front of the cluster packet that tells the server that data is on the way.
    2.  Send a boolean on the front of the cluster packet to somehow turn the server TCP/IP on.
    The problem I have found is that LabVIEW TCP/IP doesn't like to be turned on and off.  If it doesn't get the data it expects, it goes into a reset mode and that kills the response time.
    Any help?

    You should consider implementing a set of simple one-byte commands that can be sent back and forth between the Server and the Clients. You can base all of these ideas off the example in the Example Finder under Networking >> TCP and UDP called Multiple Connections - Server.
    You will have two loops in the server VI: one to wait for new connections, and one to send and receive data from the existing connections. For instance, after one of the clients connects, it can request control of the server to send data to it by sending the character "R" for request. Every time the send/receive loop of the Server executes, the first thing it can do is to check all the existing connections to see if any of the clients have sent a control request ("R"). If so, it will create a buffer (array) of control requests. This could be in the form of Connection IDs or indexes in the array for a particular Connection ID. Your choice.
    After the Server receives a request for contol, if it is not already under control by another client, then it can send a response to the first client on the control request list. For instance, the server could send the first client a "S" command for send. Note that after the clients send their control request, they should execute a TCP Read and wait indefinitely for the server to respond with the one-byte "S" command. Then, once the client in control is finished sending data to the server, it could send the character "X" telling the Server to release it from control.
    The example I mentioned above already does a similar thing. Note how when a client wants to disconnect, they send the letter "Q". You can see this in the Multiple Connections - Client VI. The Server then checks each individual connection to see if it's received this one-byte command, and if it has, it closes the connection to the client. This is what you would want to implement, but instead of having just one command, you'll have to distinguish between a few and build up a buffer of control requests.
    Finally, if a client does decide to disconnect in your application, they could send the command "Q" just like the example above. At this point, close the connection and remove that Connection ID from the array of connections. You will also have to handle the case that this client was in the request control waiting line when it disconnected, in which case you need to delete it from that array as well.
    This will definitely work for you, but it will take some work. Best of luck!
    Jarrod S.
    National Instruments

  • How to create managed server in remote machine ?

    Hi,
    I have a cluster. It has 2 managed servers
    one managed server runs on machine A
    I want to run another managed server on machine B
    How do i do that.
    I have weblogic installed on both machines A and B
    Problem:
    a.) how to create domain in machine B ? should i use pack/unpack commands or can i create a new domain from scratch in the machine B ?
    Machine A has the domain directory created. Machine A also has admin server
    b.) if i create a domian from scratch in machine B, then how does synchroniziation happens ?
    say in machine A ( initially where the domain is created ). I add some entries in setDomainenv.sh, how will it reflect in machine B ?
    Regards,
    Harsha

    There are many ways to achieve this, this is one of the method that might help you get started...
    http://download.oracle.com/docs/cd/E12839_01/web.1111/e14144/toc.htm
    Hope this helps.
    .raja

  • How to setup vpn-server in Mountain Lion 10.8.3?

    Before I updated my mac mini server to 10.8.3 I used Server Admin to setup a vpn server. After the update Server Admin isn't supported anymore and my vpn settings are gone. Now i want to setup the server again, but have no clue what settings to enter where.
    I suppose it starts with adding two vpn-interfaces: PPTP and LT2P.
    But how further? I can't find a tutorial or manual.

    I do now :-)
    And many thank, that's the application I was looking for. My vpn is back online. Well, the mac-part. I still can't connect with a Win7 system. Connecting to a vpn-server of another company works fine, so it's something in the configuration of de Mini Server.
    The error code is 629.
    Hopefully someone can help me with this part too?

  • How to setup Appraisal Template in multiple languages?

    Hi,
    We are currently in R12.1.1.
    We would like to setup appraisal template in multiple languages. For example,
    Template 1 - English
    Template 2 - Malay.
    Appreciate guidance on how this can be done.
    Thanks and Regards,
    SC

    Hi,
    We are currently in R12.1.1.
    We would like to setup appraisal template in multiple languages. For example,
    Template 1 - English
    Template 2 - Malay.
    Appreciate guidance on how this can be done.
    Thanks and Regards,
    SC

  • How to setup Mail Server in Lion

    I'm wondering how to setup the mail server if I have a website that is being hosted by a site like go daddy. I really have no IT experience and wanted this server to help my company get organized and on track. So far I have been able to get the VPN and File Sharing working. My next steps are the mail server and iCal. Thanks for the help it will be greatly appreicated!

    Well, it depends heavily on what operating system you're using, what mail server you're trying to install, your network topology, etc. Realistically, this is a question that is probably better asked in a forum for whatever mail server you're trying to install...
    Justin

  • How to setup Collaboration Server

    Hello,
    I found that Sun studio provides Collaboration tools that allow developers to share data. But problem is, how can I set up one? What should I write on the server? Thank you.

    I was trying to find the same information on how to setup the collaboration server and eventually found it hidden in the install notes
    http://docs.sun.com/source/817-7971/ide_setup.html#96139
    It depends on whether your on windows or solaris. For solaris you need to ; cd java-studio-install-dir/CollabRuntime/bin
    ./xmppd start It muttered about having to be run as root but that is probably just a permissions issue.
    HTH
    Matthew

  • How to install managed server on another machine

    Can anybody point me where I can find related installation doc?
    Thanks in advance

    I want to configure the manages servers in a windows 2000 environment......
    to do eastblish this environment, I do not want to install the weblogic on client machine(I mean developer machine). I wanted to install weblogic on one server and on a remote machines, i want to map the server(WLS) machine and do work from there.....I wonder with out installing the WLS on client machine(developer machine),..is this possible to start managed server from client machines with out installing wls on that tmachines......?, with wls installed on client machine, its working perfecr........ but can I start/stop managed servers with out wls installation on client machine ....?if so ...how..? what scripts to modify........?
    Thanks

  • How to configure print server in UNIX?

    Hi everyone,
    Can someone guide me about how to configure a print server when EPM products are installed on a Linux server?
    Thanks,
    Sayantan

    Hi,
    Additionall, you may need to check the configuration of radius server on server 2012.
    And you must make sure that the shared-key must be the same on both server and client side.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/8e9e3d1b-70c2-4350-af8b-a83284b37c0f/install-a-radius-server-on-windows-server-2012?forum=winserverNAP
    Best Regards
    Quan Gu

Maybe you are looking for

  • Delivery Error

    Hi Experts, We are facing following problem for our EOU. (In process - Return to vendor) We are trying to create delivery with reference to return purchase order using tr. Code VL10B. When we enter p.o.number in the p.o. tab and execute, system shows

  • Question about TNSNAMES and EZCONNECT

    I have 10.2.0.4 EE, RAC + Data Guard. From an app server, I issue the following: +$tnsping database1+ TNS Ping Utility for Solaris: Version 10.2.0.4.0 - Production on 14-JAN-2013 12:37:36 Copyright (c) 1997,  2007, Oracle.  All rights reserved. Used

  • Jdbc adapter inactive

    Hi, friends! In jdbc adapter, After i saved a communication channel  and activated. In configuration it showing status as active, but in rwb in adapter monitoring it showing status as inactive(gray colour), please tell me can i change it into green c

  • Scrolling, Counting (the whole shebang?)

    Bear with me here, this one's causing me headaches and sleepless nights (and I'm not exaggerating. While this issue sits in Bugzilla the boss cannot be silenced.) <cliche>The story so far...</cliche> An implementation of a scrolling result set I buil

  • HT1918 My account is asking me for my security code on my credit card, but it will not accept the code as valid?  Not sure what to do?

    I am trying to purchase an app on a new iPad we have purchased.  I'm asked to put in my security code on my credit card for security reasons, but it will not accept my code as valid.  Not sure how to proceed.