51CTO博客开发
运算符描述示例文件比较运算符-e filename如果 filename 存在,则为真[ -e /var/log/syslog ]-d filename如果 filename 为目录,则为真[ -d /tmp/mydir ]-f filename如果 filename 为常规文件,则为真[ -f /usr/b
1. 登陆MongoDB下面这个命令用于登录MongoDB数据库。请确保在数据库dbname中存在对应用户的凭据(比如,用户名和密码)。mongo -u <username> -p <password> --authenticationDatabase <dbname>2. 显示所有的数据库一旦用户以适
mysql GTID replication 设置: 主服务器my.cnf 参数:[client]#no-beep # pipe# socket=0.0port=3306 [mysql] default-character-set=utf8 # SERVER SECTION# ------------------------------
1、查看overlay模块是否安装lsmod | grep over2、将OverlayFS加到module目录下echo "overlay" > /etc/modules-load.d/overlay.conf3、或者使用modprobe命令加载模块#modprobe overlay4、修改docker服务配置vim /lib/systemd/sys
mysql 全量备份:vim /root/mysql_bakup.sh #!/bin/bash#Date:2017/5/2#Author:wangpengtai#Blog:http://wangpengtai.blog.51cto.com#At Sunday, we will backup the completed&
# Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.
在windows server 服务器nsclient++ 增加外部scripts的方法:在nscline.ini 配置文件中增加:[/settings/external scripts/wrappings]vbs=cscript.exe //T:30 //NoLogo scripts\lib\wrapper.vbs %SCRIPT% %ARGS%[/settings/external scrip
1./opt/MegaRAID/MegaCli/MegaCli64 -PDList -aALL | grep -E 'Device Id|Error|Media Type'刚刚有提到SSD寿命的问题,在这一并说了吧,使用smartctl可以检测SSD的寿命,当然还有很多其它结果,SSD寿命只是其中一部分,但
rm -f *“-bash: /bin/rm: Argument list too long“..意思是参数太长,rm 干不了。可以用ls | xargs rm -f这个命令将目录下所有文件删除。
相对与PHP5,PHP7的最大变化之一是移除了MySQL扩展,推荐使用mysqli或者pdo_mysql,实际上在PHP5.5开始,PHP就着手开始准备弃用mysql扩展,如果你使用mysql扩展,可能看到过这样的提示”Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the
Ceilometer 是 Openstack 的监控管理计费模块,我所用的版本为 Mitaka 版本。Ceilometer 模块依赖 Keystone 认证模块,需要先部署好 Keystone 。系统环境为 Centos 6.7。把节点的 hostname 设置为 controller。编辑 /etc/hosts文件如下:# controller127.0.0.1
docker compose 使用:#!/bin/bashmkdir wordpress-site && cd wordpress-sitetouch docker-compose.ymlcat > docker-compose.yml <<EOLversion: "2"services: my-wpdb: p_w_
重建stack:http://CONTROLLER_IP:8004/v1/PROJECT_ID/stacksmethod: post header:content-Type:application/json Accept:application/json X-Auth-Token:TOKENbody:{ "files": { "myfile": "#!/bin/bash\
[root@oldboy C07]# cat 7_1.sh#!/bin/bashif [ -f /etc/hosts ] then echo "[1]"fi if [[ -f /etc/hosts&n
VAGRANTFILE_API_VERSION = "2"disk_ceph01 = '.ceph01_secondDisk.vdi'disk_ceph02 = '.ceph02_secondDisk.vdi'disk_ceph03 = '.ceph03_secondDisk.vdi'disk_ceph04 = '.ceph04_secondDisk.vdi'disk_cinder = '.cin
文件系统: 优化文件系统挂载参数:文件系统挂载参数是在/etc/fstab文件中修改,重启时候生效。noatime表示不记录访问时间,nodiratime不记录目录的访问时间。barrier=0,表示关闭barrier功能。其中nobarrier是xfs文件系统特有,ext4文件系统并无此参数。扩大文件描述符: 1、动态修改,重启失效,只能使
VAGRANTFILE_API_VERSION = "2"disk_ceph01 = '.ceph01_secondDisk.vdi'disk_ceph02 = '.ceph02_secondDisk.vdi'disk_ceph03 = '.ceph03_secondDisk.vdi'disk_ceph04 = '.ceph04_secondDisk.vdi'$script1 = <<
批量登陆linux主机脚本#test.sh #!/bin/bash dir=/home/test while read line do host=`echo $line| awk '{print $1}'` passwd=`echo $line |
Jenkins - 持续集成环境搭建 1. Jenkins 概述Jenkins是一个开源的持续集成工具。持续集成主要功能是进行自动化的构建。自动化构建包括自动编译、发布和测试,从而尽快地发现集成错误,让团队能够更快的开发内聚的软件。2. Jenkins功能主要功能:l 代码库(svn/git等)代码发生变化后更新代码至jenkins工作
linux 多路径配置 2017-03-11 20:38:45 标签:linux 多路径
Proper Way to Remove an OSD Run 'ceph osd tree' to list OSD devices and look for the number of the failed OSD or the OSD to be removed. # ceph osd tree We are going to remove O
Installationbmildren edited this page on 27 Jan 2016 · 1 revision
#!/bin/bashset -xPARTED=$(which parted)if [ -z "$PARTED" ];thenapt-get install -y partedfiPARTED=$(which parted)devices=$($PARTED -l 2>&1|grep Error|awk -F: '{print $2}'|xargs)part(){FDISK=$(wh
充分发挥nginx的性能,对系统参数做一些调整:net.ipv4.ip_forward =0net.ipv4.conf.default.rp_filter =1net.ipv4.conf.accept_source_route =0kernel.sysrq = 0kernel.core_user_pid = 1net.ipv4.tcp_syncookies = 1kernel.msgm
RHCS+GFS2+ISCSI+CLVM实现共享存储 2015-03-25 16:35:29 标签:iscsi scsi rhcs clvm gfs2 &nbs
Home Linux Centos How To Install ClamAV on CentOS 6 How To Install ClamAV on CentOS 6 r00t February 3, 2015 In this tutorial we
在安装php5.4时出现下面的错误: 当make正常,但是使用make install出现错误:cp: cannot stat `sapi/cli/php.1': No such file or directory 解决的办法如下: make install fails -> cp: cannot
windows server 2008 管理员密码忘记重新设置的步骤如下: 1.使用windowsserver 2008 R2的安装光盘引导计算机启动,完成安装镜像加载后,进入语言选择界面2.此时,按下Shift+f10 ,打开命令提示符界面,进入windows目录所在分区c盘,并定为到“windows\System32目录下3.将当前目
解决window server 2008 远程登录后出现屏幕键盘,方法如下: 1. 进入控制面板,选择“轻松访问中心”,选择“使用没有鼠标和键盘的计算机”, 2. 然后将“使用屏幕键盘”前的勾去掉即可。
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号