【基础】systemctl 服务的目录位置
systemctl 服务的目录位置
centos:/usr/lib/systemd/system
ubuntu:/etc/systemd/system,但实际部分是从/lib/systemd/system中软连接的
systemctl 服务的目录位置
centos:/usr/lib/systemd/system
ubuntu:/etc/systemd/system,但实际部分是从/lib/systemd/system中软连接的
#Git和ssh验证方面可以使用下面的方法
yum -y install expect
cat > expect.sh <<EOF
#!/usr/bin/expect -f
set timeout 30
spawn git pull origin maste
expect {
"*yes/no"
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;
在使用mongodump导出单个表的时候,遇到了一个错误
# mongodump --host xxx --port 27017 --username 'admin' -p '123456' -d 数据库 -c 表 --out backup.bak
Failed: error connecting to db server: server returned error on SASL authentication step: Authentication failed.
Harbor启动是一套容器
关闭实例
docker-compose down -v
启动Harbor
docker-compose up -d
Go语言的一些语法,通过语法我们可以发现Go语言非常简单,只有25个关键字
break default func interface select
case defer go map struct