You've already forked documentation
mirror of
https://github.com/armbian/documentation.git
synced 2026-01-06 10:13:36 -08:00
Automatic documentation update
This commit is contained in:
@@ -4,6 +4,73 @@ comments: true
|
||||
|
||||
# SQL database servers and web interface managers
|
||||
|
||||
## PostgreSQL
|
||||
|
||||
|
||||
PostgreSQL install
|
||||
|
||||
|
||||
<!--- header START from tools/include/markdown/PGSQL1-header.md --->
|
||||
PostgreSQL is a powerful, open-source object-relational database system known for its robustness, feature richness, and reliability.
|
||||
|
||||
It is designed for everyone, including:
|
||||
|
||||
- Developers needing advanced SQL support and extensibility.
|
||||
- System administrators requiring reliable data storage for mission-critical applications.
|
||||
- Enterprises seeking a high-performance, standards-compliant relational database.
|
||||
|
||||
PostgreSQL offers strong ACID compliance, concurrency, rich data types, full-text search, JSON support, and extensibility through stored procedures and custom functions.
|
||||
It is trusted globally in financial, government, and web-scale applications.
|
||||
|
||||
Thanks to its proven architecture and open-source nature, PostgreSQL fits seamlessly in projects of all sizes.
|
||||
|
||||
<!--- header STOP from tools/include/markdown/PGSQL1-header.md --->
|
||||
|
||||
**Author:** @armbian
|
||||
|
||||
**Status:** Stable
|
||||
|
||||
|
||||
~~~ custombash
|
||||
armbian-config --cmd PGSQL1
|
||||
~~~
|
||||
|
||||
|
||||
<!--- footer START from tools/include/markdown/PGSQL1-footer.md --->
|
||||
=== "Access to the database"
|
||||
|
||||
PostgreSQL is accessible via port **5432**:
|
||||
|
||||
- Host: `postgresql://<your.IP>:5432`
|
||||
- Default user: `armbian`
|
||||
- Default password: `armbian`
|
||||
- Default database: `armbian`
|
||||
|
||||
=== "Directories"
|
||||
|
||||
- Data directory: `/armbian/postgres/data`
|
||||
|
||||
=== "View logs"
|
||||
|
||||
```sh
|
||||
docker logs -f postgres
|
||||
```
|
||||
|
||||
<!--- footer STOP from tools/include/markdown/PGSQL1-footer.md --->
|
||||
|
||||
|
||||
~~~ bash title="PostgreSQL remove:"
|
||||
armbian-config --cmd PGSQL2
|
||||
~~~
|
||||
|
||||
|
||||
~~~ bash title="PostgreSQL purge with data folder:"
|
||||
armbian-config --cmd PGSQL3
|
||||
~~~
|
||||
|
||||
|
||||
|
||||
|
||||
## Mariadb
|
||||
|
||||
|
||||
@@ -67,6 +134,74 @@ armbian-config --cmd DAT003
|
||||
|
||||
|
||||
|
||||
## Redis
|
||||
|
||||
|
||||
Redis install
|
||||
|
||||
|
||||
<!--- section image START from tools/include/images/REDIS1.png --->
|
||||
[](#)
|
||||
<!--- section image STOP from tools/include/images/REDIS1.png --->
|
||||
|
||||
|
||||
<!--- header START from tools/include/markdown/REDIS1-header.md --->
|
||||
Redis is an open-source, in-memory data structure store, used as a database, cache, and message broker.
|
||||
It supports a variety of data structures such as strings, hashes, lists, sets, and sorted sets.
|
||||
|
||||
**Key Features:**
|
||||
- Extremely fast performance with in-memory storage
|
||||
- Persistence options (snapshotting and AOF)
|
||||
- Pub/Sub messaging capabilities
|
||||
- Built-in replication and high availability
|
||||
- Simple API and wide client support
|
||||
|
||||
Redis is widely used for real-time applications, caching layers, session stores, and lightweight queues across industries and platforms.
|
||||
|
||||
<!--- header STOP from tools/include/markdown/REDIS1-header.md --->
|
||||
|
||||
**Author:** @igorpecovnik
|
||||
|
||||
**Status:** Stable
|
||||
|
||||
|
||||
~~~ custombash
|
||||
armbian-config --cmd REDIS1
|
||||
~~~
|
||||
|
||||
|
||||
<!--- footer START from tools/include/markdown/REDIS1-footer.md --->
|
||||
=== "Access to the service"
|
||||
|
||||
Redis server is accessible on port **6379**:
|
||||
|
||||
- Host: `redis://<your.IP>:6379`
|
||||
|
||||
=== "Directories"
|
||||
|
||||
- Data directory: `/armbian/redis/data`
|
||||
|
||||
=== "View logs"
|
||||
|
||||
```sh
|
||||
docker logs -f redis
|
||||
```
|
||||
|
||||
<!--- footer STOP from tools/include/markdown/REDIS1-footer.md --->
|
||||
|
||||
|
||||
~~~ bash title="Redis remove:"
|
||||
armbian-config --cmd REDIS2
|
||||
~~~
|
||||
|
||||
|
||||
~~~ bash title="Redis purge with data folder:"
|
||||
armbian-config --cmd REDIS3
|
||||
~~~
|
||||
|
||||
|
||||
|
||||
|
||||
## phpMyAdmin
|
||||
|
||||
|
||||
|
||||
@@ -1347,6 +1347,73 @@ armbian-config --cmd JEL003
|
||||
|
||||
## SQL database servers and web interface managers
|
||||
|
||||
#### PostgreSQL
|
||||
|
||||
|
||||
PostgreSQL install
|
||||
|
||||
|
||||
<!--- header START from tools/include/markdown/PGSQL1-header.md --->
|
||||
PostgreSQL is a powerful, open-source object-relational database system known for its robustness, feature richness, and reliability.
|
||||
|
||||
It is designed for everyone, including:
|
||||
|
||||
- Developers needing advanced SQL support and extensibility.
|
||||
- System administrators requiring reliable data storage for mission-critical applications.
|
||||
- Enterprises seeking a high-performance, standards-compliant relational database.
|
||||
|
||||
PostgreSQL offers strong ACID compliance, concurrency, rich data types, full-text search, JSON support, and extensibility through stored procedures and custom functions.
|
||||
It is trusted globally in financial, government, and web-scale applications.
|
||||
|
||||
Thanks to its proven architecture and open-source nature, PostgreSQL fits seamlessly in projects of all sizes.
|
||||
|
||||
<!--- header STOP from tools/include/markdown/PGSQL1-header.md --->
|
||||
|
||||
**Author:** @armbian
|
||||
|
||||
**Status:** Stable
|
||||
|
||||
|
||||
~~~ custombash
|
||||
armbian-config --cmd PGSQL1
|
||||
~~~
|
||||
|
||||
|
||||
<!--- footer START from tools/include/markdown/PGSQL1-footer.md --->
|
||||
=== "Access to the database"
|
||||
|
||||
PostgreSQL is accessible via port **5432**:
|
||||
|
||||
- Host: `postgresql://<your.IP>:5432`
|
||||
- Default user: `armbian`
|
||||
- Default password: `armbian`
|
||||
- Default database: `armbian`
|
||||
|
||||
=== "Directories"
|
||||
|
||||
- Data directory: `/armbian/postgres/data`
|
||||
|
||||
=== "View logs"
|
||||
|
||||
```sh
|
||||
docker logs -f postgres
|
||||
```
|
||||
|
||||
<!--- footer STOP from tools/include/markdown/PGSQL1-footer.md --->
|
||||
|
||||
|
||||
~~~ bash title="PostgreSQL remove:"
|
||||
armbian-config --cmd PGSQL2
|
||||
~~~
|
||||
|
||||
|
||||
~~~ bash title="PostgreSQL purge with data folder:"
|
||||
armbian-config --cmd PGSQL3
|
||||
~~~
|
||||
|
||||
|
||||
|
||||
|
||||
#### Mariadb
|
||||
|
||||
|
||||
@@ -1410,6 +1477,74 @@ armbian-config --cmd DAT003
|
||||
|
||||
|
||||
|
||||
#### Redis
|
||||
|
||||
|
||||
Redis install
|
||||
|
||||
|
||||
<!--- section image START from tools/include/images/REDIS1.png --->
|
||||
[](#)
|
||||
<!--- section image STOP from tools/include/images/REDIS1.png --->
|
||||
|
||||
|
||||
<!--- header START from tools/include/markdown/REDIS1-header.md --->
|
||||
Redis is an open-source, in-memory data structure store, used as a database, cache, and message broker.
|
||||
It supports a variety of data structures such as strings, hashes, lists, sets, and sorted sets.
|
||||
|
||||
**Key Features:**
|
||||
- Extremely fast performance with in-memory storage
|
||||
- Persistence options (snapshotting and AOF)
|
||||
- Pub/Sub messaging capabilities
|
||||
- Built-in replication and high availability
|
||||
- Simple API and wide client support
|
||||
|
||||
Redis is widely used for real-time applications, caching layers, session stores, and lightweight queues across industries and platforms.
|
||||
|
||||
<!--- header STOP from tools/include/markdown/REDIS1-header.md --->
|
||||
|
||||
**Author:** @igorpecovnik
|
||||
|
||||
**Status:** Stable
|
||||
|
||||
|
||||
~~~ custombash
|
||||
armbian-config --cmd REDIS1
|
||||
~~~
|
||||
|
||||
|
||||
<!--- footer START from tools/include/markdown/REDIS1-footer.md --->
|
||||
=== "Access to the service"
|
||||
|
||||
Redis server is accessible on port **6379**:
|
||||
|
||||
- Host: `redis://<your.IP>:6379`
|
||||
|
||||
=== "Directories"
|
||||
|
||||
- Data directory: `/armbian/redis/data`
|
||||
|
||||
=== "View logs"
|
||||
|
||||
```sh
|
||||
docker logs -f redis
|
||||
```
|
||||
|
||||
<!--- footer STOP from tools/include/markdown/REDIS1-footer.md --->
|
||||
|
||||
|
||||
~~~ bash title="Redis remove:"
|
||||
armbian-config --cmd REDIS2
|
||||
~~~
|
||||
|
||||
|
||||
~~~ bash title="Redis purge with data folder:"
|
||||
armbian-config --cmd REDIS3
|
||||
~~~
|
||||
|
||||
|
||||
|
||||
|
||||
#### phpMyAdmin
|
||||
|
||||
|
||||
|
||||
BIN
docs/images/REDIS1.png
Normal file
BIN
docs/images/REDIS1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.6 KiB |
Reference in New Issue
Block a user