Hướng dẫn cấu hình crontab chạy 15 phút mỗi lần trên Linux
Crontab cơ bản là gì ? Cron là một dịch vụ giúp đặt lịch thực hiện tiến trình tự động theo một khung thời gian được thiết lập cụ thể trên Linux, ví dụ như 1 lần 1 ngày, mỗi giờ…
knowledge IT
Crontab cơ bản là gì ? Cron là một dịch vụ giúp đặt lịch thực hiện tiến trình tự động theo một khung thời gian được thiết lập cụ thể trên Linux, ví dụ như 1 lần 1 ngày, mỗi giờ…
1. Trường hợp 1 Nếu bạn truy cập vào phpMyAdmin và gặp thông báo lỗi giống như ảnh và mô tả bên dưới. Thì thông báo này có nghĩa là bạn không thể tạo session php để phục vụ cho…
Cài đặt FTP server (VSFTPD) trên CentOS Stream 9 # Cài đặt vsftpd thông qua dnf dnf install vsftpd -y systemctl start vsftpd systemctl enable vsftpd systemctl status vsftpd # Cho phép người dùng kết nối với server thông qua…
As of 16 Feb 2023 it is not yet possible to install OpenLitespeed on Rocky 9 with 'dnf' due to missing dependencies. First of all, please check this post as the problem might have been fixed by the time you read this guide. If…
Cài đặt PHP Bước 1: Cài đặt REMI Repository sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm Bước 2: Tiến hành tìm kiếm các repo chứa bản PHP mà chúng ta cần yum --disablerepo="*" --enablerepo="remi-safe" list php.x86_64 Chúng ta có thể thấy có rất…
Creating the Certificate Authority's Certificate and Keys Generate a private key for the CA:$ openssl genrsa 2048 > ca-key.pem Generate the X509 certificate for the CA:$ openssl req -new -x509 -nodes -days 365000 \ -key ca-key.pem \ -out ca-cert.pem Creating…
Step 1: Installing PostgreSQL on RHEL 9 1. First, disable the built-in PostgreSQL module by running the following dnf command. # dnf -qy module disable postgresql 2. Next, enable the official PostgreSQL Yum Repository as shown. # dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm Install PostgreSQL Repository 3. Next, install the PostgreSQL…
Usage: $ turnserver [flags] [-n | -c <config-file>] [ --db=<sqlite-db-file> | --userdb=<sqlite-db-file> | --psql-userdb=<db-conn-string> | --mysql-userdb=<db-conn-string> | --mongo-userdb=<db-conn-string> | --redis-userdb=<db-conn-string> ] [options] $ turnserver -h Flags: -v, --verbose 'Moderate' verbose mode. -V, --Verbose 'Extra' verbose mode, very annoying and not recommended. -o, --daemon Run server process…
Learn how to configure your own stun/turn server using coturn in Ubuntu 18.04 from scratch. On the last days, we needed to implement a WebRTC based videoconference application using PeerJS with Node.js. As mentioned on the official notes of getting started with…
It is recommended to run your own TURN server on a server with a direct Internet connection / public IP. A free and open source TURN server implementation is available at https://github.com/coturn/coturn - all examples below assume that you use coturn. Coturn…