search:
News
Articles
Tech Tools
Subscribe
Archive
Whitepapers
Digisub
Write for Us!
Newsletter
Shop
DevOps
Cloud Computing
Virtualization
HPC
Linux
Windows
Security
Monitoring
Databases
all Topics...
Search
Login
Search
Spell check suggestion:
%xcode"5432 08 Llorente 12
?
Refine your search
Sort order
Date
Score
Content type
Article (Print)
(7)
Article
(1)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
100%
Automating deployments on Proxmox with OpenTofu and cloud-init
04.12.2024
Home
»
Articles
»
Rubén
Llorente
... vm_id = 100
08
} 09 10 network_device { 11 model = "virtio"
12
bridge = "vmbr0" 13 } 14 15 depends_on = [ 16 proxmox_virtual_environment_file.rproxy_cloud_config, 17 proxmox
99%
Automating command execution across servers
01.06.2024
Home
»
Archive
»
2024
»
Issue 81: Load...
»
Rubén
Llorente
... : 04 cmd: | 05 echo "Here you are, a bone!" 06 target: 07 tags: [dog]
08
horsefeeding: 09 cmd: | 10 echo "Take an apple, you good horsey!" 11 target:
12
tags
23%
Single sign-on like the big guys
20.06.2022
Home
»
Archive
»
2022
»
Issue 69: Terra...
»
_ADMIN=admin 10 - KEYCLOAK_ADMIN_PASSWORD=SOME_PASSWORD 11 - KC_DB=postgres
12
- KC_DB_URL=jdbc:postgresql://postgres:
5432
/keycloak 13 - KC_DB_USERNAME=postgres 14 - KC
23%
Get the best out of your bandwidth with tc
30.11.2025
Home
»
Archive
»
2012
»
Issue 10: Traff...
»
ffff: ingress 05 # Bind the Ingress qdisc 06 tc qdisc add dev $DEV handle ffff: ingress 07 # First LAN Machine INBOUND
08
tc filter add dev $DEV parent ffff: protocol ip prio 1 u32 match ip dst
12
23%
Asynchronous PostgreSQL
12.09.2013
Home
»
Archive
»
2013
»
Issue 16: Docker
»
CREATE OR REPLACE FUNCTION burncpu (tm INTERVAL) 02 RETURNS INTERVAL AS $CODE$ 03 DECLARE 04 stmp TIMESTAMP := now()+tm; 05 i INT; 06 BEGIN 07 WHILE clock_timestamp()
08 i:=1; 09
22%
PostgreSQL 9.3
04.02.2014
Home
»
Articles
»
^
08
HINT: There is an entry for table "a", but it cannot be referenced from this part of the query. 09 10 11 # But LATERAL makes this join correct:
12
13
14 SELECT 15 a.id, a.name, t
22%
New in PostgreSQL 9.3
09.01.2013
Home
»
Archive
»
2013
»
Issue 18: New W...
»
OR REPLACE FUNCTION public.deny_alter_table() 02 RETURNS event_trigger 03 LANGUAGE plpgsql 04 AS $function$ 05 BEGIN 06 07 RAISE EXCEPTION '% is disabled', TG_TAG;
08
09 END; 10 $function$ 11
12
22%
Kubernetes StatefulSet
05.02.2023
Home
»
Archive
»
2023
»
Issue 73: Datab...
»
06 labels: 07 app: mariadb
08
spec: 09 type: NodePort 10 ports: 11 - port: 3306
12
protocol: TCP 13 selector: 14 app: mariadb 15 --- 16 apiVersion: v1 17 kind: Config