Linux常用命令

文件操作

查找文件或文件夹:find / -name 文件名或文件夹名
移动/重命名文件:mv 完整文件路径名1 新的完整文件路径名2
复制文件:cp 完整文件路径名1 新的完整文件路径名2

参考:centos彻底删除文件夹、文件命令

网络

查看开放端口:netstat -lnpt
检查端口被哪个进程占用:netstat -lnpt |grep 5672
查看进程的详细信息:ps 6832
中止进程:kill -9 6832

常用

查看状态:systemctl status nginx
启动服务:systemctl start nginx
开机启动:systemctl enable nginx
停止开机启动:systemctl disable nginx
停止服务:systemctl stop nginx
重启服务:systemctl restart nginx
firewalld指令集

wordpress安装主题报错Unable to locate WordPress Content directory

1、 chmod -R 777 wordpress #提高网站文件夹权限

2、在wp-config.php末尾加上下面的代码片段:

if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
}

参考:安装主题 Unable to locate WordPress Content directory (wp-content)

Unit mysql.service could not be found解决

方法一

1、首先你需要找到 mysql.server 文件,这个 和 mysqld 文件是一模一样的,只不过文件名不相同
执行命令
find / -name mysql.server
找到文件后,将它复制到/etc/init.d/ 目录下,并重命名
cp /phpstudy/mysql/support-files/mysql.server /etc/init.d/mysqld
再运行 service mysql status

方法二

如果上面的没能解决你的问题:

 $   yum install -y mariadb-server 
 $   systemctl start mariadb.service  
 $   systemctl enable mariadb.service 
 $   mysql_secure_installation 
[mysql]> use mysql; 
       > select  User,authentication_string,Host from user; 
       > GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456'; 
       > flush privileges; 

参考:Failed to start mysqld.service: Unit not found

WordPress安装过程记录

1、下载wordpress包,官网: https://cn.wordpress.org/ ,注意下载的语言版本,git官网默认是英文版。
github: https://github.com/WordPress/WordPress
中文版百度云备份:https://pan.baidu.com/s/1aqzvl3hmquwsPy4eiagXzA 提取码:dhnw
中文要在wp-config.php或wp-config-sample.php中添加或修改
define('WPLANG','zh_CN');
define('WP_DEBUG',false);

2、上传到域名指向的根目录下,注意不要修改wp-config-sample.php文件名。

3、在mysql数据库中建立一个utf8的database,安装时需用。

4、进入首页,按照提示填写相应的信息,安装完毕。

注意:中间遇到错误,请查看日志报错:/var/log/mysql/mysqld.log,/var/log/nginx/access.log,/var/log/nginx/error.log

过程报错1:数据库连接错误→swap空间不足,解决办法
过程报错2:PHP文件读取不出来→9000端口未监听
过程报错3:缺少相关的的PHP拓展→常见必须拓展json、mysql,使用php -m查看已安装拓展,安装方法
过程报错4:主题下载无写入权限→设置wp-config.php

参考:如何安装wordpress
CentOS 下三种 PHP 拓展安装方法
wordpress界面汉化
FATAL ERROR: CALL TO UNDEFINED FUNCTION JSON_DECODE()解决办法
Nginx出现403 forbidden

Linux CentOS firewall指令集

1、firewalld的基本操作

启动: systemctl start firewalld
查看状态: systemctl status firewalld 
停止: systemctl disable firewalld
禁用: systemctl stop firewalld

2、使用firewalld

查看版本: firewall-cmd --version
查看帮助: firewall-cmd --help
显示状态: firewall-cmd --state
查看所有打开的端口: firewall-cmd--zone=public --list-ports
更新防火墙规则: firewall-cmd --reload
查看区域信息:  firewall-cmd--get-active-zones
查看指定接口所属区域: firewall-cmd--get-zone-of-interface=eth0
拒绝所有包:firewall-cmd --panic-on
取消拒绝状态: firewall-cmd --panic-off
查看是否拒绝: firewall-cmd --query-panic
开启一个端口:firewall-cmd --zone=public --add-port=80/tcp --permanent   (--permanent永久生效,没有此参数重启后失效)
查看:firewall-cmd --zone=public --query-port=80/tcp
删除:firewall-cmd --zone=public --remove-port=80/tcp --permanent
查看firewall是否运行,下面两个命令都可以:
systemctl status firewalld.service
firewall-cmd --state
查看当前开了哪些端口,一个服务对应一个端口,每个服务对应/usr/lib/firewalld/services下面一个xml文件:firewall-cmd --list-services
查看还有哪些服务可以打开:firewall-cmd --get-services
查看所有打开的端口: firewall-cmd --zone=public --list-ports
重新载入/更新防火墙规则: firewall-cmd --reload
指定端口:firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.142.166" port protocol="tcp" port="5432" accept"
指定端口段:firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.2.0/24" port protocol="tcp" port="5432" accept"

参考:CentOS7为firewalld添加开放端口及相关操作
centos7 firewall指定IP与端口访问(常用)

Linux CentOS 8 安装ftp

1. yum -y install vsftp

2. 修改/etc/vsftpd/vsftpd.conf 文件:

anonymous_enable=NO
local_enable=YES
write_enable=YES 
chroot_local_user=YES 
pasv_min_port=10000 
pasv_max_port=11000 
userlist_file=/etc/vsftpd/user_list 
userlist_deny=NO 

3. 开放端口

sudo firewall-cmd --permanent --add-port=20-21/tcp
sudo firewall-cmd --permanent --add-port=10000-11000/tcp
firewall-cmd --reload 

4. 创建用户并设置访问

sudo adduser newftpuser
sudo passwd newftpuser 
echo "newftpuser" | sudo tee -a /etc/vsftpd/user_list 
sudo mkdir -p /home/newftpuser/ftp/upload 
sudo chmod 550 /home/newftpuser/ftp 
sudo chmod 750 /home/newftpuser/ftp/upload 
sudo chown -R newftpuser: /home/newftpuser/ftp 

用户将会被允许上传他们的文件到/home/username/ftp/upload目录。

5. Windows ftp工具设置,直接在文件浏览器地址栏中输入ftp://IP地址,使用ftp用户账号密码登录,此前要将IE的Internet选项中【高级】里的【 使用被动FTP(为防火墙和DSL调制解调器兼容性)】 前面的勾去掉。

6.查看ftp运行状态:systemctl status vsftpd

参考:如何在 CentOS 8 上使用 Vsftpd 配置 FTP 服务器
CentOS8.0 安装配置ftp服务器的实现方法
查看和修改Centos系统ftp用户名和密码的方法
打开FTP服务器上的文件夹时发生错误。请检查是否有权限访问该文件夹

阿里云建站笔记

终于建站了!波折重重,赶紧笔记!

1 阿里云购买域名和云服务器ECS,最开始选的共享型small(1G1vCPU),后变更为突发型(2G2vCPU),价格相差10块,后者性能明显好于前者。

2 配置ECS:选择CentOS 8操作系统,CentOS 常用命令见这里。2M固定带宽,选择手工设置密码,服务器选在了国内。

第一次用国内服务器,以前用的都是漂亮国的,国内服务器就涉及到备案,还是挺麻烦的,鉴于已经付了钱,并搭建好了一切环境,不想再折腾,遂决定硬着头皮用下去,也体会一把申请备案的痛感。

3 通过终端连接到后台,首先更新:yum -y update

4 安装服务器:yum -y install nginx

5 查看服务器状态:systemctl status nginx

如果提示 -bash: systemctl: command not found,是因为CentOS 7.0以后才有systemctl命令,6.x只能用 service nginx status

6 设置开机启动并启动nginx服务器:
[~]# systemctl enable nginx
[~]# systemctl start nginx

7 安装mysql:yum search mysql,选择合适的包,直接yum install mysql是不完整的,需要再把mariadb补充上才能正常使用,见这里
正确的命令(centos8):yum -y install mysql-server

8 初始化mysql:
[~]# systemctl status mysqld,查看状态;
[~]# systemctl enable mysqld,开机启动;
[~]# systemctl start mysqld,启动mysql服务;
[~]# sudo mysql_secure_installation,运行mysql_secure_installation脚本,该脚本执行一些与安全性相关的操作并设置MySQL根密码;

9 配置mysql:
[~]# mysql -uroot -p
[mysql]> use mysql;
> update user set host='% where user='root';
> flush privileges;
> exit
[~]# sudo firewall-cmd --add-port=3306/tcp --permanent
[~]# sudo firewall-cmd --reload

! FirewallD服务如果没启动的话要先设置开机并启动firewalld服务

10 修改/etc/my.cnf配置文件,在末尾添加
[mysqld]
skip-name-resolve

11 重启mysql服务:systemctl restart mysqld

12 安装php:yum -y install php*。

13 开机启动php-fpm服务:systemctl enable php-fpmsystemctl start php-fpm

14 修改/etc/nginx/nginx.conf文件:

*For more information on configuration, see:
* Official English Documentation: http://nginx.org/en/docs/
* Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes 2;
worker_cpu_affinity 01 10;
worker_rlimit_nofile 65535;
worker_processes auto;

error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
     worker_connections 65535;
     use epoll;
     multi_accept on;
 }

http {
     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                       '$status $body_bytes_sent "$http_referer" '
                       '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;
    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    large_client_header_buffers 4 32k;
    client_max_body_size 8m;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    fastcgi_connect_timeout 180;
    fastcgi_send_timeout 500;
    fastcgi_read_timeout 500;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types text/plain application/x-javascript text/css application/xml;
    gzip_vary on;

include             /etc/nginx/mime.types;
default_type        application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;

    server {
            listen 80;
            server_name localhost;
            root 你的根目录;

            location / {
                  index index.php index.html;
                  proxy_http_version 1.1;
                  proxy_set_header Upgrade $http_upgrade;
                  proxy_set_header Connection "upgrade";
                  try_files $uri $uri/ /index.php?$query_string;
            }
            location ~ \.php$ {
                            if ( $fastcgi_script_name ~ \..*\/.*php ) {return 403;}
                            fastcgi_pass 127.0.0.1:9000;
                            fastcgi_index index.php;
                            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                            include fastcgi_params;
            }
            #rewrite ^(.*)$  https://$host$1 permanent;
    }

    server
    {
            listen 443 ssl default_server;
            ssl_certificate   Cert/你的ssl证书.pem;
            ssl_certificate_key  Cert/你的ssl证书.key;
            rewrite ^(.*)$  https://www.aliyun.com;
    }

    server {

            listen 443;
            server_name www.你的域名;
            ssl on;
            root 你的根目录;
            index index.html index.htm index.php;
            ssl_certificate   Cert/你的ssl证书.pem;
            ssl_certificate_key  Cert/你的ssl证书.key;
            ssl_session_timeout 5m;
            ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
            ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
            ssl_prefer_server_ciphers on;

            location / {
                    root 你的根目录;
                    index index.html index.htm index.php;
                    proxy_http_version 1.1;
                    proxy_set_header Upgrade $http_upgrade;
                    proxy_set_header Connection "upgrade";
                    try_files $uri $uri/ /index.php?$query_string;
            }

            location ~ \.php$ {
                            if ( $fastcgi_script_name ~ \..*\/.*php ) {return 403;}
                            fastcgi_pass 127.0.0.1:9000;
                            fastcgi_index index.php;
                            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                            include fastcgi_params;
            }

   }
}

15 检查语法:nginx -t,如果没问题重启nginx:systemctl restart nginx

16 访问域名,获得nginx默认页面或者nginx.conf文件中指定的根目录index文件

参考文章:CentOS 8 安装MySQL 8.0
php-fpm启动成功但是9000端口没被用?
centos出现“FirewallD is not running”怎么办
nginx安装错误:No package nginx available