Linux xampp Couldn't start MySQL
XAMPP: Starting MySQL...
XAMPP: Couldn't start MySQL!
可能原因
檔案權限,導至系統無法建立mysql.sock檔
chmod -R 775 /opt/lampp/var/mysql
chown -R nobody:root /opt/lampp/var/mysql
2014年12月26日 星期五
2014年12月25日 星期四
CentOS 7 開機啟動
讓 XAMPP 在開機的時候自動啟動
#nano /etc/rc.d/rc.local
在裡面新增一行
/opt/lampp/lampp start
加上執行權限
#chmod 744 /etc/rc.d/rc.local
-----------------------
[開機啟動] 關閉
chkconfig mysql off
chkconfig httpd off
重新啟動apache
service httpd restart
#nano /etc/rc.d/rc.local
在裡面新增一行
/opt/lampp/lampp start
加上執行權限
#chmod 744 /etc/rc.d/rc.local
-----------------------
[開機啟動] 關閉
chkconfig mysql off
chkconfig httpd off
重新啟動apache
service httpd restart
2014年12月23日 星期二
php貪婪與非貪婪比對
轉自
http://note.tc.edu.tw/868.html
https://disp.cc/b/11-2q1S
貪婪與非貪婪
當要抓取一段不固定的字串,例如 <b> 與 </b> 中間的字
最常看到的方法就是使用正規表示式 regular expression (以下簡稱 regex):
/<b>(.*?)<\/b>/
http://note.tc.edu.tw/868.html
https://disp.cc/b/11-2q1S
貪婪與非貪婪
當要抓取一段不固定的字串,例如 <b> 與 </b> 中間的字
最常看到的方法就是使用正規表示式 regular expression (以下簡稱 regex):
/<b>(.*?)<\/b>/
2014年12月18日 星期四
CentOS 7 防火牆設定
CentOS 7 防火牆設定
#firewall-cmd --list-all
查看一下防火牆現在開啟了哪些服務和端口:
暫時開起or關閉
# firewall-cmd --add-service=https
# firewall-cmd --remove-service=https
永久開起
# firewall-cmd --add-service=ftp --permanent
查看防火牆
# iptables -L
開啟port
# /sbin/iptables -I INPUT -p tcp --dport 443 -j ACCEPT
# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
關閉port
# /sbin/iptables -I INPUT -p tcp --dport 80 -j REJECT
#firewall-cmd --list-all
查看一下防火牆現在開啟了哪些服務和端口:
暫時開起or關閉
# firewall-cmd --add-service=https
# firewall-cmd --remove-service=https
永久開起
# firewall-cmd --add-service=ftp --permanent
查看防火牆
# iptables -L
開啟port
# /sbin/iptables -I INPUT -p tcp --dport 443 -j ACCEPT
# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
關閉port
# /sbin/iptables -I INPUT -p tcp --dport 80 -j REJECT
2014年12月11日 星期四
linux 設定永久 alias(別名)
linux 永久 alias(別名)
例如每次下 #ls -al時,想直接下簡短指令#ll (可自訂)
#cd ~
#ls -al
#nano .bashrc
最後一行加入alias ll='ls -al'
例如每次下 #ls -al時,想直接下簡短指令#ll (可自訂)
#cd ~
#ls -al
#nano .bashrc
最後一行加入alias ll='ls -al'
訂閱:
文章 (Atom)