Server Operation Techniques
Using a PC as a proxy to access external networks from a server
1. Start a proxy on the PC, such as nginx
Download nginx: http://nginx.org/en/download.html
Modify the configuration file in the conf directory:
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
...
Posted on Thu, 23 Jul 2026 16:27:35 +0000 by DaveTomneyUK
Implementing Multithreaded Servers in Linux Using POSIX Threads
Creating Basic Threads in Linux
To implement mlutithreading in Linux, we use the POSIX threads library (pthread.h). Here's a basic example:
#include <iostream>
#include <pthread.h>
#include <unistd.h>
void* worker_function(void* data);
int main() {
pthread_t worker_id;
int thread_data = 5;
if(pthread_create( ...
Posted on Tue, 07 Jul 2026 16:26:08 +0000 by Dima
Deploying Zabbix: A Comprehensive Guide to Server and Agent Installation
Introduction to Zabbix
Zabbix is a powerful, enterprise-grade open-source solution designed for distributed system and network monitoring. It provides a web-based interface for comprehensive oversight of network parameters, ensuring the secure operation of server systems. Zabbix offers flexible notification mechanisms, enabling administrators t ...
Posted on Tue, 16 Jun 2026 16:16:56 +0000 by jefffan24