
Linux
又双叒叕叒双又
但行好事,莫问前程
展开
-
Dockerfile搭建LNMP环境
dockerfile搭建LNMP 1、准备工作 创建一个空的文件夹,然后进行后续操作 mkdir docker_lnmp cd docker_lnmp nginx配置文件:default.conf server { listen 80 default_server; listen [::]:80 default_server; root /var/www/html; index index.php index.html index.htm index原创 2021-03-10 20:05:53 · 566 阅读 · 1 评论 -
Linux进程管理
查看某个进程 ps aux | grep ××× 杀掉进程 kill 进程号 批量杀掉包含某个关键字的进程 ps -ef|grep ./amplxe-gui|grep -v grep|cut -c 9-15|xargs kill -9 批量杀死包含关键字“./amplxe-gui”的进程。 "ps -ef" ——查看所有进程 "grep ./amplxe-gui" ——列出所有含有...翻译 2019-03-29 17:23:54 · 101 阅读 · 0 评论 -
Linux常用命令
https://www.cnblogs.com/gaojun/p/3359355.html https://www.cnblogs.com/yjd_hycf_space/p/7730690.html Linux 忘记密码解决方法 进入单用户模式更改一下root密码即可。 步骤如下: 重启Linux系统,3秒内按回车键 输入e(进入编辑模式),在第二行 root=LABLE=/ 后面加 ...翻译 2019-03-30 10:35:47 · 112 阅读 · 0 评论