994浏览量Docker的Ubuntu容器上出现如下问题一般apt-get出现这种情况:Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate&nbs
1076浏览量将pages_external_url添加到/etc/gitlab/gitlab.rb并重新配置,只用一个索引文件创建一个简单的测试项目,在页面url上获得502错误重现步骤$ vim /etc/gitlab/gitlab.rb
pages_external_url'http://iopst.cn/'
$ sudo gitlab-ctl reconfigure日志2019/04/22 21:01:18 Gi
1184浏览量一、背景 开发代码在操作数据库的过程中,程序抛出Too many connections。 查看/etc/my.cnf.d/server.cnf 里面配置了max_connections = 65535 执行SHOW GLOBAL VARIABLES LIKE 'max_connections' 查看value=214,说明max_connections
917浏览量创建存储过程的时候出现一个报错:ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)原因:这是我们开启了bin-log,
938浏览量nginx在上传文件失败,查看日志文件。nginx日志里显示错误:[error] 4139#0: *1 client intended to send too large body: 11648172 bytes,一开始以为是php的问题,一看upload_max_filesize有10M后来一看是nginx问题原来如此,我以前好像配置过这个,找了一下,作出修改如下打开nginx.conf并在http{}字段里添加client_max_body_size 48M; #多少M根据实际情况填写# k