【nginx】Windows使用nginx的常用命令
cd E:\nginx
nginx -s reload
nginx -s quit
taskkill /f /t /im nginx.exe
start nginx
nginx -v
cmd
在主配置文件nginx.conf中配置
[root@web01 ~]# cat /application/nginx/conf/nginx.conf
cd E:\nginx
nginx -s reload
nginx -s quit
taskkill /f /t /im nginx.exe
start nginx
nginx -v
cmd
在主配置文件nginx.conf中配置
[root@web01 ~]# cat /application/nginx/conf/nginx.conf
这个问题是我在宝塔面板上遇到的
他的意思是:出于安全原因,已禁用pcntl\ U fork()
解决问题:
第一步:从软件商店找到php版本,点击设置
第二步:找到禁用函数:把pcntl_fork函数删掉,如果还报错出现别的比如pcntl.wait has been disabled for security reasons就把pcntl.wait删掉即可
方法1:
delete from 表名;
方法2:
truncate table 表名;
比 较:
不带where参数的delete语句可以删除mysql表中所有内容,使用truncate table也可以清空mysql表中所有内容。
效率上truncate比delete快,但truncate删除后不记录mysql日志,不可以恢复数据。
MYSQL 5.5和5.7、8.0创建用户和授权的命令分别是?
5.5:
grant all on *.* to ‘user’@’%’ identified by ‘password’;
flush privileges;
5.7:
grant all on *.* to ‘user’@’%’ identified by ‘password’;
flush privileges;