".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
如果您当前拥有的网站不支持安装在服务器上的MariaDB数据库版本时,您通常需要升级或降级该数据库版本。本文将介绍下[Hostinger](/#)国外VPS升级或降级MariaDB数据库的方法步骤。
1、备份数据库
首先,使用SSH工具连接到Hostinger[国外VPS](/#),如果使用的是CyberPanel控制面板,则可通过在该控制面板中查看到服务器及数据库信息。然后,执行下面命令。
> cat .db\_password
运行以下命令创建全新备份。
> mysqldump -u root -p –all-databases > databasedump.sql
2、更改MariaDB版本
如果您之前已经备份过数据库,则可以移除原有MariaDB数据库,然后添加MariaDB YUM存储库。
> /etc/yum.repos.d/MariaDB.repo
更新数据库文件。
\[mariadb\]
name = MariaDB
baseurl = http://yum.mariadb.org/10.4/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
接下来,更新yum缓存索引。
> yum makecache fast
安装新版本的MariaDB。
> yum install MariaDB-server MariaDB-client
启用MariaDB数据库。
> systemctl start mariadb
开启MariaDB数据库。
> systemctl enable mariadb
进行安全安装。
> mysql\_secure\_installation
3、导入数据库
最后,导入数据库备份。
> mysql -u root -p root < databasedump.sql重新启动MariaDB数据库,如无意外,MariaDB版本将更新成功。> systemctl restart mariadb"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/102907.html