Linux
Simple_IDE
这个作者很懒,什么都没留下…
展开
-
MySQL密码
ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘596015571Ds.’;原创 2021-03-15 11:55:09 · 90 阅读 · 2 评论 -
nginx反向代理
使用反向代理如果访问http://localhost:80(也就是网站的默认端口)让其直接跳转到http://localhost:3000。 需要编辑Nginx的conf文件 vim /etc/nginx/nginx.conf location / { # default port, could be changed if you use next with custom server proxy_pass http://localhost:3000; proxy_http_versio原创 2021-01-24 20:06:49 · 64 阅读 · 0 评论 -
Linux的MySQL数据库操作
1、登录MySQL数据库(mysql -hlocalhost -uroot -p) mysql -hlocalhost -uroot -p 2.查看当前数据库 show databases; 3.使用数据库 use databaseName; 4.退出数据库 exit原创 2021-01-21 11:19:20 · 87 阅读 · 0 评论 -
nginx部署网页
1.在线安装nginx sudo yum install nginx 安装完后运行 [root@Lrw888 local]# nginx 查询nginx.conf是否正确 [root@Lrw888 local]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successf原创 2021-01-21 10:51:03 · 188 阅读 · 0 评论 -
Linux批量删除
Linux 递归批量删除文件夹或文件的命令 递归批量删除文件夹: 命令: find . -name svn -type d -print -exec rm -rf {} \; 说明: (1)‘.’意思是从当前目录开始递归查找; (2) '-name svn' -name 指令是申明根据名称查找,本例中是查找所有以 svn 命名的文件夹; (3)‘-type d’ -type 指明查找的类型,本例中 指明查找的类型为目录d; (4) '-print' 输出查找到的目录名;原创 2021-01-16 16:00:37 · 652 阅读 · 0 评论 -
Linux安装MySQL
1.从官网下载Linux的Mysql安装包 wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz 2.安装Mysql tar xzvf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/ cd /usr/local/ mv原创 2021-01-16 10:44:58 · 73 阅读 · 0 评论 -
Linux将node更新为最新版本
1.清除npm的缓存 npm cache clean -f 2.下载版本管理工具n npm install -g n 3.更新到最新版 n latest 4.重置命令 PATH="$PATH"原创 2021-01-16 09:24:48 · 1055 阅读 · 0 评论