Unknown error 16777411

Function str() searches for substrings

Links

  • Homepage
  • zabbix 4 database schema
  • Zabbix compatibility matrix
  • https://www.digitalocean.com/community/tutorials/introduction-to-queries-mysql
  • compilation instructions
  • Documentation
  • Examples of Common Queries
  • Custom scripts
  • Various scripts to automate tasks in Zabbix
  • Tuning mysql for zabbix
  • https://huyabbix.com
  • Migrating zabbix database with minimal downtime
  • Bug tracker
  • Clean up database
  • Zabbix and selinux
  • Apache/SSL checks
  • Zabbix on RHEL/Centos
  • Grafana
  • https://blog.zabbix.com/zabbix-ha-cluster-setups/8264/ Zabbix HA cluster]
  • Active vs Passive
  • Very old network diagram
  • Fighting zabbix alert floods

Documentation

Triggers

  • Trigger functions

Function str() searches for substrings

Installation

  • Zabbix repositories
  • Zabbix on Gentoo

Installing Zabbix from git

git clone https://github.com/zabbix/zabbix.git
cd zabbix 
./bootstrap.sh

Zabbix API

  • The Zabbix API
  • API and python

Zabbix error codes

Z3005

Database issue

Items

Agent item keys

Item dialog

  • Item documentation
  • Zabbix agent items

Units

  • B
  • uptime
  • unixtime
  • s

proc.mem

proc.mem[<name>,<user>,<mode>,<cmdline>,<memtype>]

name

??

cmdline

regex like php-fpm:

memtype

  • Notes on proc.mem memtypes

Item preprocessing

Preprocessing regular expressions

Templates

  • Community templates

Template App MySQL

https://github.com/tiramiseb/zabbix-templates/blob/master/Template%20App%20MySQL.txt
TODO shouldn’t this be user zabbix?

mysql user account:

create user 'monitor'@'localhost' identified by auth_socket;
grant PROCESS,SHOW DATABASES,SHOW VIEW on *.* to 'monitor'@'localhost';
flush privileges;

Configuration

Zabbix agent active

On client

Have port 10051 open and:

ActiveServer zabbix.ser.ver

On server

Set Agent IP to 0.0.0.0

Zabbix and SQL

Find hosts with hostmacro defined

select h.host, m.macro, m.value from hosts h, hostmacro m where macro like '%FOO%' and h.hostid = m.hostid;

most frequent items in history_uint

select itemid,count(itemid) as freq from history_uint group by itemid order by freq desc limit 5;

and then

select name from items where itemid = whateveryoufind;

HOWTO

LLD with JSON

  • LLD with JSON and dependent items

if you want multiple keys, use jsonpath like

$[?(@.share=='{#FSTYPE}' && @.name=='{#NAME}')].size.first()

testing jsonpath preprocessing

In Value paste valid json, then name {#NAME} value somevalue

Test trapper

FAQ

SERVER

Adjust loglevel

zabbix_server --runtime-control log_level_increase=trapper
      

Reload zabbix server configuration

You can’t, but you might want

zabbix_server -c /etc/zabbix/zabbix_server.conf -R config_cache_reload

No media defined for user

The frontend does not match Zabbix database.

Probably version conflict between frontend and server

value cache working in low memory mode

Increase ValueCacheSize

PROXY

Zabbix Proxy

Front end

Round numbers

Preprocessing javascript
2 decimals:

return Math.round(value* 100) / 100

0 decimals:

return Math.round(value)

Visable name vs hostname

Visible name: {HOST.NAME}

Hostname: {HOST.HOST}

Host IP: (as defined in Interface->IP/DNS) {HOST.CONN}

Acknowledge multiple items

Monitor->Problems apply filters, select all, mass update

No permissions to referred object or it does not exist!

Graph no longer exists. Probably items no longer discovered

Cannot add host

??

SNMP

Cannot find host interface on «xxxhost» for item key foo

Might mean you’re trying to import an SNMP template before configuring SNMP for the host

No SNMP data

snmp_parse_oid(): cannot parse OID «IF-MIB::ifSpeed.3

Agent side ping check

UserParameter=pingtime[*],fping -e $1|sed 's/^.*(([0-9].*) ms).*$/1/g'
UserParameter=pingalive[*],fping $1|grep -q alive;echo $?

LLD/Discovery

Discover: value must be a JSON object

Could mean you need to escape slashes, check output with zabbix_get

Cannot create item: item with the same key

make sure the key containts «{#MACRONAME}»

Discovery data example

Output of a discovery script should look like:

{"data":[
  {"{#VAR1}":"value11","#{VAR2":"value12"},
  {"{#VAR1}":"value21","#{VAR2":"value22"}
]}

IPMI

IPMI Monitoring account for zabbix

https://www.thomas-krenn.com/en/wiki/Configuring_IPMI_under_Linux_using_ipmitool

ipmitool user set name 3 monitor
ipmitool user set password 3
ipmitool channel setaccess 1 3 link=on ipmi=on callin=on privilege=2
ipmitool user enable 3

cannot connect to IPMI host: [22] Operation canceled

Usually temporary because of broken ipmi lib, ignore it

cannot connect to IPMI host: [16777411] Unknown error 16777411

classic, probably authentication problem

cannot connect to IPMI host: [22] Invalid argument

zabbix_sender

processed: 0; failed: 1

Possible causes:

  • incorrect hostname
  • incorrect item key
  • item not in the server configuration cache yet
  • Allowed hosts in trapper item
  • phase of moon
  • aliens

Testing zabbix_sender

zabbix_sender stuff

Filters

The regular expressions referred to in discovery are found under Administration->General, and then «Regular expressions» in the dropdown at top right of the page

cannot connect to IPMI host: [125] Operation canceled

possibly authentication method issue

Calculated items

See Calculated items explained

Cannot create item: Invalid first parameter

Cannot create item, error in formula

Problably a calculated item, try doublequoting the item key:

last("foo[bar]")

Invalid parameter «/1/params»

Maybe forgot to use last()?
You might need to doublequote your items, or prepend with double slashes

Reset trigger/alert

For example when you changed the settings
Just disable, wait a bit and enable again.

Install recent zabbix on CentOS/RHEL

rpm -ivh https://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
yum install zabbix-agent

Backing up tables

https://www.zabbix.org/wiki/Docs/howto/mysql_backup_script

cannot send list of active checks

If in agent log: most likely ServerActive is defined in agent config, while not used at all

It is also possible agent is sending some active check to server while host is monitored via proxy.

active check configuration update started to fail

??

Latest 20 issues

DEFAULT_LATEST_ISSUES_CNT in/usr/share/zabbix/include/defines.inc.php

Zabbix unreachable poller processes more than 75% busy

Increase StartPollersUnreachable

Zabbix poller processes more than 75% busy

another mystery

More than 100 items having missing data for more than 10 minutes

Could be high load. Also check Administration->Queue

Zabbix escalator processes more than 75% busy

probably high system load overall

Check agent

zabbix_get -s my.host.com -k agent.version

ZBX_NOTSUPPORTED

Could be anything, enable logging on agent. It could be version mismatch. Check

zabbix_get -s yourhost -k agent.version

If that works, you’re calling for an undefined or unsupported key.

Incorrect trigger expression. Host «xx» does not exist or you have no access to this host.

Means there’s no related item.

zabbix_get returns nothing

best look at log on agent side

run playbook on single host

ansible_playbook -l somehost somplay.yml

Category:Monitoring

Zabbix server is not running: the information displayed may not be current

Might be selinux: http://sysads.co.uk/2013/11/zabbix-server-running-alert/

Monitoring vmware

vmware.hv.cpu.usage[{$URL},{HOST.HOST}]» became not supported: Couldn’t resolve host name

Set macro {$URL} to https://your.ip/sdk/ (shouldn't discovery figure that out from {$HOST} ?
      

Couldn’t resolve host name

Sometimes it’s a matter of waiting a few hours

vmware events collector returned empty result

???

No «vmware collector» processes started.

Check StartVMwareCollectors on server or proxy

unsupported item key

This might mean it’s expecting a value from the script you’re calling.

echo 1

became not supported: Not supported by Zabbix Agent

probably output by userparameter/script

ansible or API not showing host groups

Permissions!! See Administration->User Groups

failed to update local proxy configuration copy: invalid field name «items.lastlogsize»

check everything  :)

Received value [11] is not suitable for value type [Numeric (unsigned)] and data type [Decimal]

This probably means the agent returned 1n1

database is down: retrying in 10 seconds

try upping max_connections

[Incorrect key file for table ‘items’; try to repair it

Could be something /tmp related

another network error, wait for 8 seconds

UnreachableDelay=8

failed: first network error

Setting Timeout in server configuration

also Timeout in agents?

no active checks on server

  • Hostname in agent config (-kagent.hostname) must match name on server
  • simple no connection possible? firewall?

???

show cpu utilization

Monitoring->host->graphs

fuzzytime on command line

TS=lotsofseconds
  1. output in hours
echo $(( ($(date +%s) - $TS) / 3600 ))

duplicate entry adding user/group

Check table ‘ids’


  • Type:


    Problem report

  • Status:

    Closed


  • Priority:


    Critical

  • Resolution:

    Cannot Reproduce


  • Affects Version/s:



    3.2.6

  • Fix Version/s:



    None


  • Environment:

    FreeBSD 11.0-RELEASE-p1


  • Sprint:

    Sprint 14, Sprint 15, Sprint 16, Sprint 17, Sprint 18, Sprint 19, Sprint 21, Sprint 22, Sprint 23, Sprint 24, Sprint 25, Sprint 26

After update from v 2.4.8 to 3.2.6 server works unstably. Crashing within 1-3 hours after start.

 1802:20170802:145825.054 Got signal [signal:11(SIGSEGV),reason:1,refaddr:0x9f5e69380]. Crashing ...
  1802:20170802:145825.054 ====== Fatal information: ======
  1802:20170802:145825.054 program counter not available for this architecture
  1802:20170802:145825.054 === Registers: ===
  1802:20170802:145825.055 register dump not available for this architecture
  1802:20170802:145825.055 === Backtrace: ===
  1802:20170802:145825.056 3: 0x48d426 <print_fatal_info+0x86> at /usr/local/sbin/zabbix_server
  1802:20170802:145825.056 2: 0x48d8ce <zbx_set_common_signal_handlers+0x32e> at /usr/local/sbin/zabbix_server
  1802:20170802:145825.056 1: 0x803e3379d <pthread_sigmask+0x50d> at /lib/libthr.so.3
  1802:20170802:145825.056 0: 0x803e32d6f <pthread_getspecific+0xe9f> at /lib/libthr.so.3
  1802:20170802:145825.056 === Memory map: ===
  1802:20170802:145825.056 memory map not available for this platform
  1802:20170802:145825.056 ================================
   705:20170802:145825.058 One child process died (PID:1802,exitcode/signal:1). Exiting ...
   705:20170802:145827.122 syncing history data...
   705:20170802:145827.122 syncing history data done
   705:20170802:145827.122 syncing trend data...
   705:20170802:145833.821 syncing trend data done
   705:20170802:145833.821 Zabbix Server stopped. Zabbix 3.2.6 (revision 67849).

Install from /usr/ports/net-mgmt/zabbix32-server

  1. checks_ipmi_ZBX-12466.c
    46 kB
    2017 Aug 18 14:48
  2. config.log
    278 kB
    2017 Sep 06 10:55
  3. zabbix_server.log_1
    28 kB
    2017 Sep 22 13:04
  4. zabbix_server1.log
    9 kB
    2017 Aug 04 17:02

Проблема с SNMP на серверах HP Proliant Gen9

Столкнулся с неизлечимой проблемой на серверах HP Proliant. Через случайный промежуток времени (от нескольких минут до нескольких дней) служба SNMP в ILO сервера зависает. Это происходит на серверах, которые активно мониторятся через SNMP.

Проблема проявляется на серверах:

  • HP Proliant DL 20 Gen 9
  • HP Proliant DL 120 Gen 9
  • HP Proliant DL 360 Gen 9
  • HP Proliant DL 380 Gen 9
  • HP Proliant DL 580 Gen 9

После перезапуска ILO — SNMP начинает работать, но через случайный промежуток времени снова зависает.

Ошибок нигде не светится. Обновление ILO до последней прошивки не исправляет проблему.

Поддержка HP решить проблему не смогла, её смешные непрофессиональные ответы писать даже стыдно. Поддержка дотянула до 31 декабря 2017 года и попросила закрыть тикет и в новом году снова открыть. Видимо, для получения премии им не хватало одного закрытого тикета. Печалька.

Если на сервере используется hp-ams (Agentless Management Service for HP ProLiant servers with iLO4), то проблему можно решить созданием задачи в кроне, которая будет перезапускать зависший демон при его падении. Этот костыль применим, если на сервере стоит ubuntu или нечто подобное. Для ESXi, возможно, тоже можно придумать свой костыль, но слишком неудобно при большом количестве серверов.

Для гипервизоров ESXi я пока поступил следующим образом: перевёл мониторинг с SNMP на IPMI. При этом теряется autodiscovery и мониторинг жёстких дисков на некоторых конфигурациях серверов. Диски теперь мониторятся только через email-уведомления в ILO.

Источник

IPMI — error: Cannot connect to IPMI host. Error 0x16 Invalid argument

Details

Description

IPMI Agent does not work, Error 0x16 Invalid argument. Hower ipmitool works fine (OpenIPMI-devel 2.0.16.7)

2137:20110107:101401.610 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x16 Invalid argument
2137:20110107:101401.612 IPMI Host [odb6] : first network error, wait for 15 seconds
2097:20110107:101416.607 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x2000001 Unknown error 33554433
2097:20110107:101416.609 IPMI Host [odb6] : another network error, wait for 15 seconds
2097:20110107:101431.615 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x16 Invalid argument
2097:20110107:101431.617 IPMI Host [odb6] : another network error, wait for 15 seconds
2097:20110107:101446.624 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x16 Invalid argument
2097:20110107:101446.625 IPMI Host [odb6] : another network error, wait for 15 seconds
2097:20110107:101501.631 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x16 Invalid argument
2097:20110107:101501.634 Disabling IPMI host [odb6]
2106:20110107:101531.168 Sending list of active checks to [172.18.4.105] failed: host [odb5.pforzheim.org] not found
2097:20110107:101601.649 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x2000001 Unknown error 33554433
2097:20110107:101701.668 Item [odb6:temp1] error: Cannot connect to IPMI host. Error 0x16 Invalid argument

OpenIPMI.x86_64 2.0.16-7.el5 installed
OpenIPMI-devel.i386 2.0.16-7.el5 installed
OpenIPMI-devel.x86_64 2.0.16-7.el5 installed
OpenIPMI-libs.i386 2.0.16-7.el5 installed
OpenIPMI-libs.x86_64 2.0.16-7.el5 installed
OpenIPMI-tools.x86_64 2.0.16-7.el5 installed

[[email protected] tmp] # ipmitool -H 172.18.20.106 -L user -I lanplus -U zabbix -P xxxxxx sensor
UID Light | 0x0 | discrete | 0x0080| na | na | na | na | na | na
Sys. Health LED | 0x0 | discrete | 0x0080| na | na | na | na | na | na
Power Supply 1 | 105.000 | Watts | nc | na | na | na | na | na | na
Power Supply 2 | 85.000 | Watts | nc | na | na | na | na | na | na
Power Supplies | 0.000 | unspecified | nc | na | na | na | na | na | na
Fan 1 | 18.032 | unspecified | nc | na | na | na | na | na | na
Fan 2 | 43.512 | unspecified | nc | na | na | na | na | na | na
Fan 3 | 43.512 | unspecified | nc | na | na | na | na | na | na
Fan 4 | 43.512 | unspecified | nc | na | na | na | na | na | na
Fan 5 | 18.032 | unspecified | nc | na | na | na | na | na | na
Fans | 0x0 | discrete | 0x0180| na | na | na | na | na | na
Temp 1 | 19.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 40.000 | 42.000 | 46.000
Temp 2 | 40.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 82.000 | 83.000
Temp 3 | 40.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 82.000 | 83.000
Temp 4 | 30.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 5 | 34.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 6 | 35.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 7 | 37.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 8 | 29.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 9 | 32.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 87.000 | 92.000
Temp 10 | na | degrees C | na | 0.000 | 0.000 | 0.000 | 0.000 | 75.000 | 80.000
Temp 11 | 28.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 12 | 29.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 13 | 28.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 14 | 28.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 15 | 27.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 16 | 26.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 17 | 27.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 18 | 26.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 19 | 26.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 20 | 25.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 21 | 29.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 70.000 | 75.000
Temp 22 | 30.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 63.000 | 68.000
Temp 23 | 41.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 110.000 | 115.000
Temp 24 | 47.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 110.000 | 115.000
Temp 25 | 20.000 | degrees C | ok | 0.000 | 0.000 | 0.000 | 0.000 | 60.000 | 65.000
Memory | 0x0 | discrete | 0x4080| na | na | na | na | na | na
Power Meter | 284.000 | Watts | cr | na | na | na | na | na | na

Best Regards, Andreas
City of Pforzheim/Germany
[email protected]

Источник

[Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’

Details

Description

Since the upgrade from Zabbix 2.2.0 to 2.2.1 we get the log entries like this:

20808:20131210:132514.061 [Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’ [update hosts set impi_disable_until=1386678374,impi_error=’cannot connect to IPMI host: [16777411] Unknown error 16777411′ where hostid=10086]
20808:20131210:132520.070 [Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’ [update hosts set impi_disable_until=1386678335,impi_error=’cannot connect to IPMI host: [16777345] Unknown error 16777345′ where hostid=10109]

Obviously there is a typo, because usually there are filed with name «ipmi_disable_until» but not «impi_disable_until» (m and p swapped).

Searching trough the source code, I found the problematic place:
srczabbix_serverpollerpoller.c line 236

Changing this and recompiling made the error go away

Attachments

Issue Links

ZBX-7514 PostgreSQL fatal error after upgrade to Zabbix 2.2.1

  • Closed
    The issue is considered finished, the resolution is correct. Issues which are closed can be reopened. «>Closed

ZBX-7584 Unknown column ‘impi_errors_from’ in ‘field list’

  • Closed
    The issue is considered finished, the resolution is correct. Issues which are closed can be reopened. «>Closed

Источник

IPMI remote command does not work

Details

Description

IPMI remote command does not work because remote command uses host ip address.

  • host ip : 127.0.0.1
  • ipmi ip : 192.168.1.10
  • remote command :

60244:20121228:044432.118 In run_commands()
60244:20121228:044432.118 In get_next_command(command_list:localhost:IPMI power on)
60244:20121228:044432.118 End get_next_command(alias:localhost,is_group:0,command:IPMI power on)
60244:20121228:044432.118 In run_remote_command(hostname:localhost,command:IPMI power on)
60244:20121228:044432.118 query [txnlev:1] [select hostid,host,useip,ip,dns,port,useipmi,ipmi_ip,ipmi_port,ipmi_authtype,ipmi_privilege,ipmi_username,ipmi_password from hosts where status in (0) and host=’localhost’ and hostid between 000000000000000 and 09999999999999
9]
60244:20121228:044432.118 In parse_ipmi_command(IPMI power on)
60244:20121228:044432.118 In set_ipmi_control_value(control:power, value:1)
60244:20121228:044432.118 In init_ipmi_host() host:’ [127.0.0.1] :623′
60244:20121228:044432.118 In get_ipmi_host() host:’ [127.0.0.1] :623′
60244:20121228:044432.118 End of get_ipmi_host():(nil)
60244:20121228:044432.118 In allocate_ipmi_host() host:’ [127.0.0.1] :623′
60244:20121228:044432.118 End of allocate_ipmi_host():0x1194210
60244:20121228:044446.145 In setup_done() phost:0x1194210 host:’ [127.0.0.1] :623′
60244:20121228:044446.145 setup_done() fail: [22] Invalid argument
60244:20121228:044446.145 End of setup_done():NETWORK_ERROR
60244:20121228:044446.148 In domain_closed() phost:0x1194210 host:’ [127.0.0.1] :623′
60244:20121228:044446.148 End of domain_closed()
60244:20121228:044446.148 End of init_ipmi_host():0x1194210
60244:20121228:044446.148 cannot connect to IPMI host: [22] Invalid argument
60244:20121228:044446.148 End run_remote_command(result:-3)
60244:20121228:044446.148 In get_next_command(command_list
60244:20121228:044446.148 Result get_next_command [EOL]
60244:20121228:044446.148 End run_commands()

Источник

[Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’

Details

Description

Since the upgrade from Zabbix 2.2.0 to 2.2.1 we get the log entries like this:

20808:20131210:132514.061 [Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’ [update hosts set impi_disable_until=1386678374,impi_error=’cannot connect to IPMI host: [16777411] Unknown error 16777411′ where hostid=10086]
20808:20131210:132520.070 [Z3005] query failed: [1054] Unknown column ‘impi_disable_until’ in ‘field list’ [update hosts set impi_disable_until=1386678335,impi_error=’cannot connect to IPMI host: [16777345] Unknown error 16777345′ where hostid=10109]

Obviously there is a typo, because usually there are filed with name «ipmi_disable_until» but not «impi_disable_until» (m and p swapped).

Searching trough the source code, I found the problematic place:
srczabbix_serverpollerpoller.c line 236

Changing this and recompiling made the error go away

Attachments

Issue Links

ZBX-7514 PostgreSQL fatal error after upgrade to Zabbix 2.2.1

  • Closed
    The issue is considered finished, the resolution is correct. Issues which are closed can be reopened. «>Closed

ZBX-7584 Unknown column ‘impi_errors_from’ in ‘field list’

  • Closed
    The issue is considered finished, the resolution is correct. Issues which are closed can be reopened. «>Closed

Источник

.

202. systemd[1]: fail2ban.service: Failed with result ‘exit-code’.
203. During handling of the above exception, another exception occurred
204. tar: You must specify one of the `-Acdtrux’ or `—test-label’ options
205. stderr: ERROR: -t argument value » invalid
206. cannot connect to IPMI host: [33554445] Unknown error 33554445
207. Hi I’am a french Guy,So the dashboard will be in french.
208. mysqldump: Got errno 32 on write
209. locale: Cannot set LC_ALL to default locale: No such file or directory
210. Error VIX_E_FAIL in VMAutomation_ReportPowerOpFinished(): Unknown error
211. Thunderbird failed to find the settings for your email account
214. systemd[1]: Failed to read PID from file /var/run/iscsid.pid: Invalid argument
216. krb5_init_context failed (Invalid argument
217. [0x4e968700] Unable to create stream importer: 8004010F
219. Error parsing flat file: invalid literal for long() with base 10: ‘1550855da8/wwwe915t b4’
222. Hardlink failed, cannot securely erase old config file
224. java.lang.OutOfMemoryError: Java heap space
225. Checks whether your message is well formatted or not: There is no html version of your message.
226. The specified path is invalid
228. An application has crashed on your system (now or in the past)
229. Assertion `cnt < (sizeof (_nl_value_type_LC_TIME) / sizeof (_nl_value_type_LC_TIME[0]))’ failed.
230. Fatal error — Command Tool invoked with wrong parameters
231. Received value [ERROR: The file named /var/tmp/cert.KRAKjJ is unreadable, doesn’t exist or is empty
232. WARNING: terminal is not fully functional
233. Resolution: This is a known issue
235. DEBUG(1): [6s] lcmc.ArgumentParser: initApp: max mem: 1970m
236. LibClamAV Warning: [Bytecode JIT]: Bytecode run timed out, timeout flag set
237. Connecting to server Unknown using url pseudo://Unknown
238. ValueError: new value non-existent xfs filesystem is not valid as a default fs type
239. lvmetad: WARNING: Ignoring unsupported value for cmd
240. temp3: -128.0°C (low = +123.0°C, high = -15.0°C)
241. Unit -.mount does not exist, proceeding anyway.
243. ERROR: Unable to backup foo.bar due to error in VMDK backup!
244. Not using downloaded epel/repomd.xml because it is older than what we have
245. Can’t locate version.pm in @INC
246. ERROR root:Internal error while creating session. hr=0x80040111
247. (20014)Internal error: proxy: error reading status line from remote server localhost
249. ERROR: «» is not valid VM input file!
250. You are doing everything right and it should work.
251. error: Merging is not possible because you have unmerged files.
252. LibClamAV Warning: SWF: declared output length != inflated stream size
253. WARNING Unable to find a corresponding IP address for client: (-2, ‘Name or service not known’)
254. Uncaught Error: Call to a member function present() on null
255. string is too long, it needs to be less than 0 bytes long
257. LibClamAV Warning: Bytcode 85 failed to run: Time limit reached
258. Couldn’t create plugins dir
259. i tried to set it up by following a video tutorial
260. /etc/cron.daily/logrotate: error: z-push.lr:6 unknown option ‘su’ — ignoring line
261. kf5.kio.core: KIO::TransferJob(0x55e805f0ac30) This is overkill.
262. Type of received value [2500299063296.000000] is not suitable for value type [Numeric (float)]
263. publish_entry SCDSet() failed: Success!
264. cannot connect to IPMI host: [2] No such file or directory
266. cannot connect to IPMI host: [22] Invalid argument
267. customer sent a .asc and want secure mail
272. Sorry, something went wroing. Please refresh your browser.
273. Error connecting to agent: No such file or directory
275. dnsmasq: cannot access directory /etc/dnsmasq.d,.rpmnew,.rpmsave,.rpmorig: No such file or directory
276. Installed package libfribidi-0.19.2-3.el7.nux.x86_64 not available.
277. General Protection Fault
278. The result is RESULT.
279. The failing step is: Install the system
280. ERROR:browser_main_loop.cc(267)] Gtk: IA__gtk_widget_add_accelerator: assertion ‘GTK_IS_ACCEL_GROUP (accel_group)’ failed
281. last message repeated 99 times
282. An installation step failed. You can try to run the failing item again from the menu, or skip it and choose something else. The failing step is: Install the system
283. bugs-search.debian.org’s server IP address could not be found.
284. One of the configured repositories failed (Unknown)
285. Error: Success — empty transaction
286. PHP Warning: Module ‘smbclient’ already loaded in Unknown on line 0
287. apache2.service: Failed with result ‘exit-code’.
288. Could not build name for facility $syslog,: Invalid argument
289. An exception ‘java.lang.OutOfMemoryError: Java heap space’
290. Please make sure you have read and write permission (777) for plugin directory.
291. already closed by tragic event on the index writer
292. [ERROR][o.e.b.ElasticsearchUncaughtExceptionHandler] [] fatal error in thread
293. If a JVM is started with unequal initial and max heap size, it can be prone to pauses as the JVM heap is resized during system usage.
294. The following example code is causing OOM on 7th iteration with -Xmx2g. The test will pass with -Xmx4g. The XML file I’m trying to parse is 51mb in size.
296. [[: not found
297. -bash: :export: command not found
298. ionice: ignoring given class data for none class
299. gss_accept_sec_context() failed: An unsupported mechanism was requested (, )
300. Exception caught inside exception handler.
302. mv: cannot move `10004′ to `/home/mailrip/archive/10004′: Directory not empty
303. System is not available
304. Consistency Check inconsistency logging disabled, too many inconsistencies on VD: 0
305. error loading certificate
308. SAS2IRCU: MPTLib2 Error 1
310. unknown error
311. syntax error, unexpected $end
312. Error: Unknown command or namespace software install
313. [warning] {?} Error fetching mail
314. Active: inactive (dead)
315. unzip: short read
316. rndc: ‘reload’ failed: not found
317. kill: cannot find process «»
318. TypeError: Cannot read property ‘id’ of undefined
319. error:20074002:BIO routines:FILE_CTRL:system lib
320. error loading certificate key
321. java.lang.OutOfMemoryError: GC overhead limit exceeded
322. Operation failed, diagnostics report: iScsiException: status(c0000000): Invalid parameter; Message= IMA_AddStaticDiscoveryTarget
323. Could not resolve host: mirrors.fedoraproject.org; Unknown error
324. tgtadm: invalid request
325. rsyslogd-2007: action ‘action 17’ suspended
326. 03608 ERROR root:Whoops, that went pretty wrong…
327. error:02001002:system library:fopen:No such file or directory
328. Kopano: login failed with error code: 0xFFFFFFFF80040115
330. systemd[1]: rsyslog.service: Job rsyslog.service/start failed with result ‘dependency’.
331. [ERROR] sentry.errors: Unable to incr internal metric
332. There was an error loading a component.
333. Your message rate limit for an unknown domain is exceeded
334. -sh: can’t fork
335. Internal Panic: Unrecoverable memory allocation failure
336. WARNING: LogDenied ‘on’ is invalid, using default value ‘off’
337. sensord: Warning: Unexpected error Failure
338. Subject: {firstname}, uw e-mailadres werd gekozen.
340. Error code: service.LICENSE_ERROR Method: [unknown]
341. Please do not delete or modify any files or folders or it may result in system operation abnormal.
342. The failing step is: Select and install software
344. OSError: [Errno 5] Input/output error
345. connection1:0: detected conn error (1020)
346. Request could not be processed correctly due to a WBXMLException. Please report this.
347. WBXMLException: Internal Server Error — code: 0
348. assert not upper_a.lstat()
349. setlocale: unsupported locale setting
350. Failed to remove runtime connection config file
351. gss_accept_sec_context() failed: An unsupported mechanism was requested (, Unknown error)
352. You cannot report this error, because kdeinit5 does not provide a bug reporting address.
353. #6 0x00007efc35d88abc in ?? () from /usr/lib/x86_64-linux-gnu/libnvidia-glcore.so.340.107
354. sshd: error: invalid key option string
355. ERROR: ‘—failure’ is not an option. Aborting…
356. phpBB : Critical Error
357. Cannot get attribute from EA on file .: Error = Operation not supported
358. unknown error (1)
359. Geocode was not successful for the following reason:
360. View ‘foo’ references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
361. Failed to set locale, defaulting to C
362. ERROR : deleteItem_internal : Invalid file name.
363. locale: Cannot set LC_CTYPE to default locale: No such file or directory
364. xfs_repair: read failed: Invalid argument
365. You do not have permission to do that, for the following reason: You are not allowed to execute the action you have requested.
366. Failed with result ‘exit-code’.
367. Main PID: 7311 (code=exited, status=218/CAPABILITIES)
368. we finally solved this rebooting everything.
369. systemd[1]: Job nfs-server.service/start failed with result ‘dependency’.
370. Could not read. Reason: Unspecified error
371. Can’t connect to ssl!
372. systemd[1]: Failed to parse PID from file /var/run/iscsid.pid: Success
373. Warning: undefined:0 TypeError: ‘undefined’ is not a function
374. mount.nfs: mount(2): Invalid argument
375. ERROR: problem running
376. Cannot set LC_CTYPE to default locale: No such file or directory
377. Unknown error occurred
378. WARNING: UserLinux: 1331: unsupported: (void)
379. Can’t Read File
380. proftpd rereaded
381. ECChannel::HrSetCtx(): cannot open key file
382. systemd[1]: nginx.service: Failed to parse PID from file /run/nginx.pid: Invalid argument
383. The start-up result is RESULT.
384. Couldn’t remove directory: Failure
385. 4.3.1 Insufficient system resources (SystemMemory) (in reply to end of DATA command))
386. Error connecting to database: No such file or directory
387. [sde] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK
388. exportfs: config file error: line 52: ignoring line due to no section
389. systemd[1]: start request repeated too quickly for crond.service
390. [error ] K-1215: unexpected id 105/104
391. unable to open —help config file
392. connection2:0: detected conn error (1022)
393. drbd: error sending genl reply
394. Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
395. Language support is incomplete, additional packages are required
396. Failed — An error occurred during host configuration
397. snmpd: No library available for additional MIBs: No such file or directory
398. cannot connect to IPMI host: [16777411] Unknown error 16777411
399. CIFS VFS: Unexpected lookup error -5
400. nfsd: peername failed (err 107)!
401. Whoops, something went wrong on our end.
402. Error: Unknown command or namespace systen snmp test
403. systemd[1]: sysroot.mount: Job sysroot.mount failed with result `dependency`
404. string value is None for dictionary value @ data[‘suffix’]. Got None. (See ?, line ?)
405. ERROR: Can’t open file or directory
406. gzip: stdin: file size changed while zipping
407. www.linux-ha.org took too long to respond
408. Received value [11] is not suitable for value type [Numeric (unsigned)] and data type [Decimal]
409. http://pics.tuxick.net/computerstuff/ha-irony.png
410. End of system activity file unexpected
411. Error: The operation has timed out.
412. mysqld[67886]: Unable to determine if daemon is running: No such file or directory
413. Failed to connect: org.bluez.Error.Failed
414. Job qemu-guest-agent.service/start failed with result ‘dependency’.
415. Failed — An error occurred during host configuration.
416. /dev/video0: Invalid argument
417. Unable to create object in local database: user has no name
418. kex_exchange_identification: read: Connection reset by peer
419. fatal: no kex alg
420. syntax error, unexpected $end, expecting TOKEN_FLUSH
421. Not using downloaded remi/repomd.xml because it is older than what we have
422. Failed to execute operation: Invalid argument
423. LetsEncrypt(12763): exit code: 1
424. PANIC: Failed to register the runner. You may be having network problems.
425. Cannot write to «latest.tar.gz» (Success)
426. Failure when attempting to copy boot files
427. Failed to set mode: Failed (0x03)
428. partx: error adding partition
429. Unfortunately, we hit an error that we weren’t expecting.
430. LibClamAV Error: CRITICAL: fmap() failed
431. LibClamAV Warning: fmap_readpage: pread fail: asked for 122880 bytes @ offset 3579904, got 0
432. Read Device Identity failed: megasas_cmd result: 0.15 = 0/45
433. M2Crypto.SSL.SSLError: tlsv1 alert protocol version
434. An error occurred, please try again.
435. vmware events collector returned empty result
436. YumRepo Error: All mirror URLs are not using ftp, http[s] or file
437. SSL connect error
438. messagetitle:UNKNOWN
439. [error ] Failed to read line: Connection reset by peer
440. Unable to parse content as json. Expecting value: line 1 column 1 (char 0)
441. Save the file and reboot host.
442. ?? pebkac
443. Failed to connect to system bus: No such file or directory
444. ls: ./5da651c6-e495ee96-7728-ac1f6bb39ac0: Function not implemented
445. ‘unknown error’ (1): call=12067, status=Timed Out, exitreason=»
446. ERROR: Can’t access file
447. Try ‘apt —fix-broken install’ with no packages (or specify a solution)
448. UserFile: 607: UserFileOpen: unexpected fstype: 0
449. Memory limit doesn’t accept the negative value -1048576
450. Fil3: 209: Unknown object type -1
451. Cannot check user existence, because disabled LDAP configurations are present.
452. error: 0
454. SAS3IRCU: MPTLib2 Error 1
455. 2148074279 An unknown error occurred while processing the certificate.
456. Error: check all
457. write:errno=104
458. 38 (Function not implemented)
459. Completed 0% in 3 Minutes
460. [Hardware Error]: Corrected error, no action required.
461. Failed with result ‘exit-code’
462. Hallo, null null
463. awesomeversion.exceptions.AwesomeVersionCompare: Can’t compare unknown
464. (Return code of 255 is out of bounds)
465. iptables v1.8.5 (legacy): Couldn’t load target `LOG’:No such file or directory
466. systemd[1]: corosync-qnetd.service: Failed with result ‘exit-code’.
467. The unit UNIT has successfully entered the ‘dead’ state.
468. systemd[1]: elasticsearch.service: Failed with result ‘signal’.
469. iptables v1.8.7 (legacy): Couldn’t load target `LOG’:No such file or directory
470. Got an error reading communication packets
471. TLS: can’t connect: (unknown error code).
472. TypeError: ‘NoneType’ object is not iterable
473. Error while loading /etc/netplan/00-ens18.yaml, aborting.
474. An error occurred: ‘NetplanApply’ object has no attribute ‘state
475. Nobody expects the Spanish Inquisition!
476. Unexpected error during account creation
477. Undetermined Error
478. Connection failed
479. PXE-T00: File name too long
480. E: Unable to correct problems, you have held broken packages.
481. Send failed
482. newaliases: fatal: bad string length 0 < 1: setgid_group =
483. critical: error opening channel: No such file or directory
484. 500 — Ooops. This page has not been found.
485. sap-server: Operation not permitted (1)
486. Command notify requires two arguments
487. Every version of ElasticSearch change how web services work, and cause compatibility problems.
488. VPN plugin: failed: connect-failed (1)
489. MySQL sneaks swedish in there sometimes for no sensible reason
490. Message error:
491. Something impossible just happened
492. IPv6 gateway filed and metric field must both have the value
493. zabbix-proxy.service: Failed with result ‘protocol’
494. Elasticsearch will fail to index for CirrusSearch if one is using a database name for MySQL which contains a capital character
495. Error occurred while checking server setup
496. AttributeError:’NoneType’ object has no attribute ‘ebuild’
497. Connection error 401: No ticket
498. Error code: 1
499. The system cannot check_config because the configuration is not valid
500. Unsupported device type Unknown
501. SUNRPC: reached max allowed number (1) did not add transport to server
502. This directory is unavailable, please check the logs or contact the administrator
503. [object Object]
504. AH01075: Error dispatching request to :
505. Our Downloads Page has moved!
506. ovpn,debug,error,,,,debug,l2tp,,warning,,,,,critical,,,,debug unknown msg!
507. opendkim-testkey: invalid data set type
508. (server.c.1437) can’t have more connections than fds/2
509. Error handling incoming message
510. slapd[4884]: connection_read(14): no connection!
511. Message malformed: Integration » not found
512. TLS: can’t connect: (unknown error code)
513. gpg encryption failed: General error
514. There was an error while setting up your account
515. ERROR 1231 (42000): Variable ‘slow_query_log_file’ can’t be set to the value of ‘/var/log/mysql-slow.log’
516. Something went wrong!
517. None is not of type ‘string’
518. TypeError: ‘NoneType’ object is not subscriptable
519. systemd[1]: clamav-daemon.service: Failed with result ‘signal’.
520. Creating mailbox file: No such file or directory

Note to the google victims hoping to find answers here: you will find thousands more having the same problems with bad software.

Pages Previous 1 2 3 4 Next

You must login or register to post a reply

26 04.06.2018 15:54:14

  • egor27062005
  • Новичок
  • Offline
  • Registered: 04.06.2018
  • Posts: 1

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Народ, помогите я все делаю как показано на скринах и в тексте, и подключения нету. Вот что он выдает самой последней строчкой: Initialization Sequence Completed With Errors. Там ещё скобки, а в них какая-то сслыка, но сайт не дает отправить(

27 Reply by Rino 04.06.2018 15:58:51

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Посмотрите в сетевых настройках, не отключили ли вы, случайно, виртуальный сетевой адаптер, необходимый для работы клиента OpenVPN.

28 Reply by Henk 06.07.2018 21:59:25

  • Henk
  • Новичок
  • Offline
  • Registered: 06.07.2018
  • Posts: 5

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Подскажите пожалуйста, Всё сделал по инструкции, ввожу логин, пароль, программа просит сделать это 3 раза подряд после чего окно с Не удалось переподключиться к(имя конфига), что делать?(win7 64)

29 Reply by Rino 06.07.2018 22:53:28

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Henk wrote:

Подскажите пожалуйста, Всё сделал по инструкции, ввожу логин, пароль, программа просит сделать это 3 раза подряд после чего окно с Не удалось переподключиться к(имя конфига), что делать?(win7 64)

Не могли бы вы предоставить лог с ошибкой?

30 Reply by Henk 06.07.2018 23:46:35

  • Henk
  • Новичок
  • Offline
  • Registered: 06.07.2018
  • Posts: 5

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Rino wrote:

Henk wrote:

Подскажите пожалуйста, Всё сделал по инструкции, ввожу логин, пароль, программа просит сделать это 3 раза подряд после чего окно с Не удалось переподключиться к(имя конфига), что делать?(win7 64)

Не могли бы вы предоставить лог с ошибкой?

Fri Jul 06 20:56:03 2018 OpenVPN 2.3.18 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [PKCS11] [IPv6] built on Oct 26 2017
Fri Jul 06 20:56:03 2018 Windows version 6.1 (Windows 7) 64bit
Fri Jul 06 20:56:03 2018 library versions: OpenSSL 1.0.2l  25 May 2017, LZO 2.10
Fri Jul 06 20:56:12 2018 Control Channel Authentication: tls-auth using INLINE static key file
Fri Jul 06 20:56:12 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Fri Jul 06 20:56:12 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Fri Jul 06 20:56:13 2018 UDPv4 link local: [undef]
Fri Jul 06 20:56:13 2018 UDPv4 link remote: [AF_INET]46.8.209.9:12595
Fri Jul 06 20:56:13 2018 WARNING: this configuration may cache passwords in memory — use the auth-nocache option to prevent this
Fri Jul 06 20:56:13 2018 VERIFY OK: depth=1, O=5a3b83c8c822c107314e2429, CN=5a3b83c8c822c107314e2439
Fri Jul 06 20:56:13 2018 Validating certificate key usage
Fri Jul 06 20:56:13 2018 ++ Certificate has key usage  00a0, expects 00a0
Fri Jul 06 20:56:13 2018 NOTE: —mute triggered…
Fri Jul 06 20:56:13 2018 10 variation(s) on previous 3 message(s) suppressed by —mute
Fri Jul 06 20:56:13 2018 [5a3b83cac822c107314e2443] Peer Connection Initiated with [AF_INET]46.8.209.9:12595
Fri Jul 06 20:56:15 2018 AUTH: Received control message: AUTH_FAILED,CRV1:R:dd1d4ef0f65a47f28e168eee8a8c0aa1:bmls:Enter Pin
Fri Jul 06 20:56:15 2018 SIGUSR1[soft,auth-failure] received, process restarting

31 Reply by Rino 06.07.2018 23:54:40

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Henk wrote:

Fri Jul 06 20:56:15 2018 AUTH: Received control message: AUTH_FAILED,CRV1:R:dd1d4ef0f65a47f28e168eee8a8c0aa1:bmls:Enter Pin

Ошибка авторизации. Вы вводите пароль?

32 Reply by Henk 07.07.2018 00:05:54

  • Henk
  • Новичок
  • Offline
  • Registered: 06.07.2018
  • Posts: 5

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Rino wrote:

Henk wrote:

Fri Jul 06 20:56:15 2018 AUTH: Received control message: AUTH_FAILED,CRV1:R:dd1d4ef0f65a47f28e168eee8a8c0aa1:bmls:Enter Pin

Ошибка авторизации. Вы вводите пароль?

ну конечно, он чувствителен к реестру?

33 Reply by Rino 07.07.2018 11:02:22

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Henk wrote:

Rino wrote:

Henk wrote:

Fri Jul 06 20:56:15 2018 AUTH: Received control message: AUTH_FAILED,CRV1:R:dd1d4ef0f65a47f28e168eee8a8c0aa1:bmls:Enter Pin

Ошибка авторизации. Вы вводите пароль?

ну конечно, он чувствителен к реестру?

Пароль состоит из цифр.

34 Reply by Henk 07.07.2018 14:18:54

  • Henk
  • Новичок
  • Offline
  • Registered: 06.07.2018
  • Posts: 5

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Rino wrote:

Henk wrote:

Rino wrote:

Ошибка авторизации. Вы вводите пароль?

ну конечно, он чувствителен к реестру?

Пароль состоит из цифр.

Спасибо огромное, разобрался.

35 Reply by Rino 07.07.2018 14:22:23

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Henk wrote:

Спасибо огромное, разобрался.

Не за что. Был рад помочь!

36 Reply by mbu_cdb 14.08.2018 09:50:43

  • mbu_cdb
  • Новичок
  • Offline
  • Registered: 14.08.2018
  • Posts: 1

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Добрый день! Помогите разобраться. Установка выполнена, файлы конфигурации скачаны, но при подключение выдает подключение и выходят вот эти строчки и подключение дальше не идет. Пробовали переустанавливать все заново и то же самое повторяется

Tue Aug 14 12:38:32 2018   DHCP LEASE EXPIRES  = Wed Aug 15 10:21:00 2018
Tue Aug 14 12:38:32 2018   DNS SERV = 83.172.32.17/255.255.255.255 83.172.33.18/255.255.255.255
Tue Aug 14 12:38:32 2018 Initialization Sequence Completed With Errors

37 Reply by Rino 14.08.2018 23:29:45

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

mbu_cdb wrote:

Добрый день! Помогите разобраться. Установка выполнена, файлы конфигурации скачаны, но при подключение выдает подключение и выходят вот эти строчки и подключение дальше не идет. Пробовали переустанавливать все заново и то же самое повторяется

Tue Aug 14 12:38:32 2018   DHCP LEASE EXPIRES  = Wed Aug 15 10:21:00 2018
Tue Aug 14 12:38:32 2018   DNS SERV = 83.172.32.17/255.255.255.255 83.172.33.18/255.255.255.255
Tue Aug 14 12:38:32 2018 Initialization Sequence Completed With Errors

Здравствуйте!
А что у вас со временем на компьютере? Из-за разницы во времени DHCP стартует с истекшим сроком.

38 Reply by lukianovandrey17500 19.11.2018 20:04:34

  • lukianovandrey17500
  • Новичок
  • Offline
  • Registered: 19.11.2018
  • Posts: 2

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

enter pin-а где его взять?

39 Reply by MihaGus89 19.11.2018 21:08:18

  • MihaGus89
  • Member
  • Offline
  • Registered: 20.11.2016
  • Posts: 19

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

lukianovandrey17500 wrote:

enter pin-а где его взять?

На странице выбранного вами сервера. smile

40 Reply by lukianovandrey17500 30.11.2018 12:18:06

  • lukianovandrey17500
  • Новичок
  • Offline
  • Registered: 19.11.2018
  • Posts: 2

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

После ввода Логина и пароля возникает иконка Enter Pin Response
Что делать?

41 Reply by Rino 30.11.2018 21:35:34

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

lukianovandrey17500 wrote:

После ввода Логина и пароля возникает иконка Enter Pin Response
Что делать?

Ошибка говорит о том, что вы неверно ввели пароль.

42 Reply by melkor-com 26.12.2018 12:10:29

  • melkor-com
  • Новичок
  • Offline
  • Registered: 26.12.2018
  • Posts: 2

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Добрый день, не могли бы вы помочь с ошибкой при подключении ?
Wed Dec 26 11:07:14 2018 DEPRECATED OPTION: —max-routes option ignored.The number of routes is unlimited as of OpenVPN 2.4. This option will be removed in a future version, please remove it from your configuration.
Wed Dec 26 11:07:14 2018 OpenVPN 2.4.4 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Sep 26 2017
Wed Dec 26 11:07:14 2018 Windows version 6.2 (Windows 8 or greater) 64bit
Wed Dec 26 11:07:14 2018 library versions: OpenSSL 1.0.2l  25 May 2017, LZO 2.10
Wed Dec 26 11:07:42 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:07:42 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:07:42 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:07:42 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:07:46 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:07:46 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:07:51 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:07:51 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:07:51 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:07:51 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:07:55 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:07:55 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:08:00 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:00 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:00 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:08:00 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:08:04 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:08:04 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:08:09 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:09 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:09 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:08:09 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:08:13 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:08:13 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:08:18 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:18 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:18 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:08:18 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:08:22 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:08:22 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:08:32 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:32 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:32 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:08:32 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:08:36 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:08:36 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:08:56 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:56 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:08:56 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:08:56 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:09:00 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:09:00 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting
Wed Dec 26 11:09:40 2018 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:09:40 2018 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Wed Dec 26 11:09:40 2018 TCP/UDP: Preserving recently used remote address: [AF_INET]188.130.138.23:443
Wed Dec 26 11:09:40 2018 Attempting to establish TCP connection with [AF_INET]188.130.138.23:443 [nonblock]
Wed Dec 26 11:09:44 2018 TCP: connect to [AF_INET]188.130.138.23:443 failed: Unknown error
Wed Dec 26 11:09:44 2018 SIGUSR1[connection failed(soft),init_instance] received, process restarting

43 Reply by Rino 26.12.2018 17:36:27

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

melkor-com wrote:

Добрый день, не могли бы вы помочь с ошибкой при подключении?

Добрый день!
Похоже, вы не обновили файлы конфигурации.

44 Reply by melkor-com 27.12.2018 08:51:10

  • melkor-com
  • Новичок
  • Offline
  • Registered: 26.12.2018
  • Posts: 2

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

я скачал файл для ru srv 3 и закинул его в папку C:Program FilesOpenVPNconfig

45 Reply by Rino 27.12.2018 20:47:31

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

melkor-com wrote:

я скачал файл для ru srv 3 и закинул его в папку C:Program FilesOpenVPNconfig

В представленном вами логе информация об ошибке крайне скудна.
Там написано — Unknown error. То есть — Неизвестная ошибка.
К сожалению определить дистанционно, что именно это за ошибка, очень сложно.

46 Reply by al4akoff 07.04.2019 14:19:33

  • al4akoff
  • Новичок
  • Offline
  • Registered: 07.04.2019
  • Posts: 1

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Подскажите, кто разбирается. 
1. Мне этот VPN подойдёт для маскирования Telegram? А то мой номер мобильного постоянно банят и приходится покупать новую симку для регистрации в Telegram.
2. Как понять п.10 этой инструкции, а именно: как мне узнать, какие файлы конфигурации сервера мне нужны для работы в Telegram, чтоб его не банили, если я живу в Крыму?

47 Reply by murad.abayev 08.04.2019 09:26:59

  • murad.abayev
  • Member
  • Offline
  • Registered: 18.10.2016
  • Posts: 13

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

al4akoff wrote:

Подскажите, кто разбирается. 
1. Мне этот VPN подойдёт для маскирования Telegram? А то мой номер мобильного постоянно банят и приходится покупать новую симку для регистрации в Telegram.
2. Как понять п.10 этой инструкции, а именно: как мне узнать, какие файлы конфигурации сервера мне нужны для работы в Telegram, чтоб его не банили, если я живу в Крыму?

1. Подойдёт
2. Вас банят не только по IP (а в случае с данным VPN по IP вообще не банят), но ещё и по номеру телефона могут, т.к. номер крымский.

48 Reply by Dagoonov 01.06.2019 12:40:49

  • Dagoonov
  • Новичок
  • Offline
  • Registered: 01.06.2019
  • Posts: 1

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Скажите, а в вашем VPN трафик лимитирован? Есть ли вообще какие-то ограничения?

49 Reply by Rino 01.06.2019 13:51:21

  • Rino
  • Moderator
  • Offline
  • Registered: 20.05.2016
  • Posts: 518

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Dagoonov wrote:

Скажите, а в вашем VPN трафик лимитирован? Есть ли вообще какие-то ограничения?

Нет. На главной странице большими буквами написано: Бесплатный VPN-доступ без ограничений! smile

50 Reply by Hostden 03.10.2019 15:19:41

  • Hostden
  • Новичок
  • Offline
  • Registered: 03.10.2019
  • Posts: 1

Re: Подробная инструкция по установке клиента OpenVPN на ОС Windows

Добрый день, помогите решить проблему с подключением. Все сделал по инструкции, добавляю файл конфигурации ввожу логин и пароль, но не могу подключиться выбивает вот такую ошибку

Thu Oct 03 13:05:24 2019 DEPRECATED OPTION: —max-routes option ignored.The number of routes is unlimited as of OpenVPN 2.4. This option will be removed in a future version, please remove it from your configuration.
Thu Oct 03 13:05:24 2019 OpenVPN 2.4.7 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Apr 25 2019
Thu Oct 03 13:05:24 2019 Windows version 6.1 (Windows 7) 64bit
Thu Oct 03 13:05:24 2019 library versions: OpenSSL 1.1.0j  20 Nov 2018, LZO 2.10
Thu Oct 03 13:05:44 2019 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Thu Oct 03 13:05:44 2019 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Thu Oct 03 13:05:45 2019 TCP/UDP: Preserving recently used remote address: [AF_INET]5.149.254.26:10986
Thu Oct 03 13:05:45 2019 UDP link local: (not bound)
Thu Oct 03 13:05:45 2019 UDP link remote: [AF_INET]5.149.254.26:10986
Thu Oct 03 13:05:45 2019 WARNING: this configuration may cache passwords in memory — use the auth-nocache option to prevent this
Thu Oct 03 13:05:45 2019 VERIFY OK: depth=1, O=5b7d7da41997ee35a547c363, CN=5b7d7da41997ee35a547c364
Thu Oct 03 13:05:45 2019 VERIFY KU OK
Thu Oct 03 13:05:45 2019 Validating certificate extended key usage
Thu Oct 03 13:05:45 2019 NOTE: —mute triggered…
Thu Oct 03 13:05:45 2019 4 variation(s) on previous 3 message(s) suppressed by —mute
Thu Oct 03 13:05:45 2019 [5b7d7da41997ee35a547c36c] Peer Connection Initiated with [AF_INET]5.149.254.26:10986
Thu Oct 03 13:05:51 2019 AUTH: Received control message: AUTH_FAILED,CRV1:R:16fc10b883f34a429f4bd82b5158f0b9:bmls:Enter Pin
Thu Oct 03 13:05:51 2019 SIGUSR1[soft,auth-failure] received, process restarting
Thu Oct 03 13:06:24 2019 Outgoing Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Thu Oct 03 13:06:24 2019 Incoming Control Channel Authentication: Using 160 bit message hash ‘SHA1’ for HMAC authentication
Thu Oct 03 13:06:24 2019 TCP/UDP: Preserving recently used remote address: [AF_INET]5.149.254.26:10986
Thu Oct 03 13:06:24 2019 UDP link local: (not bound)
Thu Oct 03 13:06:24 2019 UDP link remote: [AF_INET]5.149.254.26:10986
Thu Oct 03 13:06:24 2019 VERIFY OK: depth=1, O=5b7d7da41997ee35a547c363, CN=5b7d7da41997ee35a547c364
Thu Oct 03 13:06:24 2019 VERIFY KU OK
Thu Oct 03 13:06:24 2019 Validating certificate extended key usage
Thu Oct 03 13:06:24 2019 NOTE: —mute triggered…
Thu Oct 03 13:06:24 2019 4 variation(s) on previous 3 message(s) suppressed by —mute
Thu Oct 03 13:06:24 2019 [5b7d7da41997ee35a547c36c] Peer Connection Initiated with [AF_INET]5.149.254.26:10986
Thu Oct 03 13:06:31 2019 AUTH: Received control message: AUTH_FAILED
Thu Oct 03 13:06:31 2019 SIGUSR1[soft,auth-failure] received, process restarting

Pages Previous 1 2 3 4 Next

You must login or register to post a reply

I recently added 3 Minostron coutdown timers to my house
The Specification Json is the following:
{
«result»: {
«category»: «kg»,
«functions»: [
{
«code»: «switch_1»,
«lang_config»: {
«false»: «Off»,
«true»: «On»
},
«name»: «Switch 1»,
«type»: «Boolean»,
«values»: «{}»
},
{
«code»: «countdown_1»,
«lang_config»: {
«unit»: «s»
},
«name»: «Timer 1»,
«type»: «Integer»,
«values»: «{«unit»:»s»,»min»:0,»max»:86400,»scale»:0,»step»:1}»
}
],
«status»: [
{
«code»: «switch_1»,
«lang_config»: {
«false»: «Off»,
«true»: «On»
},
«name»: «Switch 1»,
«type»: «Boolean»,
«values»: «{}»
},
{
«code»: «countdown_1»,
«lang_config»: {
«unit»: «s»
},
«name»: «Timer 1»,
«type»: «Integer»,
«values»: «{«unit»:»s»,»min»:0,»max»:86400,»scale»:0,»step»:1}»
}
]
},
«success»: true,
«t»: 1669482759658,
«tid»: «87f8e09c6dad11edb520b24a35dfa8b8»
}

I cannot add them to my localTuya in HA with the following error:
This error originated from a custom integration.

Logger: custom_components.localtuya.config_flow
Source: custom_components/localtuya/pytuya/init.py:704
Integration: LocalTuya (documentation, issues)
First occurred: 10:16:30 AM (2 occurrences)
Last logged: 10:17:05 AM

Unexpected exception
Traceback (most recent call last):
File «/config/custom_components/localtuya/config_flow.py», line 580, in async_step_configure_device
self.dps_strings = await validate_input(self.hass, user_input)
File «/config/custom_components/localtuya/config_flow.py», line 245, in validate_input
interface = await pytuya.connect(
File «/config/custom_components/localtuya/pytuya/init.py», line 704, in connect
_, protocol = await loop.create_connection(
File «/usr/local/lib/python3.10/asyncio/base_events.py», line 1064, in create_connection
raise exceptions[0]
File «/usr/local/lib/python3.10/asyncio/base_events.py», line 1049, in create_connection
sock = await self._connect_sock(
File «/usr/local/lib/python3.10/asyncio/base_events.py», line 960, in _connect_sock
await self.sock_connect(sock, address)
File «/usr/local/lib/python3.10/asyncio/selector_events.py», line 500, in sock_connect
return await fut
File «/usr/local/lib/python3.10/asyncio/selector_events.py», line 535, in _sock_connect_cb
raise OSError(err, f’Connect call failed {address}’)
OSError: [Errno 113] Connect call failed (‘192.168.69.89’, 6668)

Понравилась статья? Поделить с друзьями:
  • Unknown error 111
  • Unknown error 1004 unlock tool
  • Unknown error 1 mi unlock что это
  • Unknown error 1 azur lane
  • Unknown error 0xc007000d