SVN常用命令
启动SVN单库
svnserve -d -r /home/svn/projest
关闭SNV服务
查到服务的进程号:
ps -A | grep svn
1597 ? 00:00:00 svnserve
关闭进程:kill 1597
启动SVN单库
svnserve -d -r /home/svn/projest
关闭SNV服务
查到服务的进程号:
ps -A | grep svn
1597 ? 00:00:00 svnserve
关闭进程:kill 1597
有时候为了桌面简洁,对桌面的快捷方式进行搬迁。可搬迁过程中,桌面图标不见了或缺失了。这是因为桌面图标缓存的问题。这时候需要重新刷新
@echo off
taskkill /f /im explorer.exe
CD /d %userprofile%AppDataLocal
DEL IconCache.db /a
start explorer.exe
echo
新建bat文件 可以用新建文本.然后改尾缀方法 如1.txt改为1.bat 复制以上命令进去保存即可 也可通过以下附件解压
刷新桌面图标.bat
作者:猫偶尔会吃草
链接:https://www.jianshu.com/p/ec091197f741
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
解决方法:
http.conf文件添加以下代码
IndexOptions Charset=UTF-8
重启Apache
顺利解决!
【Windows环境】
这里介绍后台守护进程打开方式
start /d php think worker
【linux环境】
[debug 调试模式] ctrl+c退出或关闭会话则关闭服务
[daemon 后台守护进程] 参数后加 -d
开启workman
php think worker (这里不需要start)
停止workman
php think worker stop
重载workman
php think worker reload
重启workman
php think worker restart
查看workman状态
php think worker status
查看workman连接数
php think worker connections
开启workman服务
php think worker:server
关闭workman服务
php think worker:server stop
Workerman[start.php] start in DEBUG 调试模式 远程会话关闭则关闭
看了下thinkphp6 里面的完全手册 命令
think worker start -d (其实这里是错误的) 我一直进入都是Debug模式
正确的命令应该是: 开启 不需要再添加start
think worker -d (进入守护进程模式) 远程会话关闭继续可以链接
PHP Warning: Module 'openssl' already loaded in Unknown on line 0
提示:重复加载了openssl模块
直接在php.ini 的 寻找关键词:phpssl.so 前面加注释;
操作系统 centos 7.6
Tags:linux php加入系统变量 永久
1.打开文件
vi /etc/profile
2.在文件尾部添加以下代码
[i]
export PATH=/www/server/php/72/bin:$PATH
[esc]
[:wq]
3.生效配置
source /etc/profile
4.查看更改后的变量值
echo $PATH