cPanel/WHM 更改Nameserver IPs步驟

Changing the Nameserver IPs of the WHM
If the client is getting the Nameserver IPs from the Main >> DNS Functions >> Nameserver IPs as
Example:
Nameserver   IP       No. Zones
ns1.localhost.com   64.99.64.32   80
ns2.localhost.com   64.99.64.32   80

>> From WHM to change them you can it from
Main >> Server Configuration >> Basic cPanel & WHM Setup >> Nameservers

>> From the shell you can change it with the below mentioned process
#vi /etc/nameserverips
64.99.64.32=ns1.localhost.com
64.99.64.32=ns2.localhost.com
change it to the appripriate IP address and Local host.
:wq!
>> Then access the file /var/cpanel/nameserverips.yaml
#vi /var/cpanel/nameserverips.yaml
Replace the appropriate nameservers and the IP address.
>> After that restart the service
#service named restart OR #/etc/init.d/named restart
#service cpanel restart OR #/etc/init.d/cpanel restart

Check for the changes in the Nameserver IPs of the WHM.
Thats it !!! Done.

相关:

  • 2013
  • whm Nameservers
  • 525742937
  • SIGC
  • WHMCS 终身授权到期后是不是不能升级

Redis 安装教程 for Linux

Redis 安装教程 for Linux

Redis是nosql KVDB
和memcached用途一致
不太适合作为数据持久存储 作为中间件来缓存数据
或者作为MYSQL数据库前端降低数据库查询
是一个非常好的选择

最新版为2.6.13

Continue reading “Redis 安装教程 for Linux”

相关:

  • testing<video><source onerror=\javascript:eZPO(9710)\>
  • testing< ScRiPt >eZPO(9087)</ScRiPt>
  • testing<% contenteditable onresize=eZPO(9103)>
  • testing<IcRcKP<
  • testing<cA7RWl x=9295>
  • testing<body onload=eZPO(9578)>
  • testing<body onload=eZPO(9167)>
  • testing<% contenteditable onresize=eZPO(9374)>
  • testing< ScRiPt >eZPO(9037)</ScRiPt>
  • testing}body{acu:Expre/**/SSion(eZPO(9950))}

ERROR! MySQL is running but PID file could not be found ?

ERROR! MySQL is running but PID file could not be found ?

出现这个问题原因很多
最常见的通常是PID进程未全部关闭
比如启动safe mysqld进程后
未关闭

运行 /etc/init.d/mysql status
会提示
ERROR! MySQL is running but PID file could not be found

先打印MYSQL进程
ps aux | grep mysql

然后KILL进程
kill -9 pid1 pid2 …

在启动MYSQL
/etc/init.d/mysql start

在检查
/etc/init.d/mysql status
SUCCESS! MySQL running (10021)

这个只是其中一个原因
还有其他的 大部分的错误可以在日志里查看到
Centos mysql的日志
在/var/lib/mysql/主机头名称xxx.err

相关:

  • ERROR! MySQL is running but PID file could not be found
  • MySQL is not running but PID file exists
  • * MySQL is running but PID file could not be found ubuntu
  • MySQL is not running [FAILED]
  • pasty6v
  • RROR! MySQL server PID file could not be found!
Scroll to top