服務(wù)器用的時間長了總會出些問題,需要解決。在此將比較常用的幾個命令貼出來,以便自己及小伙伴們查閱。
在此說一下我用的服務(wù)器版本:(阿里云服務(wù)器)
LSB Version::core-4.1-amd64:core-4.1-noarch
Distributor ID:CentOS
Description:CentOS Linux release 7.4.1708 (Core) Release:7.4.1708
Codename:Core
一般情況下,網(wǎng)站突然無法打開可以嘗試重啟服務(wù)
1.服務(wù)器重啟命令:reboot
2.php-fpm重啟命令:service php-fpm restart
使用nginx的服務(wù)器,有時候網(wǎng)站配置后,出現(xiàn)ngnix報錯可以先檢查下網(wǎng)站的Nginx配置文件是否出現(xiàn)錯誤,然后針對錯誤詳情找出解決辦法
1.檢查nginx語法 : nginx -tc 目錄/配置文件.conf
例子:nginx -tc /etc/nginx/nginx.conf
文件解、壓縮
1.壓縮打包命令:tar -zcvf /data/wwwroot/###.tar.gz 目標文件夾名
2.解壓命令:tar -xzvf file.tar.gz
例子:
tar -jcvf /home/abc.tar.bz2 /home/abc 打包,并用bzip2壓縮。tar -zcvf /home/abc.tar.gz /home/abc 打包,并用gzip壓縮。 .tar 解包:tar xvf filename.tar 打包:tar cvf filename.tar dirname (注:tar是打包,不是壓縮。
(將abc.tar.gz解壓) tar -xzvf abc.tar.gz
服務(wù)器之間拷貝文件
1.將文件拷貝到另一臺服務(wù)器:
scp /data/wwwroot/666.tar.gz root@111.11.11.111:/data/wwwroot/
2.從另一臺服務(wù)器拷貝文件:
sudo scp -r /home/peace/apache-tomcat-7.0.64.tar.gz root@115.29.52.140:/root/peace/java。[root@web-server-b cacti]# scp -r patrol@172.16.67.21:/home/orabiee/cacti/cacti-spine-0.8.7e.tar.gz /home/cacti/spine/。[root@server share]# tar zcvf commands.tar.gz .commands[root@server share]# rm -rf commands.tar.gz。
數(shù)據(jù)庫導(dǎo)出(mysqldump命令)
導(dǎo)出整個數(shù)據(jù)庫
mysqldump -u 用戶名 -p 數(shù)據(jù)庫名 > 導(dǎo)出的文件名
mysqldump -u linuxde -p data > 目錄/linuxde.sql
導(dǎo)出一個表
mysqldump -u 用戶名 -p 數(shù)據(jù)庫名 表名 > 導(dǎo)出的文件名
mysqldump -u linuxde -p data users > linuxde_users.sql
基本命令格([xxx]中的內(nèi)容根據(jù)實際情況改動)
mysqldump -u [username] -p -d [databaseName] [tableName] >
[路徑及導(dǎo)出的sql文件名];
1、導(dǎo)出數(shù)據(jù)庫dbname的表結(jié)構(gòu)