The databases under Linux include: 1. Oracle; 2. MySQL; 3. MariaDB; 4. SQL Server; 5. Memcached, "Key-Value" type database; 6. Redis, "Key-Value" type Database; 7. MongoDB, etc.
The operating environment of this tutorial: Red Hat Enterprise Linux 6.1 system, Dell G3 computer.
What is a database?
A database is a warehouse that stores computer data. This warehouse organizes and stores data according to a certain data structure (data structure refers to the organizational form of data or the relationship between data). It can be Databases provide a variety of methods to manage the data within them.
Common relational databases under Linux
1. Oracle Database
Oracle, formerly known as SDL, was founded in 1977 by Larry Ellison and two other programmers. They developed their own flagship products and sold them in large quantities on the market. , In 1979, Oracle introduced the first commercial SQL relational database management system. Oracle is one of the earliest vendors to develop relational databases, and its products support the widest range of operating system platforms. Currently, Oracle's relational database products have one of the highest market shares.
Oracle (Oracle) is currently the world's largest database software company, and it is also a software provider and service provider with extremely rapid business growth in recent years.
Main application scope: traditional large enterprises, large companies, government, finance, securities, etc.
2. MySQL database
3、MariaDB Database
4、SQL Server database
Microsoft SQL Server It is a large-scale relational database system developed by Microsoft. 1987 In , Microsoft and IBM Completed cooperative development become OS/2 , IBM in which it is sold OS/2 Extended Edition Bind in the system OS/2 DatabaseManager , and micro There is still a lack of database products in the soft product line. To this end, Microsoft has set its sights on Sybase ,same Sybase signed a cooperation agreement to enable use Sybase The technology development is based on OS/2 The platform’s relational database. 1989 In , Microsoft released SQLServer1.0 Version. SQL Server It has comprehensive functions and high efficiency, and can be used as a database platform for medium-sized enterprises or units. SQL Server Can Windows The operating system is tightly integrated, both in terms of application development speed and system transaction processing operation. The running speed can be greatly improved. SQL Server The disadvantage of is that it can only be used in Windows system.
Main application scope: Some corporate e-commerce (CCTV shopping), use windows Server platform enterprise.
Non-relational database management systems commonly used under Linux
1. Memcached (Key-Value)
Memcached is an open source, high-performance caching system with distributed memory objects. It can reduce database load and accelerate dynamic Web Application, originally released by LiveJoumal of Brad Fitzpatrick exist 2003 Years of development completed. Currently, many users around the world are using it to build their own large-load websites or improve the response speed of their high-visited websites. Spend. Notice: Memcache is the name of this project, and Memcached is the main program file name on the server side.
The cache is generally used to save some frequently accessed objects or data (for example, the browser will cache frequently visited web pages. ), accessing objects or data through cache is much faster than accessing on disk. The former is memory and the latter is disk. Memcached is a pure memory caching system that caches frequently accessed objects or data in Memcached In the memory of , These cached data are passed by the program API is accessed in the form of , Memcached The data inside is like a huge HASH
Table, data starts with Key-Value The right way exists. Memcached By caching frequently accessed objects or data, it reduces the pressure of frequently reading the database and improves the response speed of the website. .
Official: http://Memcached.org/
Since Memcached is a pure memory caching software, all data will be lost once restarted. Therefore, Sina has developed an open source project MemcacheDB based on Memcached. By adding Berkeley DB's persistent storage mechanism and asynchronous primary and secondary replication mechanisms to Memcached, Memcached has transaction recovery capabilities, persistent data storage capabilities, and distributed replication capabilities. However, in recent years, it has been gradually replaced by other persistence products, such as Redis.
2. Redis (Key-Value)
Redis is a Key-Value type storage system. However, Redis supports relatively more storage value types, including string (string), list (linked list), set (collection) and zset (ordered set), etc. These data types support push/pop, add/remove, intersection, union, difference and richer operations, and these operations are all atomic. On this basis, Redis supports various different ways of sorting. Like Memcached, Redis data is cached in memory to ensure efficiency. The difference is that Redis will periodically write updated data to disk or write modification operations to additional record files, and on this basis, Master-Slave (master-slave) synchronization is achieved.
Redis is a high-performance Key-Value database. The emergence of Redis has largely compensated for the shortcomings of Key-Value storage such as Memcached, and can be a good supplement to relational databases in some situations. It provides PythonRuby, Erlang, and PHP clients, which are very convenient to use.
Official: http://www.Redis.io/documentation
Features:
##3. MongoDB (Document-Web)
Linux Video Tutorial"
The above is the detailed content of What are the databases under Linux?. For more information, please follow other related articles on the PHP Chinese website!

Maintenance mode is a special operating level entered in Linux systems through single-user mode or rescue mode, and is used for system maintenance and repair. 1. Enter maintenance mode and use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can check and repair the file system and use the command "fsck/dev/sda1". 3. Advanced usage includes resetting the root user password, mounting the file system in read and write mode and editing the password file.

Maintenance mode is used for system maintenance and repair, allowing administrators to work in a simplified environment. 1. System Repair: Repair corrupt file system and boot loader. 2. Password reset: reset the root user password. 3. Package management: Install, update or delete software packages. By modifying the GRUB configuration or entering maintenance mode with specific keys, you can safely exit after performing maintenance tasks.

Linux network configuration can be completed through the following steps: 1. Configure the network interface, use the ip command to temporarily set or edit the configuration file persistence settings. 2. Set up a static IP, suitable for devices that require a fixed IP. 3. Manage the firewall and use the iptables or firewalld tools to control network traffic.

Maintenance mode plays a key role in Linux system management, helping to repair, upgrade and configuration changes. 1. Enter maintenance mode. You can select it through the GRUB menu or use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can perform file system repair and system update operations. 3. Advanced usage includes tasks such as resetting the root password. 4. Common errors such as not being able to enter maintenance mode or mount the file system, can be fixed by checking the GRUB configuration and using the fsck command.

The timing and reasons for using Linux maintenance mode: 1) When the system starts up, 2) When performing major system updates or upgrades, 3) When performing file system maintenance. Maintenance mode provides a safe and controlled environment, ensuring operational safety and efficiency, reducing impact on users, and enhancing system security.

Indispensable commands in Linux include: 1.ls: list directory contents; 2.cd: change working directory; 3.mkdir: create a new directory; 4.rm: delete file or directory; 5.cp: copy file or directory; 6.mv: move or rename file or directory. These commands help users manage files and systems efficiently by interacting with the kernel.

In Linux, file and directory management uses ls, cd, mkdir, rm, cp, mv commands, and permission management uses chmod, chown, and chgrp commands. 1. File and directory management commands such as ls-l list detailed information, mkdir-p recursively create directories. 2. Permission management commands such as chmod755file set file permissions, chownuserfile changes file owner, and chgrpgroupfile changes file group. These commands are based on file system structure and user and group systems, and operate and control through system calls and metadata.

MaintenanceModeinLinuxisaspecialbootenvironmentforcriticalsystemmaintenancetasks.Itallowsadministratorstoperformtaskslikeresettingpasswords,repairingfilesystems,andrecoveringfrombootfailuresinaminimalenvironment.ToenterMaintenanceMode,interrupttheboo


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver Mac version
Visual web development tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
