mysqladmin -u root password 'password'
mysqladmin -u root -p password 'newPassord'
mysql -u root -p
2013年1月24日 星期四
2013年1月6日 星期日
~/.profile 沒有作用
昨天發現寫在.profile的一些export沒有作用,後來發現原來是安裝SyncGood之後它自動幫我建了一個~/.bash_profile所以導致我的~/.profile沒作用!!
查了一下執行/etc/profile, ~/.bash_profile, ~/.bash_login, ~/.profile, ~/.bashrc等 的執行順序
1. /etc/profile
以下三個會先遇到先執行 之後的就跳過
2.1. ~/.bash_profile
2.2. ~/.bash_login
2.3. ~/.profile
登出的時候會執行
~/.bash_logout
2013年1月3日 星期四
httpd apache2
Apache目錄: /etc/apache2
確定 userdir_module 沒有被注解
LoadModule userdir_module libexec/apache2/mod_userdir.so
把 /etc/apache2/users/Guest.conf 複製一份成 /etc/apache2/users/userName.conf
將內容修改為
<Directory "/Users/userName/Sites/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
指令 httpd -k [start|stop|restart]
開啟 httpd
瀏覽器 http://localhost/~userName
確定 userdir_module 沒有被注解
LoadModule userdir_module libexec/apache2/mod_userdir.so
把 /etc/apache2/users/Guest.conf 複製一份成 /etc/apache2/users/userName.conf
將內容修改為
<Directory "/Users/userName/Sites/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
指令 httpd -k [start|stop|restart]
開啟 httpd
瀏覽器 http://localhost/~userName
訂閱:
文章 (Atom)