是的,wordpress的镜像,然后里面内置的宝塔面板,配置文件的内容:
[mysqld]
binlog_cache_size = 64K
thread_stack = 256K
join_buffer_size = 1024K
read_rnd_buffer_size = 512K
read_buffer_size = 768K
sort_buffer_size = 768K
thread_cache_size = 64
table_open_cache = 128
query_cache_type = 1
max_connections = 100
innodb_log_buffer_size = 10M
innodb_buffer_pool_size = 256M
max_heap_table_size = 64M
tmp_table_size = 64M
query_cache_size = 64M
key_buffer_size = 128M
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
|