上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: 解决方法一 执行 mysql -u root -p 然后输入密码登陆mysql GRANT ALL PRIVILEGES ON . TO ‘myuser’@’%’ IDENTIFIED BY ‘mypassword’ WITH GRANT OPTION; 执行:FLUSH PRIVILEGES; 此 阅读全文
posted @ 2022-04-11 16:39 dcrenl 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 搭建自己的git服务器,类似github Bonobo Git Server 官方地址:https://bonobogitserver.com/ git地址:https://github.com/jakubgarfield/Bonobo-Git-Server 特点:使用IIS部署,windows上基 阅读全文
posted @ 2022-03-07 17:18 dcrenl 阅读(300) 评论(0) 推荐(1) 编辑
摘要: ssh-keygen -t rsa -C "email@gmail.com" 回车后提示输入密码, 此处密码可以不填, 直接回车,提示再次输入密码, 直接回车,生成成功 前往 /Users/victor/.ssh/id_rsa.pub 找到SSH key;在windows下查看[c盘->用户->用户 阅读全文
posted @ 2022-02-15 11:59 dcrenl 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 这里使用的软件名称叫rarcrack,其官方主页: http://rarcrack.sourceforge.net rarcrack官方网站已经没有了,需要百度自行查找源码编译 链接: https://pan.baidu.com/s/1Jh0tsx5_Amgd0fMzZYMqsQ 提取码: 5sas 阅读全文
posted @ 2021-12-14 14:04 dcrenl 阅读(1667) 评论(0) 推荐(0) 编辑
摘要: 使用CentOS 8.2 查看linux版本 lsb_release -a查看系统版本;uname使用uname --help查看具体帮助,可返回系统内核版本等信息 磁盘空间查询 df查看目录使用磁盘控件情况和使用百分百,可以使用df -h查询命令帮助信息 df -hl:查看磁盘剩余空间 df -h 阅读全文
posted @ 2021-12-09 15:20 dcrenl 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 应该有不少开发者已经发现,访问淘宝 NPM 已经会自动 301 跳转到 npmmirror.com 新域名,这是我们独立注册和备案的域名。 Web 站点:https://npmmirror.com Registry Endpoint:https://registry.npmmirror.com 随着 阅读全文
posted @ 2021-11-09 12:45 dcrenl 阅读(223) 评论(0) 推荐(0) 编辑
摘要: public void main() { Runnable runnable = new ShareVariableRunnable(); Thread[] threads = new Thread[3]; for (int i = 0; i < 3; i++) { threads[i] = new 阅读全文
posted @ 2021-10-29 09:14 dcrenl 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、安装g++ yum -y install gcc-c++ 2、编译*.cpp文件 g++ -o test_app_name test_source_file.cpp 3、运行编译结果 ./test_app_name 阅读全文
posted @ 2021-10-08 12:02 dcrenl 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 1、检查gcc是否安装 输入g++如提示:g++: fatal error: no input files说明已经安装gcc环境 2、安装gcc环境,如已经安装略过此步骤 yum install gcc-c++ 3、编译cpp文件 g++ -o 编译后的名称 源文件.cpp 4、运行 ./编译后的文 阅读全文
posted @ 2021-09-29 16:54 dcrenl 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 1、检查yum上的nginx版本 yum info nginx 2、安装nginx yum install nginx 安装过程有时会询问是否安装,输入y回车即可 3、将服务设置为每次开机启动 sudo systemctl enable nginx 4、启动nginx服务 sudo systemct 阅读全文
posted @ 2021-09-29 16:33 dcrenl 阅读(947) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页