amdei
amdei
Consider following case: Few (let's say 3) nodes in a cluster, with master-master replication. Each node has it's own queue with name, unique in cluster. As each tube need to...
What I have: 1. VMWare ESXi Cluster 2. More than dozen of hosts in that cluster for VMs 3. Each server host more that hundred VMs 4. Each server has...
TL;DR: It works! (With some limitations at the moment though, as this is work in progress currently) ``` git clone .... cd fpm python3 -m pip install importlib_metadata ruby bin/fpm...
Bazelisk crashes with exit code 37 on attempt to run [remote compilation](https://github.com/envoyproxy/envoy/blob/2d259e934a429667f0145ce16d829624856dbf47/bazel/README.md#building-envoy-with-remote-execution) of [envoy](https://github.com/envoyproxy/envoy) proxy server. **Platform:** Linux Debian 11, amd64. Bazelisk [installed as bazel](https://github.com/envoyproxy/envoy/blob/2d259e934a429667f0145ce16d829624856dbf47/bazel/README.md#installing-bazelisk-as-bazel): ``` # bazel version Bazelisk...
This code: ``` local tnt = require 'tarantool' local tar, err = tnt:new({...}) ``` giving this error: ``` runtime error: /opt/lua/res_access.lua:33: attempt to index local 'tnt' (a boolean value) ```...
How can I get SourceIP, obtained by this module on user-level code?
Debian 10 Buster x64 ``` # gcc --version gcc (Debian 8.3.0-6) 8.3.0 ``` Debian `hardening-check` tool complains on default build result like that: ``` # hardening-check /opt/luajit21/bin/luajit-2.1.0-beta3 /opt/luajit21/bin/luajit-2.1.0-beta3: Position Independent...
Debian 10 Buster x64 ``` # gcc --version gcc (Debian 8.3.0-6) 8.3.0 ``` On clean system: ``` git clone https://github.com/openresty/luajit2.git cd luajit2 git checkout v2.1-20200102 export LUAJIT_PREFIX=/opt/luajit21 export LUAJIT_COMMON_XCFLAGS="-DLUA_USE_APICHECK -DLUA_USE_ASSERT...
This example: ``` export LUAJIT_PREFIX=/opt/my-opt export LUAJIT_COMMON_TESTS_XCFLAGS="-DLUA_USE_APICHECK -DLUA_USE_ASSERT -DLUAJIT_NUMMODE=2 -O1" # For amd64 only! export LUAJIT_EXTRA_XCFLAGS="-msse4.2" export LUAJIT_EXTRA_TESTS_XCFLAGS="-DLUAJIT_ENABLE_LUA52COMPAT" export LUAJIT_XCFLAGS="$LUAJIT_COMMON_TESTS_XCFLAGS $LUAJIT_EXTRA_XCFLAGS $LUAJIT_EXTRA_TESTS_XCFLAGS" export LUA52=1 export CFLAGS="--param=ssp-buffer-size=4 -Wformat -Werror=format-security -Werror=implicit-function-declaration -Winit-self...