Blogger Information
Blog 19
fans 0
comment 1
visits 43864
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
linux 常用命令
好想睡懒觉的博客
Original
1225 people have browsed it

重启 crontab:  systemctl restart crond.service

重启 mariaDB:  systemctl restart mariadb

重启 nginx:sudo systemctl reload nginx | sudo systemctl restart nginx |sudo /etc/init.d/nginx restart | sudo nginx -s restart  

重启php:sudo service php-fpm restart | sudo systemctl php-fpm restart

压缩tar.gz : -zcvf 压缩文件名 .tar.gz 被压缩文件名  

例子:tar -zcvf news_s_wekey_cn.tar.gz /s.weekey.cn

解压tar.gz :   tar -zxvf 压缩文件名.tar.gz

压缩zip:  zip -r  mydata.zip mydata #压缩mydata目录

解压zip: unzip mydata.zip -d mydata

查看服务: ps aux | grep 服务名称

查看端口:netstat -tunple | grep 服务端口

查看当前磁盘使用情况:df -h

查看当前目录每个文件夹的情况:du --max-depth=1 -h

查找大文件: find / -type f -size +200M

查找大文件并排序:find / -type f -size +200M 2>/dev/null|xargs du -shm|sort -nr

查看当前终端下的命令:ps

查看所有的进程(不是动态的):ps -aux 

查看所有的进程(是动态的):top

(最牛叉的):htop 

查找指定进程:ps -ef | grep mmp-front  //mmp-front是进程关键字

杀死进程:kill -9 进程ID

查看指定文件夹大小  du -sh  news_s_wekey_cn.tar.gz






找文件: find / -name 'nginx.conf'

             grep -rn 'This Success!!!!'

模糊查询: find / -name '*wzk88.cn*'

复制文件: cp /www/wwwroot/wzk.cn/music/*   /www/wwwroot/wzk/

检查nginx 语法有没有错误:nginx -t

nginx配置文件路径:cd /www/server/panel/vhost/nginx/119.23.68.193.conf

重启nginx命令:nginx -s reload

实时查看文件:tailf /www/wwwlogs/wzk_8009.log;

返回上一个访问的目录:cd -

运行检查php文件错误:php -l test.php

只检查文件错误不运行:php test.php

强制删除文件 rm -f test.php

删除文件有提示:rm test.php

强制删除文件 夹  rm -rf ci

改文件名 mv wzk.com  wzk

全局搜索文件:grep -nR   '文件'   ci/

查看文件大小:du -Bm --max-depth=1 .

查看端口号:netstat -ano | grep 8899

在文件中查找:grep -nR 'fopen' /www/server/php/70/

修改文件直接跳到512行 vim ./system/core/Loader.php +512

在文件里显示行数: :set number

显示当前的所在路径:pwd

查看文件夹大小: du -hs news_yaoci2/

添加站点操作:

1、先在阿里云后的安全组配置规则,添加安全组规则,只填写端口范围:8899/8899 和授权对象:0.0.0.0/0

  就可以了。

2、去宝塔后台的网站处,再添加站点输入域名wzk.cn:8899 确定就好了

3 、去宝塔后台开启端口号8899开好了。查看端口号:netstat -ano | grep 8899

4、输入119.23.68.193:8899 即可访问!

mysqpdump 命令备份数据库:mysqldump -uroot -p zhao > /home/zhao2.sql

------------------------- 在 git 命令 ------------------------------------

zip zhao.sql.zip /home/zhao.sql  把文件压缩成zip格式 (这格式可以在phpmyadmin 直接导入)

zip -r myci.zip ci  在当前文件夹内压缩目录ci为myci.zip 的压缩文件

下载文件 scp root@119.23.68.193:/www/server/panel/vhost/nginx/wzk.com.conf . (.表示下载到当前目录)

下载文件到本地:scp -r root@119.23.68.193:/home/zt_novel.sql  /e/

下载打包好的文件: scp -r root@119.23.68.193:/www/server/data/zhao  /d/

tar -zcvf yaoci2-beta.tar.gz /var/www/html/yaoci2-beta/ 把项目打包

tar -zcvf zt_novel2.tar.gz /home/zt_novel.sql   把文件打包

scp yaoci2-beta.tar.gz root@119.147.213.165:/bak/ 下载项目到指定ip地址

上传项目到服务器 scp -r ci root@119.23.68.193:/www/wwwroot/wzk/ (确定->yes->输入服务器密码)

scp -r member.php root@119.23.68.193:/www/wwwroot/wzk/news_yaoci2/controllers/

git clone https://github.com/zstaring/wms.git   从github 里面下载项目命令

112.74.198.179   m.yaoyaola.cn ip地址

scp -r root@112.74.198.179:/mnt/html/yaoci2 /e/ 下载项目到本地

端口是28上传文件到服务器命令:

上传文件:

 scp -P 28 -r demo1.html root@111.230.38.119:/www/wwwroot/test/

 scp -P 28 -r root@111.230.38.119:/www/wwwroot/test/demo1.html /d/

------------------------- git 命令 ------------------------------------


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post