ssh-keygen -t rsa -C "memo"- 在 gitlab 中添加
ssk-key内容为.ssh/id_rsa.pub文件内容 - 若
id_rsa文件是被改名的, 要在.ssh/config中添加指向说明
指向说明示例:
Host 192.168.150.162
RSAAuthentication yes
IdentityFile ~/.ssh/gitlab_rsa
ssh-keygen -t rsa -C "memo"ssk-key 内容为 .ssh/id_rsa.pub 文件内容id_rsa 文件是被改名的, 要在 .ssh/config 中添加指向说明指向说明示例:
Host 192.168.150.162
RSAAuthentication yes
IdentityFile ~/.ssh/gitlab_rsa
Vue packages version mismatch:
- vue@2.5.10
- vue-template-compiler@2.5.13
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
上监控系统:
Entity 生成路由
@ApiResource 注解, 自动生成路由.Inflector::pluralize(Greeting::class) 自动生成 /greetings 复数形式的资源名称_ 分隔, 文档有记录更改单词分隔符自定义资源方式?
过滤器原理?
迁移Expressive 方案?
| wsl -d Ubuntu-20.04 -u root ip addr del $(ip addr show eth0 ^| grep 'inet\b' ^| awk '{print $2}' ^| head -n 1) dev eth0 | |
| wsl -d Ubuntu-20.04 -u root ip addr add 192.168.50.2/24 broadcast 192.168.50.255 dev eth0 | |
| wsl -d Ubuntu-20.04 -u root ip route add 0.0.0.0/0 via 192.168.50.1 dev eth0 | |
| wsl -d Ubuntu-20.04 -u root echo nameserver 192.168.50.1 ^> /etc/resolv.conf | |
| powershell -c "Get-NetAdapter 'vEthernet (WSL)' | Get-NetIPAddress | Remove-NetIPAddress -Confirm:$False; New-NetIPAddress -IPAddress 192.168.50.1 -PrefixLength 24 -InterfaceAlias 'vEthernet (WSL)'; Get-NetNat | ? Name -Eq WSLNat | Remove-NetNat -Confirm:$False; New-NetNat -Name WSLNat -InternalIPInterfaceAddressPrefix 192.168.50.0/24;" |
| <?php | |
| use Doctrine\DBAL\Exception\ConnectionLost; | |
| use Doctrine\ORM\EntityManagerInterface; | |
| use Psr\Log\LoggerInterface; | |
| use Psr\Log\NullLogger; | |
| use Swoole\ConnectionPool; | |
| /** | |
| */ |