05 2021 档案
摘要:修改或找回root密码步骤1.修改MySQL的登录设置: # vi /etc/my.cnf 在[mysqld]的段中加上一句:skip-grant-tables 保存并且退出vi。 2.重新启动mysqld # /etc/init.d/mysqld restart ( service mysqld
阅读全文
摘要:创建数据库: CREATE DATABASE IF NOT EXISTS my_db default charset utf8 COLLATE utf8_general_ci; 授权: grant all privileges on dce_db.* to 'dce'@'%' identified
阅读全文
摘要:ezhttp安装使用: 一、安装数据库时数据库已经没有5.7.26,需要修改脚本 1、修改文件:function/config.sh mysql5_7_filename="mysql-5.7.31" # 修改版本号 set_dl $mysql5_7_filename ' http://cdn.mys
阅读全文
摘要:一、Powershell文件命名:xxx.ps1 Set-ExecutionPolicy Unrestricted $filedate = "{0:yyyy-MM-dd-HH-mm-ss}" -f (Get-Date) mkdir C:\test\backup\$filedate\ApiApp2 x
阅读全文
摘要:Nginx1.18部署 nginx-1.18.0部署 1. 部署前准备 /usr/sbin/groupadd www && /usr/sbin/useradd -g www www && ulimit -SHn 65535 && systemctl disable firewalld.service
阅读全文