From: | Reini Urban <rurban(at)x-ray(dot)at> |
---|---|
To: | PostgreSQL Win32 port list <pgsql-hackers-win32(at)postgresql(dot)org> |
Subject: | Re: [Fwd: PostgreSQL 8.0.0-beta4 Windows 2000 |
Date: | 2004-11-08 05:43:41 |
Message-ID: | 418F078D.2030007@x-ray.at |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers-win32 |
Bruce Momjian schrieb:
> Magnus is working on something that will print a better failure message
> when the virus protection blocks PostgreSQL.
Ah, good.
Note that cygwin setup.exe blocks McAfee Shield "AvSynMgr" also to be
able to download our packages after an UI dialog.
I don't know yet if just changing some settings might help.
Blocking is kinda unfriendly but the only solution.
That's the detection routine: (from our setup AntiVirus.cc)
SCM = OpenSCManager (NULL, NULL, SC_MANAGER_ALL_ACCESS);
McAfeeService = OpenService (SCM, "AvSynMgr",
SERVICE_QUERY_STATUS| SERVICE_STOP| SERVICE_START);
if (!McAfeeService) {
log (LOG_PLAIN, String("Could not open service McShield for query,
start and stop. McAfee may not be installed, or we don't have access.\n"));
CloseServiceHandle(SCM);
return;
}
SERVICE_STATUS status;
if (!QueryServiceStatus (McAfeeService, &status))
{
CloseServiceHandle(SCM);
CloseServiceHandle(McAfeeService);
log (LOG_PLAIN, String("Couldn't determine status of McAfee service.\n"));
return;
}
if (status.dwCurrentState == SERVICE_STOPPED ||
status.dwCurrentState == SERVICE_STOP_PENDING)
{
CloseServiceHandle(SCM);
CloseServiceHandle(McAfeeService);
log (LOG_PLAIN, "Mcafee is already stopped, nothing to see here\n");
}
... and so on
> ---------------------------------------------------------------------------
>
> Reini Urban wrote:
>
>>forwarding a doc request from cygwin.
>>
>>(Note: You might have to disable Norton Antivirus of you experience
>>problems.)
>
> -- Start of included mail From: yuvaraj duraisamy <durai_yuvaraj(at)rediffmail(dot)com>
>
>>X-Account-Key: account1
>>Delivery-date: Mon, 08 Nov 2004 02:16:50 +0100
>>Envelope-to: ru(at)x-ray(dot)at
>>Date: 1 Nov 2004 19:54:41 -0000
>>Reply-To: yuvaraj duraisamy <durai_yuvaraj(at)rediffmail(dot)com>
>>To: pgsql-cygwin(at)postgresql(dot)org
>>Subject: [CYGWIN] PostgreSQL 8.0.0-beta4 Windows 2000 Installation
>>X-Inode-Forwarded: rurban(at)x-ray(dot)at
>>X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *1CQy9I-00031T-00*oVU2FDtWBJ.*
>>X-Inode-SpamScore: 1.7
>
>> ?Hi
>>I am new Postgresql. I downloaded and installed postgresql-8.0.0-beta4 on windows 2000 everything went smooth, after creating a database in the console; I could connect the database once with the php. After that no log nothing. After reinstallation also I got the same result. After wasting about 10 hours I got a clue and reinstalled after uninstalling the Norton Antivirus I am running successfully.
>>Providing such a silly information will encourage help new users.
>>Thanks for the OSS community
From | Date | Subject | |
---|---|---|---|
Next Message | Joerg Hessdoerfer | 2004-11-08 09:23:38 | Log messages of the server? |
Previous Message | Bruce Momjian | 2004-11-08 05:00:32 | Re: [Fwd: PostgreSQL 8.0.0-beta4 Windows 2000 |