".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)'); } }) })
日常工作中,我们有时要进行远程连接数据库操作,那么配置MySQL允许远程连接的方法步骤有哪些?这里以[Hostinger](/#)虚拟主机为例,下面来看下相关操作介绍。
购买过Hostinger[美国虚拟主机](/#)(的用户都知道,它提供有功能强大的hPanel控制面板,管理虚拟主机和站点非常方便。要设置MySQL允许远程连接访问的话,首先我们登录到Hostinger账户,以访问hPanel面板,然后在面板管理页面,导航到Databases部分,选择Remote MySQL。
![](https://www.idcspy.com/wp-content/uploads/2021/09/72.jpg)
在弹出的新窗口页面中,我们会看到IP (IPv4 or IPv6)字段,这里可以填写允许远程连接的IP地址。如果想所有IP地址均可远程连接到MySQL数据库,则选中复选框Any Host。
![](https://www.idcspy.com/wp-content/uploads/2021/09/71.jpg)
相关信息设置完毕后,点击Create按钮,以允许远程连接数据库。要注意的是,远程连接数据库要求使用MySQL服务器主机名,该主机名可以在Remote MySQL页面查看。
![](https://www.idcspy.com/wp-content/uploads/2021/09/73.jpg)
以上是在Hostinger虚拟主机上设置MySQL允许远程连接的方法步骤介绍,步骤还是比较简单的,感兴趣的朋友可以尝试操作下。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105082.html