whmcs相关-隐藏VPS购买时的NS填写和自动生成hostname

修改这些只需要将购物车模板的configureproduct.tpl文件修改即可,具体修改步骤如下: 找到相应的NS填写的div块,然后增加样式 style="display:none;" 并将以下类似代码中的value值修改。 <input type="text" name="ns1prefix" class="form-control" id="inputNs1prefix" value="ns1.t667.com" placeholder="n […]

Boot process hangs at dracut: Switching root

当启动系统时提示:Switching root 错误原因: When the boot process switches root from the initramfs loaded in memory to the mounted storage, it executes the upstart initscripts in /etc/init/, which in turn continue the boot process to the login […]

强制umount一个挂载

在移除设备的时候会发生,设备繁忙之类的提醒。 而我们又不知道,哪个进程在访问设备,便可以使用此方法解决。 这里假设/mnt为挂载分区。 fuser -cu /mnt fuser -ck /mnt fuser -c /mnt    

iptables的一些用法

禁用25端口: iptables -I FORWARD -p tcp --dport 25 -j DROP 禁用UDP,只开启53端口(DNS协议): list=`grep nameserver /etc/resolv.conf |awk '{print $NF}'` for i in $list do iptables -A OUTPUT -p udp -d $i --dport 53 -j ACCEPT done iptables -A OUTPUT […]

solusvm里面批量启动VPS

Xen PV/HVM CFGS=/home/xen/vm*/;for cfg in $CFGS;do xm create $cfg*.cfg;done OpenVZ CFGS=`vzlist -S -Ho ctid`;for cfg in $CFGS;do vzctl start $cfg;done KVM CFGS=/home/kvm/kvm*/;for cfg in $CFGS;do virsh create $cfg*.xml;done

solusvm配置noVNC

方法很简单,官方文档(https://documentation.solusvm.com/display/DOCS/noVNC+Configuration?src=contextnavpagetreemode)也有介绍,本文只供留作记录 准备工作: 首先,修改solusvm中添加的节点的hostname为一个域名,并准备好这个域名的SSL证书 然后我们将SSL证书合并为PEM文件,在线合并工具https://www.myssl.cn/tools/merge […]

一些MySQL语句 记录

常用插入语句: INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....);  常用更新语句: UPDATE 表名称 SET 列名称 = 新值 ; UPDATE 表名称 SET 列名称 = 新值 WHERE LIKE '%特定字%';  常用删除语句: DELETE FROM 表名称 WHERE 列名称 = 值; TRUNCATE TABLE 表名称; DELETE FROM 表名称 WHERE 列名称 […]