ubantu lnmp

www.carrotchou.blog

sudo apt install nginx

ufw enable

ufw allow ssh

ufw allow 80

ufw status

2、安装MySQL 5.7.6(Ubuntu 18.04 默认源中不包含这个版本,需要添加官方源):

sudo apt install software-properties-common -y

sudo add-apt-repository 'deb http://repo.mysql.com/apt/ubuntu/ bionic mysql-5.7'

sudo add-apt-repository 'deb-src http://repo.mysql.com/apt/ubuntu/ bionic mysql-5.7'

sudo apt update

sudo apt install mysql-server -y

2.2最新mysql8.0.3

sudo apt install mysql-server

2.3修改用户名密码

sudo vim /etc/mysql/debian.cnf

使用文件初始用户名和密码

mysql -u debian-sys-maint -pblySkrApIKeAlC4o

修改用户名密码

update mysql.user set authentication_string=password('123456') where

user='root' and host='localhost';

update mysql.user set plugin="mysql_native_password";

flush privileges;

查看mysql字符集

show variables like 'char%';

修改为utf-8编码集

set character_set_server=utf8;

修改表的字符编码

alter table user default character set utf8;

修改属性的字符编码

alter table user modify column name varchar(50) character set utf8;

授权远程连接

访问mysql库

use mysql

修改root用户能在任何host访问(授权远程连接)

update user set host = '%' where user = 'root';

修改my.cnf或my.ini

mysqld

bind-address = 0.0.0.0

刷新

FLUSH PRIVILEGES;

停止

sudo systemctl stop mysql

启动

sudo systemctl start mysql

3、安装php7.4

最新 sudo apt install php-fpm php-mysql php-common php-xml php-cli php-gd php-curl php-bcmath

确认php-fpm是否安装

dpkg -l | grep php-fpm

指定 sudo apt install software-properties-common

sudo add-apt-repository ppa:ondrej/php

sudo apt update

sudo apt install php7.4 php7.4-fpm php7.4-mysql php7.4-common php7.4-xml php7.4-cli php7.4-gd php7.4-curl

4.nginx配置查看sock

4.1 sudo find /etc/php -type f -name '*.conf' -exec grep -H 'listen' {} \;

4.2 cat /etc/php/8.1/fpm/pool.d/www/conf

以下内容:

; Note: This value is mandatory.

listen = /var/run/php/php7.4-fpm.sock

配置nginx vhost或nginx/sites-available/default

server {

listen 80;

server_name example.com;

root /var/www/html;

index index.php index.html index.htm;

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

access_log /var/log/nginx/access.log;

location / {

try_files uri uri/ =404;

}

location ~ \.php$ {

include snippets/fastcgi-php.conf;

fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;

fastcgi_param SCRIPT_FILENAME document_rootfastcgi_script_name;

include fastcgi_params;

}

}

4.3重启nginx

sudo systemctl restart nginx

sudo systemctl start php8.1-fpm

sudo systemctl enable php8.1-fpm

server {

listen 80;

server_name www.goserver.com;

root "E:/projects/www.goserver.com";

location / {

设置允许跨域头部

add_header 'Access-Control-Allow-Origin' 'http://www.vuedist.com';

add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

cookies跨域传输

add_header 'Access-Control-Allow-Credentials' true;

add_header 'Access-Control-Allow-Headers' 'Origin, x-token, Authorization, Accept, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

如果请求方法为 OPTIONS,则直接返回 204 状态码

if ($request_method = 'OPTIONS') {

add_header 'Access-Control-Allow-Origin' 'http://www.vuedist.com';

add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

add_header 'Access-Control-Allow-Credentials' 'true';

add_header 'Access-Control-Allow-Headers' 'Origin,x-token, Authorization, Accept, DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';

add_header 'Content-Type' 'text/plain charset=UTF-8';

add_header 'Content-Length' 0;

return 204;

}

proxy_pass http://localhost:8869;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_set_header X-Forwarded-Proto $scheme;

}

location ~ \.php(.*)$ {

fastcgi_pass 127.0.0.1:9001;

fastcgi_index index.php;

fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;

fastcgi_param SCRIPT_FILENAME document_rootfastcgi_script_name;

fastcgi_param PATH_INFO $fastcgi_path_info;

fastcgi_param PATH_TRANSLATED document_rootfastcgi_path_info;

include fastcgi_params;

}

}

ufw防火墙命令

sudo ufw enable

sudo ufw disable

sudo ufw status verbose

sudo ufw allow 80/tcp

sudo ufw deny 80/tcp

sudo ufw allow from 192.168.1.1

sudo ufw deny from 192.168.1.1

sudo ufw delete allow 80/tcp

sudo ufw default allow/deny

sudo ufw reload

相关推荐
wazmlp0018873693 分钟前
控制器管理
linux·运维·服务器
薛定猫AI6 分钟前
【深度解析】DeepSeek Harness:可插拔智能体运行时如何连接大模型与真实计算机
java·运维·网络
学linux的QQ蛋7 分钟前
Linux 文件 IO:系统调用 open/read/write 完整总结
linux·运维·算法
蒲锘13 分钟前
DevOps 实验阶段四:Infra 节点 + MySQL + Spring Boot 容器化
spring boot·mysql·docker
Rei224820 分钟前
使用llama.cpp的Qwen3.6-27B-Q8本地部署详解【Linux GPU】
linux·运维·llama
裕晟资质规划25 分钟前
首次办理军工保密资质:咨询服务选择要点与全流程交付清单(评估框架)
大数据·运维·服务器·网络·数据库·经验分享
超龄超能程序猿32 分钟前
实战优化:.NET 8 容器 Debian 源+时间同步企业级 Dockerfile
运维·debian·.net
运维全栈笔记4 小时前
Vue + Spring Boot 前后端分离项目部署笔记(若依 RuoYi-Vue 3.9.2)
运维·服务器·vue.js·spring boot·笔记·开源·开源软件
专注API从业者9 小时前
告别人工盯品!借助 Open Claw 搭建电商商品自动化监控与数据分析系统(完整可运行源码)
大数据·运维·数据库·数据分析·自动化
爱喝水的鱼丶10 小时前
SAP-ABAP:ABAP 用户出口参数传递与上下文获取:SAP 标准数据读取与交互逻辑实现
运维·性能优化·交互·sap·abap·经验交流·出口