前提: mac中之前安装了mysql,一段时间没使用,今天使用mysql客户端去连接,报错提示密码过期,原因是mysql5.7之后版本有密码过期这个功能. error: Your password has expired. To log in you must change it using a client that supports expired passwords. 打开终端,启动mysql服务: sudo /usr/local/mysql/support-files/mysql.ser…
报错情况: 当Mac OS通过 npm 安装 React Native 报错,警告文字为:checkPermissions Missing write access to /usr/local/lib/node_modules 报错图片如下: 报错原因:npm 的安装权限不足 解决办法:在安装命令前加上 sudo,根据提示输入密码即可. 安装成功截图:…
Centos6.7系统,python3.6.7,通过 pip 安装pycurl出现报错: __main__.ConfigurationError: Could not run curl-config: [Errno 2] No such file or directory: 'curl-config': 'curl-config' 系统已经安装了curl,出现此错误提示一般是因为没有安装对应的开发库,解决方法: yum -y install libcurl-devel…
安装本地全局包时,本地报错 npm WARN checkPermissions Missing write access to /Users/xxx/.nvm/versions/node/v11.10.0/lib/node_modules/xxxx 执行sudo还是报这个错误,在网上查找解决方法,终于解决. 打开Finder,选择前往 --> 前往文件夹 -->输入报错路径,点击前往,点开文件夹,在文件夹中删除包的全部内容.完美解决…
本地安装kong-dashbord执行npm run build 报如下错误 gulp[]: ../src/node_contextify.cc::]->IsString()' failed. : 0x100038d1f node::Abort() [/usr/local/bin/node] : 0x100037e19 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, char const*, int, v8::Local&l…
问题描述: 在Mac下安装好opencv, 安装:    bash  brew install opencv      写了一个opencv程序:    ``` C++ //作用就是:取视频的每一帧,然后每隔50帧保存一次. include include "opencv2/opencv.hpp" using namespace cv; int main(int argc, char argv[]) { CvCapture capture = cvCaptureFromAVI(&quo…
问题描述:以前安装过mysql,后来安装xampp,mysql打不开,出错提示16:04:48  [mysql]  MySQL Service detected with wrong path16:04:48  [mysql]  Change XAMPP MySQL and Control Panel settings or16:04:48  [mysql]  Uninstall/disable the other service manually first16:04:48  [mysql] …
我们连接远程服务器的mysql,如果出现问题,很大问题会出在服务器的端口和授权问题 首先我们通过 1:netstat -an|grep 3306 来查看mysql默认的端口3306是否开启,允许哪个ip使用,如果你发现,前面有127.0.0.1,就说明,3306端口只能本机ip使用 所以,我们需要 2:打开mysql配置文件vi /etc/mysql/mysql.conf.d/mysqld.cnf 将bind-address = 127.0.0.1注销​ 3:进入mysql,对远程用户进行授权,…
1.进入mysql容器中 docker exec -it mysqltest(mysql容器名称) bash 2.进入mysql数据库 mysql -uroot -p 3.输入mysql密码 4.远程连接授权 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION; mysql>FLUSH PRIVILEGES; 5.更改加密规则 mysql>ALTER USER 'root'@'localhost' IDENT…
当使用create-react-app创建项目后,接着运行npm run eject时,如果出现下面的错误 可能是脚手架添加了.gitignore这个文件,但是没有本地仓库,可以使用以下代码解决这个问题: 1.create-react-app app 2.cd app 3.git init 4.git add . 5.git commit -m "xxx" 6.npm run eject…