vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| "m_m" <marek312@poczta.onet.pl> wrote in news:1129552779.065104.293130 @g14g2000cwa.googlegroups.com: > I'm having a heck of a time in establishing a connection client-server > in order to use Webspeed. Needless to say I have never used it before. > Any advice would be appreciated. > > I'm not quite sure what you are trying to achieve, but WebSpeed is only (optionally) client/server when the WebSpeed agents connects to the database (and should only be done at startup for preformance reasons).. If you are attempting a connection to a WebSpeed broker/agent when doing development, make sure the settings in the AppBuilder are pointing at the correct host where the webserver is installed (localhost is the default setting). Kevin |
| |||
| In article <1129552779.065104.293130@g14g2000cwa.googlegroups .com>, "m_m" <marek312@poczta.onet.pl> wrote: > I'm having a heck of a time in establishing a connection client-server > in order to use Webspeed. Needless to say I have never used it before. > Any advice would be appreciated. Start up your database server with a name: proserve -db yourdb -H yourhost -S yourserver -N TCP Connect with the same parameters (note the service and host name must be the same) This might give you some clues: http://amduus.com/OpenSrc/FreePublic...WebspeedIntro/ -- Available for Hire! http://amduus.com/Resumes/ |
| ||||
| In article <1129616945.787230.157070@g47g2000cwa.googlegroups .com>, "m_m" <marek312@poczta.onet.pl> wrote: > Well, my db is been running with all parameters -S -N and -H but how > to setup the WebSpeed and to start working with it ? I've been trying > to use Perogress Explorer Tool but can't connect to my server ? The Progress explorer tool needs to have the Admin Server running in order to talk to something. Under UNIX the command is proadsv -start Or you can go and edit the ubroker.properties file yourself. It is in $DLC/properties/ubroker.properties. Here is an example definition: [UBroker.WS.se0001pub] uuid=932.99.000.SG1:1ee77e:cf3bbe04fd:-8000 srvrStartupParam=-p web/objects/web-disp.p -weblogerror -pf /home/clients/0001/se/1/script/se.pf srvrLogFile=/tmp/se0001pub.server.log brokerLogFile=/tmp/se0001pub.broker.log controllingNameServer=NS1 environment= srvrAppMode=Production userName= groupName= appserviceNameList=se0001pub description=Service Express Demo Public portNumber=22522 srvrMinPort=22523 srvrMaxPort=22526 maxSrvrInstance=4 propath=/appl/prod/clients/0001/se/1/srvexp/srcpub workDir=/appl/prod/clients/0001/se/1/srvexp/srcpub The srvrStartupParam is where you would add in your -S -H -N parameters (or use a pf file like I do.) -- Available for Hire! http://amduus.com/Resumes/ |