mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Delete appstore directory
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
# 数据持久化路径 [必填]
|
||||
MARIADB_ROOT_PATH=/home/mariadb
|
||||
|
||||
# 连接端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=3306
|
||||
|
||||
# 管理员密码 [必填]
|
||||
MYSQL_ROOT_PASSWORD=
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
# The MariaDB configuration file
|
||||
#
|
||||
# The MariaDB/MySQL tools read configuration files in the following order:
|
||||
# 0. "/etc/mysql/my.cnf" symlinks to this file, reason why all the rest is read.
|
||||
# 1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
|
||||
# 2. "/etc/mysql/conf.d/*.cnf" to set global options.
|
||||
# 3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
|
||||
# 4. "~/.my.cnf" to set user-specific options.
|
||||
#
|
||||
# If the same option is defined multiple times, the last one will apply.
|
||||
#
|
||||
# One can use all long options that the program supports.
|
||||
# Run program with --help to get a list of available options and with
|
||||
# --print-defaults to see which it would actually understand and use.
|
||||
#
|
||||
# If you are new to MariaDB, check out https://mariadb.com/kb/en/basic-mariadb-articles/
|
||||
|
||||
#
|
||||
# This group is read both by the client and the server
|
||||
# use it for options that affect everything
|
||||
#
|
||||
[client-server]
|
||||
# Port or socket location where to connect
|
||||
# port = 3306
|
||||
socket = /run/mysqld/mysqld.sock
|
||||
|
||||
# Import all .cnf files from configuration directory
|
||||
|
||||
!includedir /etc/mysql/mariadb.conf.d/
|
||||
!includedir /etc/mysql/conf.d/
|
||||
@@ -1,24 +0,0 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/mariadb"
|
||||
edit: true
|
||||
envKey: MARIADB_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 3306
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: 连接端口
|
||||
labelEn: Connection Port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
envKey: MYSQL_ROOT_PASSWORD
|
||||
labelZh: 管理员密码
|
||||
labelEn: Admin Password
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
||||
@@ -1,20 +0,0 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mariadb:
|
||||
container_name: mariadb
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
image: mariadb:11.6.2
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:3306
|
||||
restart: always
|
||||
volumes:
|
||||
- ${MARIADB_ROOT_PATH}/data:/var/lib/mysql
|
||||
- ${MARIADB_ROOT_PATH}/config/my.cnf:/etc/mysql/my.cnf
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -1,25 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
mkdir -p "$MARIADB_ROOT_PATH"
|
||||
mkdir -p "$MARIADB_ROOT_PATH/config"
|
||||
mkdir -p "$MARIADB_ROOT_PATH/data"
|
||||
|
||||
cp ./config/my.cnf "$MARIADB_ROOT_PATH/config/my.cnf"
|
||||
|
||||
chown -R 1000:1000 "$MYSQL_ROOT_PATH"
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,24 +0,0 @@
|
||||
# MariaDB
|
||||
|
||||
MariaDB 服务器是社区开发的 MySQL 服务器分支。
|
||||
|
||||
MariaDB 由原始 MySQL 团队的核心成员发起,积极与外部开发人员合作,提供业界功能最丰富、最稳定且许可合理的开放 SQL 服务器。
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
MariaDB是MySQL关系数据库管理系统的一个分叉,由社区开发,有商业支持,旨在继续保持在GNU GPL下开源。
|
||||
MariaDB的开发是由MySQL的一些原始开发者领导的,他们担心甲骨文公司收购MySQL后会有一些隐患。
|
||||
|
||||
MariaDB打算保持与MySQL的高度兼容性,与MySQL API和命令精确匹配。MariaDB自带了一个新的存储引擎Aria,它可以替代MyISAM,成为默认的事务和非事务引擎。
|
||||
它最初使用XtraDB作为默认存储引擎,并从10.2版本切换回InnoDB。
|
||||
|
||||
MariaDB的API和协议兼容MySQL,另外又添加了一些功能,以支持原生的非阻塞操作和进度报告。这意味着,所有使用MySQL的连接器、程序库和应用程序也将可以在MariaDB下工作。
|
||||
在此基础上,由于担心甲骨文MySQL的一个更加封闭的软件项目,Fedora等Linux发行版已经在最新版本中以MariaDB取代MySQL,维基媒体基金会的服务器同样也使用MariaDB取代了MySQL。
|
||||
|
||||
---
|
||||
|
||||

|
||||
@@ -1,14 +0,0 @@
|
||||
additionalProperties:
|
||||
key: mariadb
|
||||
name: MariaDB
|
||||
tags:
|
||||
- Database
|
||||
- Local
|
||||
shortDescZh: 开源关系数据库管理系统
|
||||
shortDescEn: Open source relational database management system
|
||||
type: runtime
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://mariadb.org/
|
||||
github: https://github.com/MariaDB/server
|
||||
document: https://mariadb.org/documentation/
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 24 KiB |
Reference in New Issue
Block a user