Deployment for 250 Clients with a poor communicationlink

Hello guys :
We're currently working with Forte 3.0.J.1.
We have two questions :
1.- We have a big application and when we deploy it the client
partition is quite large.
The size of the standard partition image repositories (*.btd,
*.btx) is 7436 Kb.
We then need to distribute the client files over a LAN (5% of the
users) and over a
WAN (96% of the users). Most of the users have a poor communication
link ( 9600 bps !!!! ).
We have two schemes for the distribution :
a).- Configuration of the client machine ( forte control panel with
flag :
cfg:em:2:2:2. In this case, the client partition must be
manually copied.
This takes 50 minutes to copy via ftp. This flag requires
the file being executed
using ftexec -fi parameter.
b).- Normal Forte mechanism, the client partition is being
copied automatically once
forte detects a difference with the current file. This
takes 56 minutes via
the Forte environment.
Is there somebody having the same scenario ( low speed
communications links ), if so
can you share your experience with us?. Apart from that, we are
having quite good
response time inside the application.
2.- What is the minimal configuration in memory (RAM) for a Central
Server Node ( only Forte
environment ). The machine is an Alpha 4100 with 1GB of RAM running
Alpha Unix 4.0.D, the database is
Sybase Adaptive Server 11.9.3 with 250 to 300 concurrent forté
users.
Regards
JAEB.
Do You Yahoo!?
Free instant messaging and more at http://messenger.yahoo.com
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Hi,
We've similar situation here but a little bit better. What we did was:
1. We gzipped all the client btrees under appdist after deployment but
before download.
2. We wrote our own "Launcher" which would do one extra step - unzip
the client btree before launching the client with normal launchservice.
One drawback of this approach is that you will need
1. hard-coding on unzipping the btree ( like hard-code for behaviour
under Windows, Mac or UNIX )
2. carefully designed application name. Note that Forte save the files
in only 8 characters. Any name longer than that will be truncated with
sequence number for the 8th character.
One more thing that we've observed over WAN. When the traffic is really
high and when we have a deployment, the nodemgr will crash claiming that it
is out of memory. However, when we check the trace, the memory allocated by
-fm is far more than enough. Thus, I suspected that when the download is
slow, the nodemgr is flood with threads trying to download the applet to the
client. And it is the thread manager that got boomed when there is really a
lot of users. So beware.
Regards,
Peter Sham.
-----Original Message-----
From: Jorge Espinoza [SMTP:[email protected]]
Sent: Wednesday, May 12, 1999 1:18 PM
To: [email protected]
Subject: Deployment for 250 Clients with a poor communication
link
Hello guys :
We're currently working with Forte 3.0.J.1.
We have two questions :
1.- We have a big application and when we deploy it the client
partition is quite large.
The size of the standard partition image repositories (*.btd,
*.btx) is 7436 Kb.
We then need to distribute the client files over a LAN (5% of
the
users) and over a
WAN (96% of the users). Most of the users have a poor
communication
link ( 9600 bps !!!! ).
We have two schemes for the distribution :
a).- Configuration of the client machine ( forte control
panel with
flag :
cfg:em:2:2:2. In this case, the client partition must
be
manually copied.
This takes 50 minutes to copy via ftp. This flag
requires
the file being executed
using ftexec -fi parameter.
b).- Normal Forte mechanism, the client partition is being
copied automatically once
forte detects a difference with the current file. This
takes 56 minutes via
the Forte environment.
Is there somebody having the same scenario ( low speed
communications links ), if so
can you share your experience with us?. Apart from that, we are
having quite good
response time inside the application.
2.- What is the minimal configuration in memory (RAM) for a Central
Server Node ( only Forte
environment ). The machine is an Alpha 4100 with 1GB of RAM
running
Alpha Unix 4.0.D, the database is
Sybase Adaptive Server 11.9.3 with 250 to 300 concurrent fort&eacute;
users.
Regards
JAEB.
Do You Yahoo!?
Free instant messaging and more at http://messenger.yahoo.com
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive
<URL:http://pinehurst.sageit.com/listarchive/>
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Apps for different clients with one creative cloud license

    Can I publish apps for different clients with one single edition license on creative cloud?

    Well, "should" is about as good as it gets, no one is going to enforce that, and it's certainly making me think very very hard about whether to bother with a pro licence again in August!
    And yes I'm very much aware of the few advantages of the Pro Licence, I do need to see some much bigger differentiators to justify the extra cost though!
    Just putting cards on the table :-)
    Alistair

  • NLS_LANG setting for a client with multiple Oracle servers

    Hello!
    We have a web application which has to connect to one of the Oracle servers with different charactersets. When the NLS_LANG on the client is a single byte encoding and the server has a single byte encoding there are no problems. We have now a server with NLS_CHARACTERSET UTF8 and all special (hungarian accented) character are replaced.
    When we set the client to UTF8 the rest of servers does not work.
    What is the solution for one client and multiple servers with different encoding?
    Is there a special key in connection string?
    I tried to change the nls_lang with an alter session statement but without success.
    Regards,
    emeriqus

    NLS_LANG is not depending on the database side, it's a CLIENT setting to "let Oracle know what encoding is used on the CLIENT" so that Oracle can do the conversion from the client encoding to the database (NLS_CHARACTERSET) encoding.
    for ONE application/client the is only ONE correct NLS_LANG value, regardless of the database NLS_CHARACTERSET
    If you web application is really an UTF8 application (check with your vendor) then you can perfectly use a UTF8 client setting and a 8 bit database
    Of course, you will be limited to the database side in this case seen the 8 bit characterset does not know all the characters in UTF8
    The fact that setting the NLS_LANG to UTF8 "does not work" with your web application is simply the fact your application is not a UTF8 env.
    Setting nls_lang to UTF8 will not "magically" make your application UTF8, NLS_LANG is depending on the encoding used in the web server.
    But the first thing to ask yourself is if CURRENT data is correctly in the Oracle database.
    use SQLdeveloper to check the data, this is a "know good client" that needs no NLS configuration.
    You can download it from http://www.oracle.com/technology/products/database/sql_developer/
    If the data is displayed correctly in SQLdeveloper then you are sure it's correct in the database.
    If data is WRONG in the database then that needs to be corrected first, "trying" different client side configurations will only make matter worse (even if they make the data "look good" )
    Regards,
    Gunther
    Client side notes on mentalink:
    Note:158577.1> NLS_LANG Explained (How does Client-Server Character Conversion Work?)
    1.2 What is this NLS_LANG thing anyway?
    3.2 A detailed example of a wrong nls setup to understand what's going on.
    4.2 How can I Check the Client's NLS_LANG Setting?
    5.1 My windows sqlplus is not showing all my extended characters.
    Note:179133.1> The correct NLS_LANG in a Windows Environment
    Note:264157.1> The correct NLS_LANG setting in Unix Environments
    Note:229786.1> NLS_LANG and webservers explained.
    Note 115001.1> NLS_LANG Client Settings and JDBC Drivers
    When using Unicode start here:
    Note:788156.1> AL32UTF8 / UTF8 (Unicode) Database Character Set Implications
    Setting NLs parameters: <Note:241047.1> The Priority of NLS Parameters Explained.

  • Min.Internet bandwidth for SAP clients with Windows Terminal Services (RDP)

    Dear all,
    what is a minimum/recommended Internet bandwidth for client who are using SAP client with RDP (SAP client is connecting directly via RDP session to remote SAP server).
    regards
    GN
    Edited by: Grzegorz Niecka on Aug 4, 2011 10:36 AM

    Hi GN.......
    It is recommended to have 1 Mbps speed of Internet in order to connect SAP Client from its destination to server if you are using Terminal server or VPN.......
    If you still not getting proper connectivity you may increase it to 2 Mbps........
    Regards,
    Rahul

  • Quick question on BOE deployment for SAP BW with 3 system landscape

    Client has SAP BW environment with 3 system landscape: Dev, QA, Production
    Should BOE be installed seperately on 3 different machines for each of them?
    Or is there any best practice for this?
    Thanks,
    Henry

    Hello Henry,
    yes - i would recommend this Setup. Technically there is no need for it but on an organisational/development/deployment level it makes more sence.
    I often saw it at customers that Dev and Q&A is on virtual machines and Prod is on a physically machines. Saves some Hardware costs.
    Regards
    -Seb.

  • SCCM fails to deploy Patches to client with in the maintenance windows.

    Hi,
    I am new to Patchng through SCCM just 7 months of experience.
    I deploy the patches regular month basis as microsoft release the patches every month. till now the patch deployment was happening smoothly, but from last month i am facing issue like the SCCM failed to push the patches with in the provided maintenance window.  
    even if the maintenance window over client will not get install.
    i have checked the enforcement status report for the same collection which i deployed, the status is always downloading updtaes.
    We have collection called Workstation and servers, both the collections compliance is less like 20% or lesser than that.
    Arround 800 Workstations deployed and given deadline 10 days. with suppressed reboot.
    Arround 70 Servers deployed with with automatic reboot via Maintenance window.
    deadline to install is 1 hour ahead of maintenance window.
    It would be great if any one suggest the solution to make software update deployment through SCCM  with in the maintenance window.

    Vista is not a supported OS for Acrobat XI Pro.

  • Developing a solution for a client with SAP

    Hi there,
    We're looking to work with a client who is running an SAP based system, and in advance of our next meeting in a month we have pledged to research the SAP platforms and how to interact with them.
    The client will be upgrading to SAP 6 in a couple of months so, due to both this and the fact that we have not been selected yet as the final candidate, interacting with their system is not an option.
    I have browsed SDN to see if there was a Developer Edition of the platform that we could use to test with, but couldn't find anything.  Could anybody point me in the right direction for either a 'trial version' (though I know this is unlikely!) or even an open test system that we could connect to via VPN to test against... or any other ideas!
    Thanks in advance,
    Tom Groves
    [email protected]

    Thank you and whoever you copied this from so so much. Having already sent back one new iPod shuffle because after randomly autofilling from my entire music collection depsite following all the troubleshooting tips it just wouldn't let me do anything else, so I conclude it was broken! I then went out and got another new one from a different source only to find I had exactly the same problem. Ok that's too spooky for it to be a hardware problem, but having wasted two evenings of my life trying to sort it out I thankfully came across this post which works!:-) You are my saviour! Come on Apple put a fix out there for this or at least acknowledge there is a problem - otherwise I'm sure you'll end up loosing sales!

  • Help for slow clients with spinning beach balls.

    I work at a school where we have an xsvr 105-000 running 10.5
    We have about 100 eMacs running 10.4 that connect to it. They are clients running their desktops off of the server. Each student has their own account.
    We are having a continuing problem that no one seems to be able to solve. The computers slow to a crawl everyday. Students get spinning beach balls when they are clicking on sites, paging or scrolling up and down etc.
    If someone plugs in with a laptop that does not log into the server and surfs the web there are no problems. No delays.
    Here are my questions:
    1. Are there a maximum number of connections that an xserv server can handle. If we have 60 students logged in are we choking at at the server level?
    2. Is there some setting on the server that could be causing this? (I realize that I have provided no where near enough info for a specific here, but I am only a teacher.)
    3. Any other ideas?
    Thanks

    Hi
    Good question. I'm sure there will be others with opinions and experiences willing to share?
    In my experience/opinion once you get to around 60-100 users - depending hugely on usage etc - you really should be adding another server to help balance the load. Enabling lots of Services on one box and then connecting lots of clients is a 'classic' mistake to make. It does not end there. Ideally you should be providing gigabit to desktop. Ideally managed switches. You also have to look at what the rest of the network is doing. Important if your situation involves an educational environment. It might be advisable to put mac clients and server(s) on their own switch possibly?
    Ideally Server and Client should be the same version although if approached correctly there should not be any problems if the Server is one version ahead of the clients.
    Mileage as ever will vary.
    Tony

  • What are steps configure Certificate based authentication for Wireless clients with ACS 5.3?

    I need to autheticate my clients connecting via wireless.
    clients have user certificate installed on them, i need help configuring the ACS to do the authentication.
    can some one please help me with the steps.
    Thanks

    Two primary steps
    - define the trust certificates needed to verify the clients user certificates
    Users and Identity Stores > Certificate Authorities
    - change result of identity policy to select a certificate authorization profile. If have the defautl config
    Access Policies > Access Services > Default Network Access > Identity
    by default can select the "CN Username" as a result

  • Duplicating de confirmation for Clients with credit problems

    Hi,
    We are using GATP to confirmed the sales orders quantities. In the check instructions,
    we are using check availability and then RBA (product substitution)
    When I create a sales order for a client with credit problems the confirmed quantity
    is being duplicated after releasing the order.
    The steps I am following are next:
    1.        VA01: create sales order (i.e: order product D 10 PC, I got 10 PC of product E confirmed because of the RBA)
    2.        VKM3: Release the order
    3.        VA03: display the sales order
    (it duplicates the lines with confirmed quantity - i.e: I got line 10: product D 0 PC confirmed; line 11: product E 10 PC confirmed; line 12: product E 10 PC confirmed, so line 12 is repeating line 11)
    We have explore any issues related to the availability check, but it seems to be a problem with the configuration of the credit processing.
    Have you ever had this issue? Any recommendation to solve it?
    Thanks a lot in advance.

    777,
    Are you using product allocation?
    In what case you see duplicate confirmation? in case of partial delivered order? if so check OSS note 1442425.
    Regards,
    Harshil Desai

  • Re-map print queues for clients with powershell

    We reinstalled printer queues (share printer name is the same as before) and drivers on server, 99% users can't print properly, is a way to re-map print queues for all clients with PowerShell equivalent to remove and map again?

    Hi Brent,
    To re-map all of the printers, please check this script written by Boe Prox:
    <#
    .SYNOPSIS
    Logon Script to migrate printer mapping
    .DESCRIPTION
    Logon Script to migrate printer mappings
    .NOTES
    Author: Boe Prox
    Create: 09 NOV 2012
    Modified:
    Version 1.0 - Initial Script Creation
    1.1 Added Header Text for CSV file
    #>
    Param (
    $newPrintServer = "Server2",
    $PrinterLog = "\\LogSVR\PrintMigration$\PrintMigration.csv"
    <#
    #Header for CSV log file:
    "COMPUTERNAME,USERNAME,PRINTERNAME,RETURNCODE-ERRORMESSAGE,DATETIME,STATUS" |
    Out-File -FilePath $PrinterLog -Encoding ASCII
    #>
    Try {
    Write-Verbose ("{0}: Checking for printers mapped to old print server" -f $Env:USERNAME)
    $printers = @(Get-WmiObject -Class Win32_Printer -Filter "SystemName='\\\\Server1'" -ErrorAction Stop)
    If ($printers.count -gt 0) {
    ForEach ($printer in $printers) {
    Write-Verbose ("{0}: Replacing with new print server name: {1}" -f $Printer.Name,$newPrintServer)
    $newPrinter = $printer.Name -replace "Server1",$newPrintServer
    $returnValue = ([wmiclass]"Win32_Printer").AddPrinterConnection($newPrinter).ReturnValue
    If ($returnValue -eq 0) {
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $newPrinter,
    $returnValue,
    (Get-Date),
    "Added Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    Write-Verbose ("{0}: Removing" -f $printer.name)
    $printer.Delete()
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $printer.Name,
    $returnValue,
    (Get-Date),
    "Removed Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    } Else {
    Write-Verbose ("{0} returned error code: {1}" -f $newPrinter,$returnValue) -Verbose
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    $newPrinter,
    $returnValue,
    (Get-Date),
    "Error Adding Printer" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    } Catch {
    "{0},{1},{2},{3},{4},{5}" -f $Env:COMPUTERNAME,
    $env:USERNAME,
    "WMIERROR",
    $_.Exception.Message,
    (Get-Date),
    "Error Querying Printers" | Out-File -FilePath $PrinterLog -Append -Encoding ASCII
    Quote from:
    Use a PowerShell Logon Script To Update Printer Mappings
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • 7 AP for 250 users in the building without Backbone

    Hello,
    We need connect 250 users wireless and more o less 7 AP to give cover in the building, but we don?t have a backbone wiring and need the same SSID.
    which product to be the best? or you think it?s better a backbone among AP?

    Lots more details are needed, along with a site survey.
    Is the building one floor, many floors? Construction materials? How many other wireless systems are "in the neighborhood"? Lots of radio noise, or an RF-quiet environment?
    *GENERALLY* you can probably / maybe use a dual-radio AP, like a 1241, where the clients are served on 2.4 (802.11g), and the 802.11a radios are used as a backbone channel.
    Because of backbone constraints, you'd probably limit your clients to some lower bandwidth (no more than 11 Mbps / 802.11b speeds).
    250 clients with 7 APs ... that's probably going to be a stretch. How many logged on at the same time? What kind of traffic? Any voice?
    Given the choice, a wired backbone will give you better performance ... do it if you can.
    You also have a choice of having all the APs be "stand-alone" (automomous) or using "lightweight" APs to a single central controller.
    You need on-site help; someone to do a solid site survey and make recommendations ... anything you get here are, at best, "a good guess," and will probably end up costing you more money and reputation.
    We're OK for ideas and clarification, but someone that knows what they're doing needs to put eyeballs to the location to make a realistic recommendation.
    Good Luck
    Scott

  • Deploy Acrobat Pro 9 with updates

    Hello,
    I manage the system imaging and software deployment for a company with over 100 macs. I have written shell scripts that install the CS4 suite on a machine after it has been reimaged. The script then installs the updates for all the CS4 products except Acrobat Pro 9. That part works fine. The challenge I have now is that Acrobat Pro 9 has 400mb+ of updates and I can't script the installation of them. I don't want my helpdesk staff to manually go through the process of downloading and installing the updates on every machine that needs to be reimaged.
    Before updates can be applied, the Acrobat Pro 9 has to be licensed. Doing that includes launching one of the other CS4 apps (e.g. Photoshop) first, then launching Acrobat Pro 9, clicking ok on various dialog boxes and then "accept" on the EULA. Once all that is done, I can script the installation of the updates (although, not as easily as the other CS4 apps).
    In the windows world, there is an Acrobat customization tool that allows you to deploy the Acrobat without needing to accept the EULA. I haven't been able to find anything like that for the Mac.
    Does anyone know how to get around this problem?
    Thank you for your help,
    Kevin

    thanks for the push to getting a cache cleaner -- tried and will see if it keeps the problem in hand.
    d.

  • FMS Licensing - Can I host it for my clients?

    Hi everyone,
    I'm looking at the licensing for FMIS 3, and I see this
    clause:
    2.8.4.
    Prohibited Use. Except as expressly authorized under this
    Agreement, Licensee is prohibited from: (a) using the Software on
    behalf of third parties; (b) renting, leasing, lending or granting
    other rights in the Software including rights on a membership,
    subscription or hosted basis; (c) providing use of the Software in
    a third party outsourcing facility or service, service bureau
    arrangement, or time sharing basis; (d) allowing any person who is
    not an Authorized User from using the Software; and (e) bundling or
    integrating the Software with other products and services.
    Notwithstanding the foregoing, with respect to the Interactive
    Server and Streaming Server only, Licensee is permitted to host the
    Software for use by persons other than Authorized Users.
    Does this mean that I am not allowed to develop apps for my
    clients and host them on my server? Do I have to get each of them
    their own servers? Does anyone have any insight into this clause?
    Thank you!
    - Adrian

    hrms. thats interesting. I honestly don't know but if you
    find out let me know. Maybe that explains why hosts out there still
    use FMS2 for hosting apps for their clients with.

  • Using MAS/MAR with SQL 2005 / MSA clients with SQL2000 ?

    Hello,
    for the upgrade to MAS/MAR 5.0 SP15,  SQL2005 is only supported.
    AT the moment we use 5.0 SP11 with SQL2000.
    Is it possible to install the sql2005 only on the MAR/MAS and create an upgrade
    package (MUP) for MAS clients (with SQL2000), which should also be upgraded to 5.0 SP15 ?
    Or must I upgrade the msa-clients to sql2005 too ?
    Or can I upgrade the MAR/MAS with SQL2000 and forget the SQL-upgrade to 2005 ?
    WHat do you think is the best way ?
    Thanks,
    Gerd

    There are two possible scenarios for this issue.
    If all the clients are connected in network :
    1 You can take the IDES DB Backup in one machine copy it to all client laptops and restore it. you can also achive this using SQL server inbuilt stored procedures. i.e this can be automated with simple SQL script.
    If the client laptops are not in the network
    1. One way is, you have to upgrade one client laptop machine to SQL Server 2005 and make sure that every thing works fine. take the image of the machine, pack it in MUP  and roll out to all client laptops. This is the preferred way of doing.
    2. Secnd way is, You just need to automate the entire of task of taking the IDES DB backup in each user laptop, install the SQL server 2005 and then attaching the backup DB. It is not tested by us and not sure of the results.
    Best Regards
    Shankar

Maybe you are looking for