I have a problem to connect server for Postgres after I updated my windows.Before I update there is no problem to open the database. My database in Postgres also gone. When I want to create my new database it show this error:
Unable to connect to server: could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (127.0.0.1) and accepting TCP/IP connections on port 5432?
asked Nov 10, 2016 at 16:23
6
On windows, Just go to the ‘Services’. Start/Restart the postgresql-X64 service. It worked for me as my service was in stopped state somehow.
answered Feb 23, 2020 at 7:06
gagan chhabragagan chhabra
1,3451 gold badge8 silver badges9 bronze badges
4
There are two items to configure if your server isn’t on localhost:
- find your
postgresql.conf
and add your server’s public IP address to the end of the settinglisten_addresses
(separate multiple entries by commas); uncomment the line if it is commented out (e.g. with ‘#’) - add a line to
pg_hba.conf
containing your client’s IP address — you may copy the line containing 127.0.0.1 and change only the IP address
On Ubuntu, these files are in /etc/postgresql/<version>/main/
.
answered Mar 14, 2017 at 1:12
1
In my case I couldnt’ open the pgAdmin4, for some reason. I use Postgresql 10 and pgAdmin4
The port
in the postgresql.conf
was not the same as in the pgAdmin4 —> postgreSQL 10 —> properties —> Connection —> port.
I fixed it and it worked. Check if those 2 are in line.
answered Sep 12, 2020 at 13:55
2
First press win key+R
Search for services.msc
A window will open in that find postgresql-x64-13 and open that, in that tab click start option
For me its works perfectly.
answered May 31, 2021 at 5:03
VADHANVADHAN
2313 silver badges2 bronze badges
0
- Go to PgAdmin
- Right click on PostgreSQL
3.Choose properties - At the top, select connection
- Try changing the port from 5433 to 5432 or vice versa.
And re-enter.
answered May 15, 2021 at 17:27
1
Faced this problem immediately after installing on Windows. At startup the pgAdmin gave this error which means that the server is not running. For me the solution was: Start -> Control panel -> Administration -> Services -> postgresql-x64-12 — start or restart
answered Aug 7, 2020 at 21:49
Tim UzlovTim Uzlov
1712 silver badges6 bronze badges
On windows, Just go to the ‘Services’. Start/Restart the postgresql-X64 service. It worked for me as my service was in stopped state somehow.
worked for me
answered Sep 10, 2020 at 18:00
devyan91devyan91
791 silver badge6 bronze badges
This happened because I installed two versions of Postgres (v12 and v13). Psql 12 was installed later so got the port 5433. I needed to use Postgres 12. To fix this particular case:
-
Go to Program Files/Postgres/<required_version>/data
Open the
postgresql.conf
fileSearch for
Port
and change the port number to 5432. -
Open Windows Services (Press
Cmd + R
then typeservices.msc
) -
Stop the service for the version you don’t want (You can stop it permanentally from the Right Click > Properties menu.)
-
Start the service for the version you want.
answered Aug 7, 2021 at 14:30
Nitin NainNitin Nain
5,0521 gold badge36 silver badges51 bronze badges
1
Summary: There are 2 Solutions:
-
Open
Services
and make sure thatpostgresql-x64-14
is running. -
Go to
C:Program FilesPostgreSQL14data
and openpostgresql.conf
with notepad, find and changeport
to e.g5432
and after that openServices
and restartpostgresql-x64-14
.
answered Apr 11, 2022 at 16:06
MaceMace
1311 silver badge6 bronze badges
1
I think the problem is with your server listening to default public IP address.
For example in the PostgreSQL package, your sever is set to listen to localhost as default public address which when you launch/ run database, the address might be something like ‘127.0.0.1’
To fix you can try change localhost to ‘‘ as in «listen_addresses = ‘‘».
As seen as "listen_addresses = 'localhost'"
under «Connection Settings
» in the postgresql.conf file
.
Also to access your postgresql.conf
file, go to:
On Windows, the file is in /Program Files/PostgreSQL/<version>/share/.
On Ubuntu, these files are in /etc/postgresql/<version>/main/.
P.S: Changing the defaults ‘localhost’; to ‘*’ will let your server listen to any public database address either «localhost, 127.0.0.1 etc.
I know you might have fix this, just for others that might run into the same issue in the future. Hope it was helpful
answered Jul 31, 2019 at 14:41
When I run psql
, it gave me the same error, and it was because I changed the port while setting Postgres in the installation process.
I had to change back to the default port 5432 in PostgreSQL.conf (which can be found in the data directory) i.e
C:Program FilesPostgreSQL14data>
The problem is no more!
answered Jul 19, 2022 at 15:19
1
goto service and start postgresql-x64-10 service
steps
- run -> services.msc -> find postgresql-x64-10 -> start the service
- services image
answered Mar 12, 2021 at 14:33
This is a note for a normal user. If using an official installer, it should have a built-in service,
- Win+R and type
services.msc
- Search Postgres service based on the version installed, e.g., «
postgresql-x64-13 - PostgreSQL Server 13
« - Click stop, start, or restart the service option
- If you don’t see start/stop or if these buttons are disabled, then double-click on the PostgreSQL and change startup type to automatic and click on start. This will start the PostgreSQL every time automatically whenever you start your system.
answered Jul 6, 2021 at 2:54
Manoj SwamiManoj Swami
772 silver badges12 bronze badges
1
I had the same issue, so, I uninstalled postgres. And during reinstallation I noticed the error:
"Failed to load SQL modules into the database cluster"
And:
"Problem running post installation step.Installition may not complete correctly. Error reading file C:/Program Files/PostgreSQL/14/data/postgresql.conf"
.
I cancelled the installation and then tried again, but with a plain-text password this time, and it worked. It turned out that the special characters in my password were the problem.
ouflak
2,44810 gold badges44 silver badges49 bronze badges
answered Oct 1, 2021 at 14:48
I got this error message when I moved my database to another computer.
I also got some error messages when starting the server first with
pg_ctl -D /wherever/your/database/is start
which were
pg_ctl: another server might be running; trying to start server anyway
server startingDETAIL: File «/wherever/your/database/is/PG_VERSION» does not contain valid data.
HINT: You might need to initdb.
In my case rather than running initdb this command actually fixed the issue
pg_ctl -D /wherever/your/database/is restart
answered May 10, 2018 at 13:42
uosjeaduosjead
4166 silver badges5 bronze badges
You might have changed the permissions of the ‘PostgreSQL 12’ in ‘services.msc’. Or maybe it is not started and you are trying to start the server when Postgre 12 is not running.
Try these:
- Try to start the ‘PostgreSQL 12’ in ‘services.msc’ manually.
- Try restarting your PC
- If nothing helps, try reinstalling PostgreSQL (pgAdmin 4) from the scratch.
answered Mar 30, 2021 at 12:18
NirmalNirmal
571 silver badge8 bronze badges
Go to C:Program FilesPostgreSQL13data
, edit postgresql.conf
with notepad.
Change:
#port = 54XX
To:
port = 54XX
(change requires restart)
restart service at «service system» on window.
Tony Joseph
1,7922 gold badges14 silver badges17 bronze badges
answered Apr 20, 2021 at 17:54
Using psql with single quotes fails:
psql -c 'Select version();' 'postgresql://username:password@db.abcdefghi.ap-southeast-2.rds.amazonaws.com:8080/the_db'
psql: could not connect to server: Connection refused
(0x0000274D/10061)
Is the server running on host «localhost» (::1) and accepting
TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host «localhost» (127.0.0.1) and accepting
TCP/IP connections on port 5432?
Using double quotes works:
psql -c "Select version();" "postgresql://username:password@db.abcdefghi.ap-southeast-2.rds.amazonaws.com:8080/the_db"
PostgreSQL 10.14 on x86_64-pc-linux-gnu, compiled by x86_64-unknown-linux-gnu-gcc (GCC) 4.9.4, 64-bit
(1 row)
answered Jul 14, 2021 at 1:40
Jeremy ThompsonJeremy Thompson
61.1k33 gold badges186 silver badges317 bronze badges
After a wasting 3-4 hrs i find the solution something like this
First set path in enviroment variable.And then make port and psql connecting same i.e 5432 or 5433
answered Sep 18, 2021 at 3:21
If you newly installed the pgAdmin
, and you did not remember to install PostgreSQL
at that time, you get that error. Make sure you install both pgAdmin
And PostgreSQL
.
answered Jan 6, 2022 at 11:14
And so for the new arrivals. If you are using pgAdmin and a Windows operating system, do some research to resolve the issue.
Make sure you have Postgresql installed or active
-
To do this, go to windows services (press
Cmd + R
and run theservices.msc
command) -
Look in the list for a service called
postgresql-x{BIT}-{Version}-PostgreSQL Server {Version}
Solution 1: If you don’t find the service, then PostgreSQL is not installed or has been uninstalled, install it again.
Solution 2: If you find the service, but you still can’t log in, then most likely the service is not active for some reason, select the service and click the Start or Restart button
answered Mar 24, 2022 at 4:41
emrdevemrdev
2,1153 gold badges9 silver badges15 bronze badges
For me I was getting this error and unable to open the server in PgAdmin is because I very often forgot to start the server, one for the way you can start the server with is by running this commands on cmd, make sure you provide the right path
cd "C:Program FilesPostgreSQL14bin"
pg_ctl -D "C:Program FilesPostgreSQL14data" start
answered Apr 13, 2022 at 6:42
DINA TAKLITDINA TAKLIT
6,7459 gold badges69 silver badges73 bronze badges
If you are a Mac OS user, run these below two commands on termial,
rm /usr/local/var/postgres/postmaster.pid
brew services restart postgresql
answered Mar 16 at 10:30
I have installed PostgreSQL. However everytime I try to connect through PGAdmin or through psql it gives me the below error.
could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (::1) and
accepting TCP/IP connections on port 5432?
could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host "localhost" (127.0.0.1) and
accepting TCP/IP connections on port 5432?
I checked the postgresql.conf
file and the line: listen_addresses = '*'
isn’t commented out.
Also this is how my pg_hba.conf
file is set:
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
Can anyone please advise on how I can resolve this issue?
Thanks!
MwamiTovi
2,39516 silver badges25 bronze badges
asked Mar 14, 2017 at 20:59
1
Use services «start -> run -> services.msc» and look for the postgresql-[vers] service.
If it is not running try to start it, if it won’t start open the event-viewer (start -> run -> eventvwr) and look for error messages relating to the PostgreSQL service.
answered Oct 31, 2018 at 19:32
tayfun Kılıçtayfun Kılıç
1,92414 silver badges11 bronze badges
1
In my case it was postgres.config. The port was somehow changed to 5433 in there and I do not remember doing it myself lol. So make sure your ports are matching up in your project vs postgres.config
answered Sep 3, 2022 at 20:48
1
pg_hba.conf.txt
has to be called pg_hba.conf
.
Beyond this, when you have en authentication error you will get a message similar to:
psql -U nonexistent
psql: FATAL: Peer authentication failed for user "nonexistent"
The error you are getting means most likely that PostgreSQL is not started on this server.
You can start PostgreSQL with:
service postgresql start
service postgresql status
answered Mar 15, 2017 at 0:40
GabGab
3,3761 gold badge10 silver badges21 bronze badges
1
This worked for me —
In C:Program FilesPostgreSQLdatapostgresql.conf set listen_addresses ='localhost'
Then try —
pg_ctl -D "C:Program FilesPostgreSQL9.5data" start
if already try restarting using pg_ctl
answered Feb 19, 2018 at 11:53
It works for me.
Remember, whatever comes after -D should be the path to where you installed PostgreSQL, to the data folder, which holds the pg_hba.conf and postgresql.conf files.
pg_ctl start -D "C:/Program Files/PostgreSQL/9.6/data"
answered Mar 17, 2020 at 5:41
Maybe you can try this.
Open cmd and insert.
"C:Program FilesPostgreSQL11binpg_ctl.exe" runservice -N "postgresql-x64-11" -D "C:Program FilesPostgreSQL11data" -w
Hit enter…
Dharman♦
30.4k22 gold badges84 silver badges132 bronze badges
answered May 24, 2019 at 12:15
Skip to content
In this article, we will the solution for below error.
psql: could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (127.0.0.1) and accepting TCP/IP connections on port 5432?
Solution:
Check the status of PostgreSQL server. I found that PostgreSQL server is down. I have started my PostgreSQL server, then successfully able to connect to PostgreSQL server on Windows
На чтение 3 мин. Просмотров 818 Опубликовано 15.12.2019
Подобная ошибка возникает, если доступ к серверу ограничен файерволом или PostgreSQL не принимает подключение по указанному адресу/порту (10.0.2.15). Настройка файервола выходит за рамки тематики данного сайта, поэтому ниже приводится только решение проблемы, связанной с настройкой PostgreSQL.
Содержание
- Решение¶
- Responses
- Browse pgsql-general by date
Решение¶
Необходимо зайти на сервер по ssh и проверить статус СУБД командой:
Pезультат выполнения команды означает, что PostgreSQL принимает подключения по адресу 127.0.0.1 и порту 5432. Чтобы изменить настройки, понадобится отредактировать файл postgresql.conf
Найти местонахождение файла можно командой:
Надо указать PostgreSQL, что необходимо принимать подключения по всем адресам:
и перезагрузить СУБД:
Теперь необходимо проверить настройки:
Теперь доступ к базе данных есть с любого адреса. Можно попытаться подключиться к базе данных:
Если сервер доступен, то будет получен доступ к базе данных postgres:
I have installed PostgreSQL. However everytime I try to connect through PGAdmin or through psql it gives me the below error.
could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (127.0.0.1) and accepting TCP/IP connections on port 5432?
I have checked the postgresql.conf file and listen_addresses = ‘*’ is not commented out.
Also this is what my pg_hba.conf.txt file is set to
Can anyone please advise on how I can resolve this issue?
From: | «Pietro Laranci» |
---|
Subject:
Connection refused (0x0000274D/10061)
Date:
2011-09-30 10:17:51
Message-ID:
DCDDF9A40AB945B8841EC648D1BF5323@Elaborazione1
Views:
Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists:
pgsql-general
Good morning to everybody
I have a pg9 db to wich i can connect to by local but not from remote. In the properties of the postgres db , the port is set to 5300 (not the default 5432).
I tried to connect in remote with pgadmin3 and quantum gis, both give the error Connection refused (0x0000274D/10061).
This is the complet message in quantum gis (but is silimar in pgadmin3)
«could not connect to server: Connection refused (0x0000274D/10061)
Is the server running on host «95.110.201.74» and accepting
TCP/IP connections on port 5300?»
Whit both the programs installed on the same pc of the db, i can connect without problem to the db.
I already did these settings:
— in postgresql.conf : listen_addresses = ‘*’ and port = 5300 (in the place of the default 5432)
host [dbname] all 0.0.0.0/0 md5
host [dbname] all 127.0.0.1/32 md5
I also tried to substitute on the db properties «host=localhost» with «host=95.110.201.74»
On the machines are not active firewalls.
Have you any clue of what’s wrong?
Responses
- Re: Connection refused (0x0000274D/10061) at 2011-09-30 13:46:48 from Adrian Klaver
- Re: Connection refused (0x0000274D/10061) at 2011-09-30 23:31:08 from Craig Ringer
Browse pgsql-general by date
From | Date | Subject | |
---|---|---|---|
Next Message | Emanuel Araújo | 2011-09-30 11:42:20 | Re: Problem dbi_link with postgresql 9.04 |
Previous Message | Albe Laurenz | 2011-09-30 10:16:29 | Re: stored procedures (packages) |
Copyright © 1996-2019 The PostgreSQL Global Development Group
Главная » Видео » Подключение не установлено, т. к. конечный компьютер отверг запрос на подключение — Решение
Столкнулся на днях с такой проблемой. На одной из машин отказалась работать сетевая версия 1С Предприятие. При подключении к базе, вываливалась следующая ошибка.
Хочу обратить внимание, что ошибка появилась на компьютере, на котором было 2 сетевые карты с 2мя разными сетями. Почему то сразу значения данному моменту не придал. Видимо, потому что монитор HASP обнаруживал данные ключи отлично, из-за чего искал проблему в 1С. В результате чего убил пол дня рабочего времени. Проблема действительно крылась в двух сетевых картах, а если сказать точнее, 2 разные сети, решение было в файле C:Program Files1cv81binconfnethasp.ini
Отключив сеть, в которой нет ключей HASP, после перезагрузки машины — 1С завелась. Полез в гугл за решением данной проблемы. Поиск недолго заставил себя ждать, решение следующее:
Что вызывает ошибку «подключение не установлено»
Появление данной ошибки обычно означает, что удаленное устройство, с которым мы попытались связаться, не отвечает на наши действия и не выдает нужную информацию. Это делает невозможной работу в программе. Почему так бывает? Причин несколько: и скачок напряжения в сети , что обрывает связь с серверами, и “недовольство” брандмауэра , и неправильные настройки VPN-соединения . Сейчас мы разберем поэтапно, что нужно сделать, чтобы убрать данную ошибку в различных ситуациях.
Пользователи, особенно офисные работники, описывают такую ситуацию, когда скачок напряжения в сети вызывает потерю связи с серверами . Это может остановить работу всей компании. На компьютере (одном или нескольких) появляется сообщение о том, что к серверу 1С:Предприятие подключиться невозможно, т. к. конечный компьютер отверг запрос на подключение.
К счастью, справиться с этим довольно просто.
- Нажимаем ЛКМ на лупу в нижней панели монитора (рядом с кнопкой “Пуск”) и вводим слово “ Службы ”.
- Ищем в списке службу “ Агент сервера 1С:Предприятие ”.
- Запускаем ее через ПКМ .
Все, можно заново устанавливать соединение с сервером. Этот способ можно применить и в тех случаях, когда возникает ошибка с кодом 0000000002, т. к. в результате какого-либо сбоя любая служба может быть остановлена.
Ошибки соединения с сервером 1С / рабочим процессом 1С
Описанные далее ошибки могут возникать как при работе в консоле администрирования 1С, так и при запуске информационной базы.
Методика по решению всех приведенных далее ошибок — описана в конце этого подраздела ошибок соединения с сервером / рабочим процессом.
Попытка установить соединение была безуспешной
Пример полного текста ошибки:
Ошибка соединения с сервером 1С:Предприятия 8.3:
server_addr=tcp://son1c:1541 descr=192.168.0.101:1541:
Попытка установить соединение была безуспешной, т.к. от другого компьютера за требуемое время не получен нужный отклик, или было разорвано уже установленное соединение из-за неверного отклика уже подключенного компьютера.
Ошибка соединения сервером – клиент не может подключиться к агенту сервера 1С, процессу ragent. Порт в сообщении 1541(по умолчанию):
Ошибка соединения рабочим процессом – клиент не может подключиться к рабочему процессу сервера rphost. Порт в сообщении может быть из диапазона 1560-1591(по умолчанию).
Ошибка соединения сервером – клиент не может подключиться к менеджеру сервера 1С, процессу rmgr. Порт в сообщении 1540(по умолчанию).
Сервер 1С:Предпрятия не обнаружен
Пример полного текста ошибки:
Сервер 1С:Предприятия не обнаружен
Не запущен ни один рабочий процесс. Соединение с информационной базой невозможно.
Такое сообщение можно увидеть если на сервере 1С не запущен ни один рабочий процесс rphost.
Ошибка установки соединения
Пример полного текста ошибки:
Ошибка установки соединения
Выполняется ожидание возможности запуска.
При появлении возможности, запуск будет выполнен автоматически.
Проблема возникает в торренте
При скачивании фильмов или программного обеспечения с торрента тоже может выскочить ошибка “Подключение не установлено, т. к. конечный компьютер отверг запрос на подключение”. В этом случае нужно либо проверить свое сетевое подключение, либо подождать, пока разработчики трекера исправят ситуацию. Если разорвано соединение с интернетом, пробуем переподключить устройство (роутер, модем) или перезагрузить его . После этого заново запускаем торрент и скачиваем фильм или программу.
Если антивирус или брандмауэр “ругаются” и не дают подключиться к серверу, то для исправления ошибки есть два варианта.
Отключить и один, и другой | Это допустимо только в том случае, если мы уверены, что во время бездействия “защитников” не поймаем какой-нибудь вредоносный код |
Добавьте проблемный порт в список исключений брандмауэра | Он пропустит сетевой трафик по указанному порту, и работа будет налажена. |
Одно из популярных мест, где возникает данная ошибка – софт 1С. Проблема в том, что агент сервера 1С и все процессы запущены, но тут появляется ошибка и сообщение о том, что “Подключение не установлено, т. к. конечный компьютер отверг запрос на подключение”. Решаем мы данную проблему тем, что добавляем порт 10061 в исключения брандмауэра и снова устанавливаем соединение с сервером.
Добавляем отмеченный порт 10061 в исключения брандмауэра
Важно: всегда используем только самую свежую версию 1С. Читаем о том, где получить обновления, в статье об ошибке под номером 0400300003.
Ошибка при выполнении операции с информационной базой
server_addr=NAME descr=11001(0x00002AF9): Этот хост неизвестен.
Как и прошлая, эта ошибка связана с неправильным разрешением клиентом имени сервера. На этот раз именно клиентским ПК. В качестве решения добавляем в файл /etc/hosts на платформе Linux или в C:WindowsSystem32driversetchosts на платформе Windows запись вида:
где указываете адрес и имя вашего сервера 1С:Предприятия. В случае использования локального DNS следует добавить A-запись для сервера 1С.
could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (::1) and accepting TCP/IP connections on port 5432? could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host «localhost» (127.0.0.1) and accepting TCP/IP connections on port 5432?
When I am trying to run localhost:3000, its giving this error massage, Can you please help me out here?
Re: Connection refused (0x0000274D/10061)
Re: Connection refused (0x0000274D/10061)
Re: Connection refused (0x0000274D/10061)
On 09/06/2019 19:51, Sourav Majumdar wrote:
>
> could not connect to server: Connection refused (0x0000274D/10061)
> Is the server running on host «localhost» (::1) and accepting TCP/IP
> connections on port 5432? could not connect to server: Connection
> refused (0x0000274D/10061) Is the server running on host «localhost»
> (127.0.0.1) and accepting TCP/IP connections on port 5432?
From the above, you have the server listening on port 3000 (you would
have set this in postgresql.conf — did you?), but the client is trying
to connect on port 5432 (the default).
You therefore need to tell the client to connect to port 3000 — if you
are using psql, you need the -p option:
psql -p 3000 (. etc . )
Re: Connection refused (0x0000274D/10061)
Re: Connection refused (0x0000274D/10061)
Re: Connection refused (0x0000274D/10061)
Re: Connection refused (0x0000274D/10061)
On 6/9/19 1:46 PM, Ray O’Donnell wrote:
> On 09/06/2019 20:49, Sourav Majumdar wrote:
>> Hello,
>> Thanks for your quick response. I am new to pgsql, didnot configured
>> it , can you please give a guidance for that? I will be highly oblised
>> if you can assist me.
>> I am using windows 8.1, 64 bit.
>> ruby 2.3.3p222 (2016-11-21 revision 56859) [i386-mingw32]
>> Rails 5.2.3
>> Trying to setup ruby on rails on my local host
Alright the penny just dropped, maybe:
1) You have started the Rails Web server on port 3000
2) You tried to do something that accessed the Postgres server.
3) You got connection refused error.
If the above is correct then the error message:
«: Connection refused (0x0000274D/10061) Is the server running on host
«localhost» (::1) and accepting TCP/IP connections on port 5432?»
1) The server is not running. Check that the Postgres service is running
in Windows.
Сентябрь 19, 2015
Ошибка соединения с сервером 1С:Предприятие 8.2 server_addr=tcp://SERVER:1540 descr=Ошибка сетевого доступа к серверу (Windows Sockets — 10061(0x0000274D). Подключение не установлено, т.к. конечный компьютер отверг запрос на соединение.) line=590 file=.SrcDataExchangeTcpClientItmpl.cpp
Данная ошибка говорит о том, что вы переименовали кластер, но не изменили имя кластера в конфигах.
Зайдем в в два файла и заменим любое упоминание старого названия на новое.
Путь до папки с 1Сsrvinfosrvribrg.lst
Путь до папки с 1Сsrvinfo
eg_15411CV8Reg.lst
Так же в настройках вашего DNS сервера нужно обновить запись о сервере и удалить записи со старым именем.
Данная ошибка значит следующее: попытка поиска лицензии оказалась неудачной. Это может произойти по следующим причинам:
- Если вы используете аппаратный ключ защиты, убедитесь в доступности менеджера лицензий 1С и его корректной настройке и правильной установке ключа защиты на аппаратуру;
- Если же вы пользуетесь программным ключом защиты, то вам нужно убедится в корректной установке ключа на ПК или доступности сервера 1С (в зависимости от режима использования ключа).
Оптимизируем работу с программой и помогаем избежать ошибок
Мы предлагаем услуги по сопровождению 1С , в рамках которого наши сотрудники смогут оперативно решать многие вопросы — от рядовых до весьма сложных. Большой опыт работ и сертифицированные специалисты позволят обеспечить бесперебойную работу с программой, защиту информации и оптимизацию бизнес-процессов.
Вы еще не внедрили 1С или необходимо установить программу в новый филиал компании? Обратитесь за внедрением и настройкой к нам — вы сэкономите свое время и избежите возможных ошибок и проблем в дальнейшем.
Позвоните по номеру телефона, указанному на сайте или заполните форму обратной связи, чтобы наши сотрудники сориентировали по стоимости работ, подобрали оптимальное решение и рассказали, как начать сотрудничество. Ждем вас!
Существует два вида многопользовательской работы с базами 1С. Это — «клиент — серверный вариант 1С» и «файловый вариант 1С». Клиент серверный вариант работы мы здесь рассматривать не будем, рассмотрим его в другой статье, здесь.
Итак, для того чтобы организовать многопользовательскую работу в файловых базах 1C, необходимы компьютеры соединённые в единую сеть. Если сети ещё нет, и оборудования так же нет, не поскупитесь приобрести «гигабитный коммутатор» (практически все современные компьютеры поддерживают в своих сетевых картах подключение до 1 ГБ/сек) и не самый дешевый, в дальнейшем вы только сэкономите(представьте день простоя вашей организации, или из-за увеличенной нагрузки мрачные тормоза у менеджеров).
Еще один очень важный момент . , если у вас сеть WI-FI, то есть компьютеры подключены по беспроводной технологии, то данный вариант вам не подойдет, какой бы у вас навороченный WI-FI роутер, не стоял . Будет все мрачно тормозить, виснуть, и в результате можете вообще базу испортить, так как каналы создаваемые при помощи WI-FI соединения очень ненадежные, и любое прерывание при записи в базу (например проведение документа) может убить вашу базу 1С раз и навсегда. Другое дело настройка терминального подключения (есть недорогие аналоги позволяющие поднять альтернативу терминальным подключениям), но это я опишу в другой статье.
Далее, в нашей сети выбрать самый шустрый компьютер (желательно с «SSD дисками»), под файловый сервер. Можно так же приобрести отдельное файловое хранилище (с SSD дисками, завязанными в RAID 1 для надежности), но настройку его здесь мы рассматривать не будем.
Если все уже приобретено, подключено и работает, переходим к настройке доступа на выбранном нами компьютере под «файловый сервере 1С».
Первоначально проверяем настройки самого компьютера, разрешено ли ему показывать файлы и папки в вашей локальной сети. Щелкаем по значку сетевое подключение в «трее» (правый нижний угол, где часы) и выбираем «Центр управления сетями и общим доступом»
Открывается окно управления, где выбираем следующее «Изменить дополнительные параметры общего доступа»:
Открывается окно настроек, где должны стоять следующие галочки :
Проверяем, и сохраняем.
Далее заходим в мой компьютер, и создаем на отдельном, «НЕ системном диске» (если в моем компьютере, диск только один, например «диск С», то деваться некуда выбираем его), и создаем отдельную папку с названием «Base 1C».
В этой папке у нас будут хранится наши базы 1С. Далее настраиваем к этой папке, общий доступ, чтобы с других компьютеров возможно было на нее зайти. Щелкаем правой кнопки мыши по этой папке, и выбираем свойства.
В результате открывается окно, где выбираем вкладку «Доступ» и жмем кнопку «Общий доступ»:
Открывается следующее окно, где выбираем вкладку «Все», и жмем кнопку «Добавить» :
Щелкаем на появившемся в списке новом значении «Все», и выбираем «Чтение и Запись», далее жмем кнопку «Общий доступ».
Должно появится вот такое окно означающее что все прошло успешно и общий доступ к папке открыт, жмем кнопку «Готово» :
В результате с другого компьютера при открытии сетевого окружения, мы должны увидеть компьютер, с открытой папкой для доступа к базам.
Далее копируем в эту папку, папку с нашей базой 1С к которой будим осуществлять доступ по сети.
На клиентских компьютерах устанавливаем платформу 1С, как установить смотрите здесь. «ВАЖНО ПЛАТФОРМА 1С ДОЛЖНА БЫТЬ ВЕЗДЕ ОДНОЙ ВЕРСИИ. ». Далее по сети прописываем пути, к Базам 1С
Отзывов (9) (+Ваш отзыв?)
Юрий
23 Ноя 2016 в 13:24
добрый день, а подскажите как я могу одновременно запустить одну и туже базу на двух ПК связанных по LAN?
schastliviy ответил:
Декабрь 22nd, 2016 в 18:02
Добрый день, ограничение на запуск от одного пользователя только на БАЗОВЫЕ версии. Остальные версии возможно запускать на нескольких компьютерах одновременно.
Как быть, ведь в таком случае папка с базой окажется в общем доступе в сети, и любой другой сотрудник сможет слить базу себе. Как открыть доступ только для бухгалтерии?
schastliviy ответил:
Декабрь 22nd, 2016 в 18:09
Добрый день, здесь необходимо поработать с правами пользователей в операционной системе WINDOWS, и права на чтение запись дать только пользователям бухгалтерии.
James
31 Дек 2016 в 8:43
Добрый день, у меня после установки платформы 1с предприятий спрашивает ключ защиты а у меня его нет, что делать?
schastliviy ответил:
Январь 10th, 2017 в 14:36
Добрый день! Необходимо найти регистрационный номер программного продукта и написать в центр лицензирования 1С на lic@1c.ru
Виктор ответил:
Январь 16th, 2018 в 17:59
Если 1с была ломаная, то нужно будет ломать новую платформу, но это не законно!