Invalid character found in the request target.The valid characters are defined in RFC 7230 and RFC3986 问题当在通过tomcat传递url时, 后台会报Invalid character found in the request target.The valid characters are defined in RFC 7230 and RFC3986。 2019-05-16 后端技巧/经验 > java #tomcat
使用git搭建服务器 前言当我们想使用git来管理源码, 但是又不想将代码上传至github或者其他的托管平台时, 可以尝试着自己搭建一个git服务器作为私有仓库。 2019-09-01 配置技巧/经验 > 开发工具配置 > git #git
linux mariadb 的一些问题 安装12sudo apt install mariadb-serversudo mysql_secure_installation 远程登录123GRANT ALL ON *.* TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;FLUSH PRIVILE 2020-08-26 配置技巧/经验 > 开发工具配置 > mariadb #mysql #mariadb
mysql创建数据库时遇到的字符集的问题 mysql 查看字符集1show variables like '%char%' 这里要全都是utf-8。 如果不是的话, 则修改my.ini。 修改方式: 12345678[mysqld]character-set-server=utf8[client]default-character-set=utf8[mysql]no-auto-rehash 2019-07-14 配置技巧/经验 > 开发工具配置 > mysql #踩坑 #mysql
MySql8.0以上only_full_group_by的问题 问题当在使用mysql8.0以上的版本时, 在使用group by时, 会出现类似下面的报错: 12ERROR 1055(42000): Expression #7 of SELECT list is not in GROUP BY clause and contains nonaggregated column ....this is incompatible with sql_mode=onl 2019-12-01 配置技巧/经验 > 开发工具配置 > mysql #踩坑 #mysql
mysql 主从数据库遇到的问题和解决方案 前言配置主从数据库请查看mysql 配置主从数据库。 配置了之后遇到了一些问题, 具体表现为 Slave_IO_Running 和 Slave_SQL_Running 不是 yes。 排查思路首先使用 show slave status\G 命令查看 Last_Error, Last_IO_Error 和 Last_SQL_Error 三个项对应的值, 根据错误信息来具体解决。 如果不能通过以上三 2019-10-17 配置技巧/经验 > 开发工具配置 > mysql #mysql