C++ – 2.变量与常量
变量 变量,就是在内存中划分一个区域,存放我们的数据。 想要使用变量,必须先做“声明”,也就是告诉计算机要用到的数据叫什么名字,同时还要指明保存数据所需要的空间大小。比如: int a; 意...
python-selenium报错解决大全
selenium安装教程: 报错列表 错误1:\'ascii\' codec can\'t encode characters in position 0-1: ordinal not in range(128)] 错误2 : session not created: DevToolsActivePort file doesn\'t ...
Centos – 部署PHP
安装PHP 安装PHP7.2 yum install -y php72w php72w-cli php72w-common php72w-devel php72w-embedded php72w-fpm php72w-gd php72w-mbstring php72w-opcache php72w-pdo php72w-xml php72w-mysq...
MySql8.0 – 授权用户出现You are not allowed to create a user with GRANT
MySql8有新的安全要求,不能像之前的版本那样一次性创建用户并授权需要先创建用户,再进行授权操作 首先创建新用户: create user 'username'@'host' identified by '...
docker – 错误解决-Kitematic打开错误-Hostname/IP doesn’t match certificate’s altnames错误
Kitematic打开错误 错误代码:Hostname/IP doesn\'t match certificate\'s altnames 错误情况:打开Kitematic,启动到99%的时候,提示 Hostname/IP doesn\'t match certificate\'s altn...
异地组网 – zerotier(docker)
zerotier安装 docker run --restart=on-failure:3 -d --name ztncui -e HTTP_ALL_INTERFACES=yes -e ZTNCUI_PASSWD=admin@123 -p 3000:3000 -p 3180:3180 -p 3443:3443 -p 8000:8000 -p 9993:99...