VirtualBox 虚拟机 Ubuntu 磁盘扩容
ytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/mapper/ubuntu--may--vg-root: 3.2 GiB, 3460300800 bytes, 6758400 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logi...
Linode - Why No Space Left On Device
auto_home 0 0 0 100% 0 0 100% /home Raspberry 8Gpi@raspberrypi:~ $ df -h 文件系统 容量 已用 可用 已用% 挂载点 /dev/root 117G 60G 53G 54% / devtmpfs 3.7G 0 3.7G 0% /dev tmpfs 3.9G 0 3.9G 0% /dev/shm tmpfs 3.9G 281M 3.6G ...
SSH免密码登录方法简易教程
lmlphp 将本地 .ssh/id_rsa_pub 中的内容拷贝到远程机器的 /home/lmlphp/.ssh/authorized_keys 文件中(这里的用户名需要与本地的名字对应,如果是 root 用户,则在 /root/.ssh 文件夹下面),如果不存在文件,则以 sudo 权限创建,如果存在,则追加写入。下面的例子是将文件直接拷贝上去: $ scp ~/.ssh/id_rsa.pub lm...
OpenResty Lua Redis 加速接口响应
90; server_name lua.may; error_log /usr/local/openresty/log/nginx/lua.may.error.log; charset utf-8; root /srv/www/may/lua; index index.html index.php; location / { try_files $uri $uri/ /index.php?$query_s...
MySQL8 关闭 binlog
MySQL8 除了默认密码不好用之外,还默认打开了 binlog,简直完全不符合正常人思维,算是越来越不好用了。root@localhost:/var/lib# du -sh ./* 32K./apache2 113M./apt 8.0K./aspell 4.0K./dbus 4.0K./dhcp 24K./dictionaries-common 19M./dpkg 24K./emacse...
GIT之filter-branch修改作者信息
publishing the project, like this: git filter-branch --env-filter ' if test "$GIT_AUTHOR_EMAIL" = "root@localhost" then [email protected] export GIT_AUTHOR_EMAIL fi if test "$GIT_COMMITTE...
spring boot jpa 多个数据源配置
:mysql://192.168.1.250:3306/main?useUnicode=true&characterEncoding=utf-8 spring.datasource.username=root spring.datasource.password= spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.dataso...
Raspberry Pi 偶尔的网络问题
16] ieee80211 phy0: brcmf_cfg80211_scan: scan error (-110) May 1 03:39:01 raspberrypi CRON[24365]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessi...
LMLPHP第二期更新功能
LMLPHP节后更新功能LML_REQUEST_URI增加了常量LML_REQUEST_URI,此常量一般情况下和SERVER变量的REQUEST_URI相同,当项目目录在DOCUMENT_ROOT下级时,会去除入口文件之前的部分。此常量在路由抵达控制器方法后再次匹配进行二次路由时特别有效。修复assign方法部分变量名冲突优化使用assign方法后可能会出现变量值丢失问题,通过增加fetch方...
php-fpm 顺滑的启动 重启 终止操作
进程并重新载入配置和二进制模块 很多大神要骂了,这就是宗教信仰啊,定义的这么奇怪。一个简单直接的重启方法,查看 php-fpm 的 master 进程号 # ps aux|grep php-fpm root 437 0.0 0.4 216312 9136 ? Ss 4月08 1:54 php-fpm: master process (/etc/php/7.3/fpm/php-fpm.conf) www-...