Меню

08001 ошибка при попытке подсоединения ошибка при попытке подсоединения

All right—I’ve figured it out.

First off, @Mark B was right—the issue was that I hadn’t yet made the database itself publicly accessible via the VPC security group of which it was a member. To do this, from the database detail screen in AWS, I:

  1. clicked (what for me was the one and only) link beneath the «VPC security groups» of the database’s dashboard, which directed me to the EC2 Security Groups screen
  2. clicked the security group link related to my database, which directed me to that group’s detail page
  3. clicked the «Edit inbound rules» button which directed me to the «Edit inbound rules» screen
  4. clicked the «Add rule» button, which caused a table row containing the following columns: «Type», «Protocol,» «Port Range,» «Source,» «Description — optional»
  5. selected «PostgreSQL» for the «Type» column, which caused the values of «TCP» and «5432» to populate the «Protocol» and «Port range» columns respectively, entered my machine’s IP address («123.456.789.012/32»—no quotes and no parentheses), and left «Description — optional» blank, because, well, it’s optional.

Finally, I guess I’d forgotten to explicitly name the database, and so my attempts to enter what for me was ostensibly the database’s name (that is, «database-1») resulted in a connection error indicating that «database-1» does not exist. So, for the sake of ease and simply verifying my database connection, I entered «postgres» as the database name in my database client (I’m presently using DataGrip), because «postgres» is the de facto name of a postgreSQL database.

And that should work. I’m sure this is all no-brainer stuff to those more experienced with AWS, but it’s new to me and presumably to many others.

Thanks again, @Mark B, for sending me down the right path.

All right—I’ve figured it out.

First off, @Mark B was right—the issue was that I hadn’t yet made the database itself publicly accessible via the VPC security group of which it was a member. To do this, from the database detail screen in AWS, I:

  1. clicked (what for me was the one and only) link beneath the «VPC security groups» of the database’s dashboard, which directed me to the EC2 Security Groups screen
  2. clicked the security group link related to my database, which directed me to that group’s detail page
  3. clicked the «Edit inbound rules» button which directed me to the «Edit inbound rules» screen
  4. clicked the «Add rule» button, which caused a table row containing the following columns: «Type», «Protocol,» «Port Range,» «Source,» «Description — optional»
  5. selected «PostgreSQL» for the «Type» column, which caused the values of «TCP» and «5432» to populate the «Protocol» and «Port range» columns respectively, entered my machine’s IP address («123.456.789.012/32»—no quotes and no parentheses), and left «Description — optional» blank, because, well, it’s optional.

Finally, I guess I’d forgotten to explicitly name the database, and so my attempts to enter what for me was ostensibly the database’s name (that is, «database-1») resulted in a connection error indicating that «database-1» does not exist. So, for the sake of ease and simply verifying my database connection, I entered «postgres» as the database name in my database client (I’m presently using DataGrip), because «postgres» is the de facto name of a postgreSQL database.

And that should work. I’m sure this is all no-brainer stuff to those more experienced with AWS, but it’s new to me and presumably to many others.

Thanks again, @Mark B, for sending me down the right path.

Содержание

  1. Ошибка подключения к базе 7.7 SQL
  2. SQL Server Connection failed : SQLState 08001 – Let’s fix it!!
  3. When the SQL Server Connection failed: SQLState 08001 Occurs?
  4. How to fix SQLState 08001 Error?
  5. Conclusion
  6. PREVENT YOUR SERVER FROM CRASHING!
  7. 4 Comments
  8. TablePlus
  9. Connection failed — SQLState ‘08001’ in SQL Server
  10. Точка подключения службы не подключается в System Center Configuration Manager
  11. Проблемы
  12. Решение
  13. Сведения об исправлении
  14. Предварительные условия
  15. Необходимость перезагрузки
  16. Сведения о замене исправлений
  17. Sql server native error 08001
  18. Answered by:
  19. Question
  20. Answers
  21. All replies

Ошибка подключения к базе 7.7 SQL

База 1С SQL. Подключается 5 ПК. На одном из них переустановили систему, установили платформу 7.7, при попытке подключения к базе выдает ошибку:

SQL State:08001
Native:17
Messeg:[Microsoft][ODBC SQL Server Driver][DBNetLib] SQL Server не существует или отсутствует доступ.
SQL State:01000
Native:2
Messeg:[Microsoft][ODBC SQL Server Driver][DBNetLib] Connection open(Connect())

Помогите разобраться, как исправить?

Причин возникновения проблем с подключением к SQL Server-у может быть много, но есть простые методы диагностики и выявления проблем подключения к серверу.

Шаг 1.
Попробуйте «пропинговать» сервер БД как по имени так и по IP-адресу, командой
Ping [SQLServerDNSName], где SQLServerDNSName – DNS имя сервера БД в сети. Если возникли проблемы с пингом по имени, то необходимо устранить проблемы со службой DNS в Вашей сети. Если сервер не пингуется по IP-адресу, то необходимо решить проблемы, либо с маршрутизацией пакетов в сети, или проверить саму сеть на наличие физических обрывов.

Шаг 2.
Выполняется при условии, что шаг 1 выполнился успешно.
Простая проверка к соединения с сервером БД осуществляется командой
telnet [SQLServerIPAdress] [port] – где SQLServerIPAdress IP-адрес сервера, port-порт подключения к серверу, по умолчанию 1433. При удачном подключении, экран терминала telnet будет чистым с мигающим курсором. При неудачном подключении необходимо проверить порт подключения к серверу. Определение настроек порта на клиенте выполняется утилитой cliconfg.exe, на сервере — утилитой svrnetcn.exe.

Шаг 3.
Выполняется при условии, что шаги 1 и 2 выполнились успешно.
Часто на этом шаге при подключении возникает ошибка «Login failed for user [UserName]», где UserName-имя пользователя, под которым вы хотите подключиться к серверу БД. При возникновении такой ошибки необходимо проверить тип авторизации. По умолчанию при установке SQL Server-а разрешена только Windows авторизация. Если Вы подключаетесь под логином sa, то Вам необходимо установить на сервере БД смешанную(mixed) авторизацию. Также необходимо проверить пароль для логина, под которым Вы подключаетесь.

Источник

SQL Server Connection failed : SQLState 08001 – Let’s fix it!!

by Sharon Thomas | Jan 14, 2020

Errors like SQL server connection failed SQLState 08001 can be really annoying.

The SQL server connection failed 08001 occurs when creating an ODBC connection on the Microsoft SQL.

At Bobcares, we often get requests from our customers regarding the SQL sever connection error as part of our Server Management Services.

Today, we’ll see the reasons for this SQL sever connection instance and how our Support Engineers fix it.

When the SQL Server Connection failed: SQLState 08001 Occurs?

Mostly the error SQLStateServer Connection failed 08001 occurs when creating an ODBC connection on Microsoft SQL.

We click Next on the SQL login screen. Then using the login information provided, the ODBC manager will try to connect to the SQL Server. But after some waiting time, it displays the below error message.

The main three reasons for the error SQL Server Connection failure are

  • If we provide a wrong server name.
  • If the SQL Server not configured to a network connection.
  • The other possibility of this instance if we provide an incorrect login name or password.

How to fix SQLState 08001 Error?

Recently, one of our customers approached us with an error message ‘SQL Server Connection failed: SQLState 08001′.

Our Support Engineers log in to SQL Server Management Studio and make sure that the database name and other details are correct. In case, if the database server name is wrong then this error can occur.

Sometimes the message appears when we use ‘localhost’ as the Database Server name on the Database Settings screen in Confirm. But we can log in to the database in SQL Server Management Studio as a user, using the Server name ‘localhost’. Then our Support Engineers make any of the below two changes to fix the error.

  1. In the Database Settings screen, we change the Database Server name to the server name or
  2. In the SQL Server Configuration Manager, we enable the Named Pipes values in the Client Protocols.

Our Support Engineers follow any of the above two methods to fixes the error while creating an ODBC connection on Microsoft SQL.

[Need assistance in fixing the Error while creating an ODBC connection? – We can help you.]

Conclusion

In short, we’ve discussed that the SQL server connection failed SQLState 08001 occurs when creating an ODBC connection on the Microsoft SQL. Also, we saw how our Support Engineers fix the error for the customers.

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

I got same situation or error message and the issue in my particular case was that the number of connections was set to a maximum of 500. similar issue happened when this limit is reached therefore you can either reboot the SQL instance to get rid of idle connections. But if this happens frequently change the number of connections to unlimited (Value 0).
Alemayehu G. Desta

Hello Alemayehu,
Indeed the connection limit does cause SQL errors.

Named Pipes Solution solved.

Hi Manoj,
Glad to know that the problem got fixed.

Источник

TablePlus

Connection failed — SQLState ‘08001’ in SQL Server

September 25, 2019

When creating a connection to SQL Server using an ODBC driver, you might receive this error:

Here are some common causes and corresponding fixes:

1. SQL Server service is not running on SQL Server.

You can try to start or restart SQL Server services, including SQL Server Database Engine, the SQL Server Agent, or the SQL Server Browser service.

2. SQL Server Browser service is not running on SQL Server.

This might cause the issue sometime so make sure to enable the “SQL Server Browser” Service and set to start Automatically.

3. TCP/IP protocol is not enabled for SQL Server.

Make sure the TCP/IP protocol is enabled by logging in to the SQL server, navigate to the “Sql Server Configuration Manager”, then enable the “TCP/IP” and the “Named Pipes” Protocols.

4. Firewall on SQL Server is blocking TCP port of SQL Server.

Check and reconfig the firewall rules to allow SQL Server access.

5. Firewall on SQL Server is blocking UDP port (1434) of SQL Server browser.

Again, check and reconfig the firewall rules to allow SQL Server access.

Need a good GUI tool for databases? TablePlus provides a native client that allows you to access and manage Oracle, MySQL, SQL Server, PostgreSQL, and many other databases simultaneously using an intuitive and powerful graphical interface.

Источник

Точка подключения службы не подключается в System Center Configuration Manager

Проблемы

Вы обнаружили, что System Center Configuration Manager сайта не может подключиться к SQL Server. Эта проблема возникает при выполнении следующих условий:

База данных сервера сайта настроена для обмена данными с помощью именованного экземпляра SQL сервера и пользовательского порта.

Роль «точка подключения службы» устанавливается на том же компьютере, где выполняется SQL Server.

В этом случае записи, похожие на следующие, записываются в файлы smsexec.log и hman.log на сервере сайта:

[08001][2][Microsoft][SQL Server Native Client 11.0]Поставщик именованных каналов: не удалось открыть подключение к SQL Server [2].
[HYT00][0][Microsoft][SQL Server Native Client 11.0]
Истекло время ожидания входа*** [08001][2][Microsoft][SQL Server Native Client 11.0]При установке подключения к SQL Server произошла ошибка, связанная с сетью или экземпляром. Сервер не найден или недоступен. Проверьте правильность имени экземпляра и SQL Server настроены для разрешения удаленных подключений. Дополнительные сведения см. в SQL Server электронной документации.
Не удалось подключиться к SQL Server, тип подключения: SMS ACCESS.

Решение

Сведения об исправлении

Поддерживаемое исправление доступно в служба поддержки Майкрософт. Однако это исправление предназначено только для устранения проблемы, описанной в этой статье. Примените это исправление только к системам, в которых возникла проблема, описанная в этой статье. Это исправление может получить дополнительное тестирование. Поэтому, если эта проблема серьезно не затрагивает вас, рекомендуется дождаться следующего обновления программного обеспечения, содержащего это исправление.

Если исправление доступно для скачивания, в верхней части этой статьи базы знаний есть раздел «Доступно скачивание исправлений». Если этот раздел не отображается, обратитесь в службу поддержки клиентов Майкрософт, чтобы получить исправление.

Обратите внимание, что при возникновении дополнительных проблем или необходимости устранения неполадок может потребоваться создать отдельный запрос на обслуживание. Обычные затраты на поддержку будут применяться к дополнительным вопросам поддержки и вопросам, которые не подходят для этого исправления. Полный список номеров телефонов службы поддержки и обслуживания майкрософт или создания отдельного запроса на обслуживание см. на следующем веб-сайте Майкрософт:

http://support.microsoft.com/contactus/?ws=supportОбратите внимание, что в форме «Доступно скачивание исправлений» отображаются языки, для которых доступно исправление. Если язык не отображается, исправление недоступно для этого языка.

Предварительные условия

Чтобы применить это исправление, необходимо установить версию выпуска System Center Configuration Manager версии 1511.

Необходимость перезагрузки

После применения этого исправления не нужно перезапускать компьютер.

Сведения о замене исправлений

Это исправление не заменяет ранее выпущенное исправление.

Источник

Sql server native error 08001

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Answered by:

Question

Client setup system as below

OS: Windows 2008 R2 64 bit and installed SQL native client 11.0 (SQL 2012) for DSN creation.

Successfully created DSN when using with default SQL server ODBC driver in client machine. (by using AG listener name)

when try to connect via SQL native client 11.0 ODBC driver does not allowed and throwing SQL state 08001 error and time out messages.

Pl. help, how overcome this time out errors? does it require to install any patches?

Answers

Yes.. In client machine win 2008 R2 — SQL 2012 SSMS installed, I can able connect only AG Listener Name.

Does not connect if adding parameter -M (multisubnetfailover)..

Maybe this will help (Connection times out when you use AlwaysOn availability group listener with MultiSubnetFailover parameter): https://support.microsoft.com/en-us/kb/2870437

As a side note, I’d see if you can talk the client into upgrading from Windows 2008 R2. I would not recommend using it for any new projects.

I hope you found this helpful! If you did, please vote it as helpful on the left. If it answered your question, please mark it as the answer below. 🙂

  • Edited by Daniel Janik Tuesday, August 2, 2016 5:20 AM
  • Proposed as answer by Lin Leng Microsoft contingent staff Sunday, August 14, 2016 2:53 PM
  • Marked as answer by Lin Leng Microsoft contingent staff Monday, August 15, 2016 2:00 AM

I recall there being several hotfixes and to-dos to make Availability groups work with Windows 2008 R2.

It’s been quite a while since I’ve thought about that configuration; so, I can’t tell you if it’s recommended or not. Last time I looked into it was 2014 and the answer was don’t run a SQL AG on Win 2008 R2. You’re much better off using Windows 2012 or later.

Again, I don’t know if that’s changed but I would also question configuring Windows 2008 R2 as a new server mid way through 2016. Didn’t mainstream support end in January 2015?

I hope you found this helpful! If you did, please vote it as helpful on the left. If it answered your question, please mark it as the answer below. 🙂

Источник

Подскажите насколько влияет то, что у нас указано в class. Как правильно выбрать нужный?

Ошибку вот такую выдаёт при тестовом подключении: [08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up. java.net.ConnectException: Connection refused: connect.

Скачал отсюда драйвер: https://mvnrepository.com/artifact/mysql/mysql-connector-java/5.1.31. Установил как библиотеку и загрузил, можно посмотреть на картинке. Мне нужен именно он, потому что в более поздних версиях нет метода: FabricMySQLDriver();

Данные все прописываю, ошибку можно увидеть на скриншоте.введите сюда описание изображения

В maven прописал.

<dependency>
   <groupId>mysql</groupId>
   <artifactId>mysql-connector-java</artifactId>
   <version>5.1.31</version>
</dependency>

введите сюда описание изображения

задан 24 окт 2019 в 8:17

Blacit's user avatar

BlacitBlacit

1,3751 золотой знак13 серебряных знаков37 бронзовых знаков

5

Ошибка 08001 возникает в случае, когда версия mysql, установленная на сервере, не соответствует версии, из которой устанавливается коннект к серверу, то есть Вашей версии mysql-connector.

Определитесь с версией на сервере и скачайте соответствующую версию коннектора. Также создайте БД и пропишите ее название в настройках соединения.

Детальнее можно почитать тут: https://www.dev2qa.com/how-to-fix-mysql-jdbc-08001-database-connection-error/

Совместимость mysql-connector с версиями mysql server: connector 5.1(во всех случаях у вас должен быть установлен jre 1.8) — server 5.6; 5.7; 8.0. Connector 8.0 — server 5.6; 5.7; 8.0.
Ссылка на оригинал: https://dev.mysql.com/doc/connector-j/5.1/en/connector-j-versions.html

ответ дан 25 окт 2019 в 13:04

Wolframm's user avatar

WolframmWolframm

5053 серебряных знака11 бронзовых знаков

3

Объясните причину ошибки:

Версия базы данных сервера несовместима с версией драйвера локальной базы данных.

error

[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.

Решение

Перейти на согласованную версию 5.1


Интеллектуальная рекомендация

10. Интерфейс запроса альбома

10. Интерфейс запроса альбома 10.1. Согласно заголовому запросу альбома Запросите имя альбома и сопоставьте альбом, введя строку запроса. Режим запросов является нечетким запросом. Если вы вводите &la…

Huawei маршрутизация резервного и избыточного

Спрос: когда сеть нормальная, все данные подключены к связи гигабитной ссылки, а ссылки на 100 метров используются для резервного копирования. Перепечатано: https://blog.51cto.com/12843522/2072199…

Вам также может понравиться

Использование очереди сообщений кролика

Поскольку в проекте используется распределенная архитектура Spring Cloud, весь проект разделен на несколько подуслуг. Для каждого сервисного сервиса, из-за потребностей проектирования, он не зависит д…

VC2008 Windows Media Player навыки управления три

Поделитесь учебником по искусственному искусству моего учителя! Нулевой фундамент, легко понять!http://blog.csdn.net/jiangjunshow Вы также можете перепечатать эту статью. Делитесь знаниями, приносите …

202. Happy Number

Write an algorithm to determine if a number is «happy». A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the …

Статьи по теме

  • IDEA 2019.1 подключается к отчету об ошибках базы данных и решению! (08001)
  • [08001] Идея подключение ошибки базы данных MySQL
  • Navicat подключается к базе данных SQL Server, выдается сообщение об ошибке 08001
  • IntelliJidea2019.3 Подключить отчет о базе данных MySQL 08001 Ошибка (2)
  • Идея подключить ошибку MySQL [08001] Решение
  • Как только идея подключает проверку ошибок MySQL, код ошибки [28000] [1045] [08001]
  • JDK8 подключает ошибку базы данных MySQL
  • Идея: Подключите к локальному MySQL, подключите ошибку Linux MySQL [08001] Невозможно создать соединение с сервером базы данных. Попробуйте снова подключить 3 раза.
  • Соединения с базой данных IDEA является неудачным. Сообщение об ошибке 08001
  • DataGrip подключает mysql8.0.11 для устранения ошибки 08001

популярные статьи

  • Продвинутый Python: Глава 2 (итерация объекта и анти-итерация)
  • Vue El-Usload Загрузить загрузку записи
  • Vue использует Element-Ui El-Dialog Pop-Up Layer
  • nginx достаточно, чтобы посмотреть эту статью
  • Веб-приложение для Android — простой C / S чат
  • Как играть в 10 Zero Plan на вашем компьютере
  • Win10 и Ubuntu не синхронизируются
  • Win10 Eclipse JDK1.7 Конфигурация Hanlp
  • EcLipse: исключение необработанного события, исключение больше нет ручек
  • Linux добавляет и удаляет IP

рекомендованная статья

  • 7-26 Очередь сообщения Windows (25 баллов)
  • Структурный размер
  • Архитектура HDFS (распределенная файловая система)
  • Нейронные сети Python для начинающих изучать записку на YouTube
  • Примечания к исследованию Jetpack (5): Нижняя навигация и анимация атрибутов
  • Pycharm поиск / замена ярлыков используют обучение
  • 15. Базовый тип упаковки
  • Центр и радиус круга Halcon
  • Об абстракции и интерфейсе
  • Проблема максимального зазора

Связанные теги

  • IDEA сообщает об ошибке 08001 при подключении к базе данных
  • bug
  • mysql
  • intellij idea
  • Подключите драйвер MySQL
  • Ошибка программы Ошибка
  • Идея, связанные с
  • java
  • база данных
  • python
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*Створити новий файл бази даних*/
SET SQL DIALECT 3; SET NAMES WIN1251;
CONNECT 'e:mybase.gdb'
USER 'SYSDBA' 
PASSWORD 'masterkey';
 
/*Видалити старий файл бази даних*/
DROP DATABASE;
 
/*Створити новий файл бази даних*/
SET SQL DIALECT 3;
 
 
CREATE DATABASE 'e:mybase.gdb'
USER 'SYSDBA' PASSWORD 'masterkey';
 
/*Створити домени*/
CREATE DOMAIN TID AS INTEGER NOT NULL;
CREATE DOMAIN TName AS VARCHAR(16);
CREATE DOMAIN TDate AS DATA;
CREATE DOMAIN TMoney AS NUMERIC(8,2) CHECK (Value>0);
CREATE DOMAIN TAddress AS VARCHAR(40);
CREATE DOMAIN TTelefon AS VARCHAR(12);
CREATE DOMAIN TFloat AS NUMERIC(3,2) CHECK (Value>0 AND Value<=100) ;
 
/*Створити таблиці*/
CREATE TABLE Insurance(
SNum        TID,
Name        TName,
Vidsotok    TFloat,
CONSTRAINT pkInsurance PRIMARY KEY (SNum)
);
 
CREATE TABLE Filia(
FNum        TID,
FiliaName   TName,
Address TAddress,
Telefon TTelefon,
CONSTRAINT pkFilia PRIMARY KEY (FNum)
);
 
CREATE TABLE Agent(
ANum        TID,
FiliaNum    TID,
Imja        TName,
SurName TName,
FName       TName,
Address TAddress,
Telefon TTelefon,
Plata       TMoney,
CONSTRAINT pkAgent PRIMARY KEY (ANum),
CONSTRAINT fkAgentFilia FOREIGN KEY (FiliaNum) REFERENCES Filia(FNum)
);
 
CREATE TABLE Contract(
DNum        TID,
AgentNum    TID,
FiliaNum    TID,
InsuranceNum    TID,
ContractDate    TDate,
TarifnaStavka   TMoney,
Suma        TMoney,
CONSTRAINT pkContract PRIMARY KEY (DNum),
CONSTRAINT fkContractAgent FOREIGN KEY (AgentNum) REFERENCES Agent(ANum),
CONSTRAINT fkContractFilia FOREIGN KEY (FiliaNum) REFERENCES Filia(FNum),
CONSTRAINT fkContractInsurance FOREIGN KEY (InsuranceNum) REFERENCES Insurance(SNum)
);
 
INSERT INTO Filia VALUES (1,'Гайдара','Черкаси','66-32-40');
INSERT INTO Filia VALUES (2,'Хрещатик','Київ','466-32-40');
SELECT * FROM Filia;
 
 
 
INSERT INTO Agent VALUES (1,1,'Тарас','Шевченко','Григорович','Канів','0931877455',10);
INSERT INTO Agent VALUES (2,2,'Робин','Перси','Ван','Амстердам','0961111114',120);
INSERT INTO Agent VALUES (3,1,'Хантер','Томсон','С','Сан Хуан','0977755577',0);
SELECT * FROM Agent;
 
INSERT INTO Insurance VALUES (1,'Повне',14.5);
INSERT INTO Insurance VALUES (2,'Неповне',5.5);
SELECT * FROM Insurance;
 
INSERT INTO Contract VALUES (1,1,1,1,'06.02.2013',15.140,42047.50);
INSERT INTO Contract VALUES (2,2,1,2,'07.02.2013',5.140,427.50);
INSERT INTO Contract VALUES (3,2,2,1,'04.02.2013',41.140,47);
SELECT * FROM Contract;
 
COMMIT WORK;

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • 07e8 код ошибки kia
  • 07e8 код ошибки bmw