Multiple-instances are two or more programs which share the same code and run at the same time
Questions tagged [multiple-instances]
1018 questions
95
votes
4 answers
How do I run two separate instances of Spyder
I want to be able to have two instances which are completely independent in the sense that I can be working on two separate unrelated projects in different folders without any interference.

Isopycnal Oscillation
- 3,234
- 6
- 21
- 37
51
votes
1 answer
COM+ object activation in a different partition
I had created a COM+ domain partition then mapped it to a Windows 2008 server machine and imported a COM+ application into it.
I tried using the following C# code to activate an object from that specific partition on the server remotely:
//partition…

Khaled Saleh
- 612
- 4
- 8
44
votes
1 answer
multiple worker/web processes on a single heroku app
Is there some way to configure multiple worker and/or web processes to run in the single Heroku app container? Or does this have to be broken up into multiple Heroku apps?
For example:
worker: node capture.js
worker: node process.js
worker: node…

tobius
- 825
- 1
- 8
- 10
39
votes
4 answers
Android - start multiple activities
is it possible to start multiple activities at once? I mean, from main create 3 activities in some order and just the last will be visible? Up to now, I was able to create only one activity.
Thanks

Waypoint
- 17,283
- 39
- 116
- 170
30
votes
5 answers
Tomcat multiple instances simultaneously
I am trying to run multiple instances of Tomcat, but even after configuring different ports for listening and shutting down the second instance, it keeps trying to listen on 8080 (configured for 8081). I read that I have to set a different value for…

Bruno Klein
- 3,217
- 5
- 29
- 39
28
votes
7 answers
Selenium multiple tabs at once
I'm working with Selenium, and am wondering if it's possible to use multiple TABS at once? I do not want to use multiple browser instances (i.e., 2 copies of IE pun). IF IT IS NOT possible, how would one go about switching between individual tabs,…

Trevor Tiernan
- 392
- 1
- 3
- 9
23
votes
3 answers
How do you join tables from two different SQL Server instances in one SQL query
Possible Duplicate:
Selecting data from two different servers in SQL Server
How can I join two tables, which are located two different SQL Server instances, in one query?

Tarik
- 79,711
- 83
- 236
- 349
19
votes
2 answers
Filter multiple lists with jQuery
I have multiple lists on one page (multiple categories of products) like this:
Category 1
- item1
- item2
- item3
Category 2
- item27 …

Dante
- 649
- 3
- 10
- 24
19
votes
3 answers
TwistedWeb on multicore/multiprocessor
What techniques are people using to utilize multiple processors/cores when running a TwistedWeb server? Is there a recommended way of doing it?
My twisted.web based web service is running on Amazon EC2 instances, which often have multiple CPU cores…

Orange Juce
- 193
- 1
- 5
17
votes
5 answers
PHP Multiple Concurrent Sessions Per User
I'm working on a web app using PHP on Apache. $_SESSION variables are used quite a bit for the information that must persist across pages.
We need each user to be able to open multiple concurrent sessions, either as new tabs or new windows,…

John Gardeniers
- 390
- 1
- 2
- 15
17
votes
3 answers
Logging multiple instance application best practice?
I finally tried log4net for my WPF desktop application.
I'm struggling with the fact that RollingFileAppender has no built in support for multiple instance application.
I don't like an idea of restricting the application to single instance just to…

Kugel
- 19,354
- 16
- 71
- 103
16
votes
4 answers
Max length of SQL Server instance name?
I need to know the maximum character length for the name of an instance of a SQL Server for the following versions (if there is a difference between them.)
SQL Server 2000
SQL Server 2005
SQL Server 2008
SQL Server 2008 R2
(I am working on an…

Paul Sasik
- 79,492
- 20
- 149
- 189
16
votes
1 answer
WDS: Disconnected! loop when running webpack-dev-server simultaneously
Here is my use case.
Several instances of webpack-dev-servers, running simultaneously on shared server everyone is serving content on its one port.
At some point, every site falls into [WDS] Disconnected! loop. It's not clear to me where's the…

egoproxy
- 303
- 3
- 12
16
votes
2 answers
how to use node-schedule to run a cron only on one instance?
My question is how to use node-schedule to run a cron only on one instance out of two instances of node server.
Currently it is running on both instances but I want it to be executed only on one instance.
So How can you make a cluster run a task…

Kamal K
- 179
- 2
- 8
16
votes
6 answers
Wait for multiple applications run asynchronously from batch file to finish
There is a simple Windows batch file that runs multiple instances of application:
start app.exe param1
start app.exe param2
Is there a way to run them asynchronously at the same time (which above does) and wait for them both to finish to perform…

Jaded
- 1,802
- 6
- 25
- 38