Tag: DevOps
The Network Time Protocol (NTP) can be installed via: sudo apt install ntp The configuration for the NTP server (time synchronization) is located at: /etc/ntp.conf. In Network Time Protocol …
The apache server logs the access requests in /var/log/apache2 so we can analyse this log file to find out the last few requests. The following parses the apache2 server …
SQL is the language to interact with databases, so we need to make them as fast as possible as the Database Operations may usually be expensive. Use indexes Indices …
To create a Python script that manages MySQL database, we would typically need to perform operations such as connect to a MySQL server, create a database, create a table, …
When we talk stuff related to SQL Server and database, Recovery is an imperative objective that one shouldn’t underestimate. With Microsoft SQL Server, there are three different Recovery Models …