x
小菜菜
当岁月都已失去,偶然与过往相遇,我们还能哼唱出年少的旋律。
小菜菜 @xiaocaicai · 注册于 2026-09-18 · 558 博文 · 0 帖子 · 0 回复
How To Install MariaDB on CentOS 7
# Introduction MariaDB is an open-source database management system, commonly installed as part of the popular LEMP (Linux, Nginx, MySQL/MariaDB, PHP/Python/...
Starting MySQL On Low Memory Virtual Machines
Cloud computing makes it very affordable to get your own private virtual server on the Internet. Digital Ocean offers an entry level droplet for USD$5 per mo...
Mysql cannot allocate memory for the buffer pool 解决方法
问题出现原因 昨晚我修改了数据库,为字段添加了”FULLTEXT”索引,结果今天早上发现数据库连不上了,也没法重启,于是查看日志文件: ``` cat /var/log/mysqld.log ``` ...
Spring Data JPA 手动释放当前数据库会话
公司一次项目事故,项目在正常测试时没有问题,在实际生产并发场景下发生了线程锁死的状况。 后来分析原因,项目中在数据库查询时使用了多线程的写法。项目使用Spring D...
Mysql Error:The user specified as a definer (‘mysql.infoschema’@’localhost’) does not exist’ when trying to dump tablespaces
我的MYSQL 使用Docker进行部署的,当我进行版本升级(MySQL 5.7 to MySQL 8.0)之后,尝试进行连接的时候就会报这个错误。 解决办法: (~~来源https://dev.mysql.com/d...
在 Docker 中配置时区
FROM busybox MAINTAINER CaiZhongzhen RUN echo “Asia/Shanghai” > /etc/timezone RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN dpkg-reconfigu...
自定义 Docker-Compose创建的网络网段
某些时候,docker-compose创建的默认网络可能和你现有的内网网络有地址冲突,通过以下网上可以定制创建网络的网段来规避这个问题。 ``` version : '3' services: nginx:...
使用Netcat在两台服务器之间传输文件
To send a directory, cd to inside the directory whose contents you want to send on the computer doing the sending and do: tar -cz . | nc -q 10 -l -p 45454 On...
NetCat的一些小技巧
# 功能超级强大的网络工具netcat A机器执行 nc -l 1234 B机器执行 nc a-ip 1234 AB之间就可以联通了, 可以当聊天工具用。 A机器执行 nc -l 1234 -e /bin/bash -k B机器...
portainer的二次开发
``` 一、准备环境 依赖:Docker, Node.js >= 0.8.4 和 npm [root@dev_08 ~]# curl --silent --location https://rpm.nodesource.com/setup_7.x | sudo bash - [root@dev...