Здрасьте.
Пытаюсь ставить Postgre на винду. И получаю довольно странную катрину. На одни компы Postgre ставится без проблем, на другие не хочет ни в какую. Отказывается ставиться со словами:
The program "postgres" IS needed BY initdb but was NOT found IN the same directory AS "C:/Program Files/PostgreSQL/8.2.4-3.1C/bin/initdb". CHECK your installation.
Слова записаны в файл C:\Program Files\PostgreSQL\8.2.4-3.1C\tmp\initdb.log.
На экран при этом выдается такое сообщение:
Не удалось запустить initdb: 1! Пожалуйста, посмотрите файл C:\Program Files\PostgreSQL\8.2.4-3.1C\tmp\initdb.log для получения детальной информации. Внимание! После нажатия на кнопку ОК Файл будет автоматически удален.
Пунктуация и орфография сохранены
Забавно, то, что не ставится на Windows 2003 SP2, а на Windows XP SP2 ставится. Изначально ставил в терминале, но начитавшись форумов попробовал ставить с консоли. Результат одинаковый — не устанавливается.
В логе инсталяции есть ошибка:
MSI (s) (B8:EC) [13:22:15:748]: Executing op: CustomActionSchedule(Action=RunInitdb,ActionType=3073,Source=BinaryData,Target=RunInitdb@4,CustomActionData=1049;C:\Program Files\PostgreSQL\8.2.4-3.1C\;D:\pgsql_db\;C:\Program Files\PostgreSQL\8.2.4-3.1C\share\;5432;;Russian_Russia;WIN1251;postgres;12345;MS-NBT-ITIL;postgres;12345;) MSI (s) (B8:38) [13:22:15:763]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI17.tmp, Entrypoint: RunInitdb@4 MSI (c) (9C:80) [13:22:16:279]: Note: 1: 2205 2: 3: Error MSI (c) (9C:80) [13:22:16:279]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2867
Подскажите, что делать?
P.S. Ставлю ТОЛЬКО на ntfs
Здравствуйте в данной статье рассмотрим установку и настройка сервера 1с.
И так все как обычно вставляем диск, запускаем autoran или 1cv8\windows\setup.exe
И как обычно далее далее далее…. Основная проблема которая может возникнуть в процессе установки не стартует служба Агента 1с. Что нужно сделать что бы это исправить идем в управление компьютером-> службы находим там службу Агента сервера 1с и в ее свойствах ставим запускать с системной учетной записью так как показано на скриншоте.
после этого служба нормально старует и установка успешно завершается.
Следующим этапом будет установка PostgreSQL
С его установкой тоже все должно пройти без проблем
на следующем скриншоте мы выбираем путь установки postgresql
затем выбираем директорию хранения бд
и устанавливаем пароль для пользователя
выбираем кодировку баз
Следующим этапом в развертывании 1c server будет создание баз делается это все не сложно. Запускаем платформу 1с:предприятие
нажимаем кнопку добавить и создаем новую информационную базу на 1с сервере по шаблону вашей конфигурации у нас выскочит вот такое окошко
здесь указываем в первом пункте имя нашего компьютера, название БД для клиентов 1с, тип СУБД Postgreslql, адрес сервера баз данных (в моем случаи агент и сервер баз данных это localhost ), пользователь postgres, пароль который мы указывали при установки и не забываем поставить галочку создать базу в случаи её отсутствия ))) вроде бы все )))) нажимаем далее и идем курить
From → 1с
Introduction
This procedure walks you through step-by-step installation of (32-bit) PostgreSQL 9.0.3 onto (32-bit) Microsoft Windows Server 2003 SP2 running within Microsoft Virtual PC 6.0.192. Links to all of the websites and key topics presented in this procedure are provided in the References section, below.
Procedure
- Download the PostgreSQL Plus Standard Server version 9.0.
- Doubleclick the installer executable. The first page of the Setup wizard appears.
- Click Next. The Installation Directory page appears.
- Enter a program files directory or accept the default, and then click Next. The Data Directory page appears.
- Enter a data files directory or accept the default, and then click Next. The Password page appears.
- Enter a superuser password, and then click Next. The Port page appears.
- Enter a port or accept the default, and then click Next. The Advanced Options page appears.
- Select a locale or accept the default, and then click Next. The Ready to Install page appears.
- Click Next. The Installing progress page appears. Installation takes approximately 5-7 minutes. After installation is completed, the Completing the PostGreSQL Setup Wizard page appears.
- Leave the Stack Builder checkbox unchecked, and then click Finish. This completes the installation. Now let’s test the installation.
- Open a command console.
NOTE: In the commands that follow, the path to the PostgreSQL bin directory was added to the Windows PATH environment variable. If you don’t do this for your instance, you’ll need to execute these commands from within the PostgreSQL bin directory.
- At the prompt, enter the following command to stop the server:
pg_ctl status -D «C:\Program Files\PostgreSQL\9.0\data»
A server status message will appear in the console.
- At the prompt, enter the following command to check the status of the server:
pg_ctl stop -D «C:\Program Files\PostgreSQL\9.0\data» -m immediate
A new server status message will appear in the console.
- At the prompt, enter the following command to start the server:
pg_ctl status -D «C:\Program Files\PostgreSQL\9.0\data»
A server status message will appear in the console.
- At the prompt, enter the following command to check the server status one more time:
pg_ctl stop -D «C:\Program Files\PostgreSQL\9.0\data» -m immediate
A new server status message will appear in the console.
- Now let’s check the operation of the PostgreSQL GUI.
- From the PostgreSQL 9.0 program group, select pgAdmin III. The pgAdmin III application dialog appears.
- Right-click on the PostgreSQL 9.0 (localhost: 5432), and then select Connect from the pop-up menu. The Connect to Server dialog appears.
- Enter the SU password, and then click OK. The dialog closes, and you are returned to the main application dialog. Note that now you’ll see a number of objects appearing below the PostgreSQL 9.0 (localhost: 5432) item.
- Congratulations! You’ve successfully installed PostgreSQL 9.0 to Windows and tested its successfull installation.
References
- EnterpriseDB home page
- EnterpriseDB Documentation: pg_ctl
- PostgreSQL Wiki
- PostgreSQL Sample Database
- Microsoft Virtual PC
- Total security in a PostgreSQL database
- A collection of sample databases for PostgreSQL — PgFoundry
Notes
- Installed to virtual Microsoft Windows Server 2003 R2 within Microsoft Virtual PC 6.0.192.0.
- To simplify entering PostgreSQL commands without having to continually navigate to the bin directory, consider adding the path to the bin directory to the Windows PATH environment variable.
- A sample database is not included in this installation. However a scripted sample DB is available at the PostGreSQL Sample Database link in the References section above.
Environment
- Machine 1
IP: 10.2.29.183
OS: Windows Vista Business SP1
DB: PostgreSQL 8.3, port: 5432 - Machine 2
IP: 10.2.29.18
OS: Windows Server 2003 Enterprise x64 Edition SP2
DB: Microsoft SQL Server X86 Standard 9.00.1399.06, port: 4900
Procedures
- Machine 1
- Make sure port 5432 is opened in the firewall.
- Make sure Machine 2 is granted access to PostgreSQL. The access config file is at C:\Program Files\PostgreSQL\8.3\data\pg_hba.conf in this case.
host all all 10.2.29.18/32 md5
is added to the end of the file.
- Machine 2
- Install 64-Bit OLEDB Provider for ODBC (MSDASQL), the installer file is WindowsServer2003.WindowsXP-KB948459-v2-x64-ENU.exe in this case.
- Install 32-bit PostgreSQL ODBC driver, choose the appropriate PostgreSQL version matching the setup (in this case psqlodbc_08_03_xxxx.zip).
- In SQL Server Management Studio, create a linked server using the following command:
EXEC sp_addlinkedserver
@server = '10.2.29.183',
@srvproduct = 'PostgreSQL',
@provider = 'MSDASQL',
@provstr = 'Driver=PostgreSQL ANSI;uid=postgres;Server=10.2.29.183;Port=5432;database=my_db_name;pwd=my_password';
EXEC sp_addlinkedsrvlogin
@rmtsrvname = '10.2.29.183',
@useself = 'false',
@rmtuser = 'postgres',
@rmtpassword = 'my_password'; - To test the connection:
SELECT *
FROM OPENQUERY([10.2.29.183], 'SELECT * FROM information_schema.tables')
Fuente: http://eddiecjc.blogspot.com/2009/05/set-up-postgresql-as-linked-server-in.html
Driver: http://www.postgresql.org/ftp/odbc/versions/msi/
Publicado el 1 agosto, 2012 en SQL Server 2008. Añade a favoritos el enlace permanente. 7 comentarios.
psqlodbc-07_01_0007.zip | 2001-09-24 12:45:42 | 192.1 KB |
psqlodbc-07_01_0008.zip | 2001-10-29 11:24:18 | 192.1 KB |
psqlodbc-07_01_0009.zip | 2001-11-27 09:36:32 | 197.0 KB |
psqlodbc-07_01_0010.zip | 2002-03-19 08:12:29 | 197.5 KB |
psqlodbc-07_02_0001.zip | 2002-04-15 13:12:00 | 486.9 KB |
psqlodbc-07_02_0002.zip | 2002-08-30 14:32:59 | 499.0 KB |
psqlodbc-07_02_0003.zip | 2002-10-03 09:21:26 | 508.3 KB |
psqlodbc-07_02_0004.zip | 2002-11-08 08:59:57 | 510.1 KB |
psqlodbc-07_02_0005.zip | 2002-11-29 13:25:05 | 513.2 KB |
psqlodbc-07_03_0100.zip | 2003-05-15 16:03:44 | 530.5 KB |
psqlodbc-07_03_0200.zip | 2003-10-22 13:34:12 | 841.0 KB |
psqlodbc-08_00_0100.zip | 2005-03-02 14:20:29 | 189.5 KB |
psqlodbc-08_00_0101.zip | 2005-03-05 11:49:42 | 189.6 KB |
psqlodbc-08_00_0102.zip | 2005-08-02 07:42:44 | 190.0 KB |
psqlodbc-08_01_0100.zip | 2005-11-05 21:41:02 | 1.8 MB |
psqlodbc-08_01_0101.zip | 2005-11-11 08:50:47 | 1.8 MB |
psqlodbc-08_01_0102.zip | 2005-12-01 09:27:53 | 1.8 MB |
psqlodbc-08_01_0200.zip | 2006-02-02 09:40:07 | 1.8 MB |
psqlodbc-08_02_0100.zip | 2006-08-31 09:23:48 | 2.0 MB |
psqlodbc-08_02_0200.zip | 2006-10-24 15:08:48 | 2.0 MB |
psqlodbc-08_02_0300.zip | 2007-04-16 08:59:03 | 2.1 MB |
psqlodbc-08_02_0400.zip | 2007-04-27 08:12:28 | 2.1 MB |
psqlodbc-08_02_0500.zip | 2007-09-25 09:25:01 | 2.1 MB |
psqlodbc_08_03_0100.zip | 2008-01-22 12:29:30 | 2.2 MB |
psqlodbc_08_03_0200.zip | 2008-05-04 16:50:54 | 4.1 MB |
psqlodbc_08_03_0300.zip | 2008-09-26 14:40:21 | 4.1 MB |
psqlodbc_08_03_0400.zip | 2008-11-07 15:19:01 | 4.1 MB |
psqlodbc_08_04_0100.zip | 2009-07-21 13:51:21 | 4.2 MB |
psqlodbc_08_04_0200.zip | 2009-12-26 15:44:31 | 4.2 MB |
psqlodbc_09_00_0100.zip | 2010-10-07 16:26:10 | 3.8 MB |
psqlodbc_09_00_0101-x64.zip | 2010-10-16 15:28:54 | 1.7 MB |
psqlodbc_09_00_0101.zip | 2010-10-16 15:28:54 | 3.8 MB |
psqlodbc_09_00_0200-x64.zip | 2010-10-30 16:18:54 | 1.7 MB |
psqlodbc_09_00_0200.zip | 2010-10-30 16:18:54 | 3.8 MB |
psqlodbc_09_00_0300-x64.zip | 2011-05-09 12:56:07 | 1.7 MB |
psqlodbc_09_00_0300.zip | 2011-05-09 12:56:07 | 3.6 MB |
psqlodbc_09_00_0310-x64.zip | 2011-07-08 15:15:37 | 1.7 MB |
psqlodbc_09_00_0310.zip | 2011-07-08 15:15:36 | 3.6 MB |
psqlodbc_09_01_0100-1.zip | 2012-01-04 00:32:34 | 3.7 MB |
psqlodbc_09_01_0100-x64.zip | 2011-12-30 15:17:38 | 1.7 MB |
psqlodbc_09_01_0100.zip | 2011-12-30 15:17:38 | 3.7 MB |
psqlodbc_09_01_0200-1.zip | 2012-09-07 16:12:30 | 3.8 MB |
psqlodbc_09_01_0200-x64.zip | 2012-08-20 03:50:56 | 1.8 MB |
psqlodbc_09_01_0200.zip | 2012-08-20 03:50:56 | 4.2 MB |
psqlodbc_09_02_0100-x64.zip | 2013-06-03 14:37:12 | 1.6 MB |
psqlodbc_09_02_0100.zip | 2013-06-03 14:37:12 | 2.7 MB |
psqlodbc_09_03_0100-x64.zip | 2013-12-18 16:06:58 | 1.5 MB |
psqlodbc_09_03_0100.zip | 2013-12-18 16:06:58 | 1.5 MB |
psqlodbc_09_03_0200-x64.zip | 2014-02-23 06:44:32 | 1.6 MB |
psqlodbc_09_03_0200.zip | 2014-02-23 06:44:32 | 1.4 MB |
psqlodbc_09_03_0210-x64.zip | 2014-03-08 12:05:38 | 1.6 MB |
psqlodbc_09_03_0210.zip | 2014-03-08 12:05:38 | 1.4 MB |
psqlodbc_09_03_0300-1.zip | 2014-06-12 14:12:18 | 1.4 MB |
psqlodbc_09_03_0300-x64-1.zip | 2014-06-12 14:12:18 | 1.6 MB |
psqlodbc_09_03_0300-x64.zip | 2014-05-17 13:25:01 | 1.6 MB |
psqlodbc_09_03_0300.zip | 2014-05-17 13:25:01 | 1.4 MB |
psqlodbc_09_03_0400.zip | 2014-10-26 12:11:05 | 5.9 MB |
psqlodbc_09_05_0100-x64.zip | 2016-01-11 12:45:39 | 3.9 MB |
psqlodbc_09_05_0100-x86.zip | 2016-01-11 12:45:39 | 3.7 MB |
psqlodbc_09_05_0100.zip | 2016-01-10 14:29:35 | 7.9 MB |
psqlodbc_09_05_0200-x64.zip | 2016-04-09 14:25:02 | 4.2 MB |
psqlodbc_09_05_0200-x86.zip | 2016-04-09 14:25:02 | 4.1 MB |
psqlodbc_09_05_0200.zip | 2016-04-09 14:25:02 | 8.6 MB |
psqlodbc_09_05_0210-x64.zip | 2016-04-15 14:25:55 | 4.1 MB |
psqlodbc_09_05_0210-x86.zip | 2016-04-15 14:25:55 | 3.9 MB |
psqlodbc_09_05_0210.zip | 2016-04-15 14:25:55 | 8.3 MB |
psqlodbc_09_05_0300-x64.zip | 2016-06-17 15:11:37 | 4.1 MB |
psqlodbc_09_05_0300-x86.zip | 2016-06-17 15:11:37 | 3.9 MB |
psqlodbc_09_05_0300.zip | 2016-06-17 15:11:37 | 8.3 MB |
psqlodbc_09_05_0400-x64.zip | 2016-07-30 15:30:34 | 4.1 MB |
psqlodbc_09_05_0400-x86.zip | 2016-07-30 15:30:34 | 3.9 MB |
psqlodbc_09_05_0400.zip | 2016-07-30 15:30:34 | 8.3 MB |
psqlodbc_09_06_0100-x64.zip | 2017-02-03 13:52:29 | 4.1 MB |
psqlodbc_09_06_0100-x86.zip | 2017-02-03 13:52:29 | 4.0 MB |
psqlodbc_09_06_0100.zip | 2017-02-03 13:52:29 | 8.4 MB |
psqlodbc_09_06_0200-x64.zip | 2017-03-10 15:40:53 | 4.2 MB |
psqlodbc_09_06_0200-x86.zip | 2017-03-10 15:40:53 | 4.0 MB |
psqlodbc_09_06_0200.zip | 2017-03-10 15:40:53 | 8.5 MB |
psqlodbc_09_06_0300-x64.zip | 2017-05-07 14:34:05 | 4.2 MB |
psqlodbc_09_06_0300-x86.zip | 2017-05-07 14:34:05 | 4.0 MB |
psqlodbc_09_06_0300.zip | 2017-05-07 14:34:05 | 8.5 MB |
psqlodbc_09_06_0310-x64.zip | 2017-05-11 15:19:13 | 4.2 MB |
psqlodbc_09_06_0310-x86.zip | 2017-05-11 15:19:13 | 4.0 MB |
psqlodbc_09_06_0310.zip | 2017-05-11 15:19:13 | 8.5 MB |
psqlodbc_09_06_0400-x64.zip | 2017-07-18 14:35:47 | 4.2 MB |
psqlodbc_09_06_0400-x86.zip | 2017-07-18 14:35:47 | 4.0 MB |
psqlodbc_09_06_0400.zip | 2017-07-18 14:35:47 | 8.5 MB |
psqlodbc_09_06_0410-x64.zip | 2017-07-27 14:13:01 | 4.2 MB |
psqlodbc_09_06_0410-x86.zip | 2017-07-27 14:13:01 | 4.0 MB |
psqlodbc_09_06_0410.zip | 2017-07-27 14:13:01 | 8.5 MB |
psqlodbc_09_06_0500-x64.zip | 2017-09-05 14:30:09 | 4.4 MB |
psqlodbc_09_06_0500-x86.zip | 2017-09-05 14:30:09 | 4.2 MB |
psqlodbc_09_06_0500.zip | 2017-09-05 14:30:09 | 8.8 MB |
psqlodbc_10_00_0000-x64.zip | 2017-10-13 14:23:53 | 4.4 MB |
psqlodbc_10_00_0000-x86.zip | 2017-10-13 14:23:53 | 4.2 MB |
psqlodbc_10_00_0000.zip | 2017-10-13 14:23:53 | 9.0 MB |
psqlodbc_10_01_0000-x64.zip | 2017-12-27 14:39:54 | 4.4 MB |
psqlodbc_10_01_0000-x86.zip | 2017-12-27 14:39:54 | 4.2 MB |
psqlodbc_10_01_0000.zip | 2017-12-27 14:39:54 | 9.0 MB |
psqlodbc_10_02_0000-x64.zip | 2018-03-30 14:31:45 | 4.4 MB |
psqlodbc_10_02_0000-x86.zip | 2018-03-30 14:31:45 | 4.2 MB |
psqlodbc_10_02_0000.zip | 2018-03-30 14:31:45 | 8.9 MB |
psqlodbc_10_03_0000-x64.zip | 2018-05-19 13:14:46 | 4.4 MB |
psqlodbc_10_03_0000-x86.zip | 2018-05-19 13:14:46 | 4.2 MB |
psqlodbc_10_03_0000.zip | 2018-05-19 13:14:46 | 9.0 MB |
psqlodbc_11_00_0000-x64.zip | 2018-11-17 13:50:44 | 3.5 MB |
psqlodbc_11_00_0000-x86.zip | 2018-11-17 13:50:44 | 3.0 MB |
psqlodbc_11_00_0000.zip | 2018-11-17 13:50:44 | 6.8 MB |
psqlodbc_11_01_0000-x64.zip | 2019-05-24 14:28:42 | 3.5 MB |
psqlodbc_11_01_0000-x86.zip | 2019-05-24 14:28:42 | 3.0 MB |
psqlodbc_11_01_0000.zip | 2019-05-24 14:28:42 | 6.8 MB |
psqlodbc_12_00_0000-x64.zip | 2019-10-11 14:14:32 | 3.7 MB |
psqlodbc_12_00_0000-x86.zip | 2019-10-11 14:14:32 | 3.3 MB |
psqlodbc_12_00_0000.zip | 2019-10-11 14:14:32 | 7.3 MB |
psqlodbc_12_01_0000-x64.zip | 2020-01-07 13:53:45 | 3.6 MB |
psqlodbc_12_01_0000-x86.zip | 2020-01-07 13:53:45 | 3.3 MB |
psqlodbc_12_01_0000.zip | 2020-01-07 13:53:45 | 7.3 MB |
psqlodbc_12_02_0000-x64.zip | 2020-05-26 13:02:47 | 3.7 MB |
psqlodbc_12_02_0000-x86.zip | 2020-05-26 13:02:51 | 3.3 MB |
psqlodbc_12_02_0000.zip | 2020-05-26 13:03:01 | 7.3 MB |
psqlodbc_13_00_0000-x64.zip | 2020-11-19 09:55:01 | 3.7 MB |
psqlodbc_13_00_0000-x86.zip | 2020-11-19 09:55:05 | 3.4 MB |
psqlodbc_13_00_0000.zip | 2020-11-19 09:55:15 | 7.3 MB |
psqlodbc_13_01_0000-x64.zip | 2021-05-02 12:29:10 | 3.7 MB |
psqlodbc_13_01_0000-x86.zip | 2021-05-02 12:29:15 | 3.4 MB |
psqlodbc_13_01_0000.zip | 2021-05-02 12:29:24 | 7.4 MB |
psqlodbc_13_02_0000-1.zip | 2023-06-20 05:27:12 | 8.3 MB |
psqlodbc_13_02_0000-x64-1.zip | 2023-06-20 05:27:17 | 4.2 MB |
psqlodbc_13_02_0000-x64.zip | 2021-09-22 10:46:41 | 3.7 MB |
psqlodbc_13_02_0000-x86-1.zip | 2023-06-20 05:27:22 | 3.8 MB |
psqlodbc_13_02_0000-x86.zip | 2021-09-22 10:46:46 | 3.4 MB |
psqlodbc_13_02_0000.zip | 2021-09-22 10:46:55 | 7.4 MB |
psqlodbc_15_00_0000-x64.zip | 2023-06-23 07:50:41 | 4.2 MB |
psqlodbc_15_00_0000-x86.zip | 2023-06-23 07:50:47 | 3.8 MB |
psqlodbc_15_00_0000.zip | 2023-06-23 07:50:57 | 8.3 MB |
psqlodbc_16_00_0000-x64.zip | 2023-09-16 08:46:24 | 5.3 MB |
psqlodbc_16_00_0000-x86.zip | 2023-09-16 08:46:29 | 3.8 MB |
psqlodbc_16_00_0000.zip | 2023-09-16 08:46:42 | 9.4 MB |