前言:
本文的閱讀對象是為已經有 Apache、MySQL 和 php 基本的操作經驗的人員編寫。主要講求正確和快速安裝。致於,Apache、MySQL 和 php詳細設定、修改方面和軟件測試,在這裡不會詳談。
設定、測試與啟動 Apache2
Solaris 10 已經內置安裝了 Apache 2.xx,只需要
前言:
本文的閱讀對象是為已經有 Apache、MySQL 和 php 基本的操作經驗的人員編寫。主要講求正確和快速安裝。致於,Apache、MySQL 和 php詳細設定、修改方面和軟件測試,在這裡不會詳談。
設定、測試與啟動 Apache2
Solaris 10 已經內置安裝了 Apache 2.xx,只需要做一些設定便可以使用。
1. 首先用 Root 了登入文字模式系統 ( Console Mode )
2. 復制 /etc/apache2/httpd.conf-example 到 /etc/apache2/httpd.conf
#
cp /etc/apache2/httpd.conf-example /etc/apache2/httpd.conf
3. 編輯 /etc/apache2/httpd.conf
· 設定你所需要的 ServerName 服務器名稱,預設為 127.0.0.1
· 在 ServerAdmin 設定正確的 E-mail 地址
4. 使用以下指令啟動 Apache
#
svcadm enable apache2
然後,試一試從新啟動 Solaris ,看一看 Apache 能不自動啟動。基本網頁文件位置為 /var/apache2/htdocs 。
設定、測試與啟動 MySQL
Solaris 10 已經內置安裝了 MySQL。安裝者必須要用 Root 身份登入系統。以下的安裝步驟可以在 /usr/sfw/src/mysql/Docs 目錄中找到。
1.用 root 身份 login 到 Console mode 中,並且進行數據庫的事前准備。
#
/usr/sfw/bin/mysql_install_db
Preparing db table
Preparing host table
Preparing user table
Preparing func table
Preparing tables_priv table
Preparing columns_priv table
Installing all prepared tables
060118 21:24:03 /usr/sfw/sbin/mysqld: Shutdown Complete
<snip...>
2.建立 mysql user 和 group ,並且更改數據目錄的群組。
#
groupadd mysql
#
useradd -g mysql mysql
#
chgrp -R mysql /var/mysql
#
chmod -R 770 /var/mysql
#
installf SUNWmysqlr /var/mysql d 770 root mysql
3.預設 MySQL 設定文件位置為 /var/mysql/my.cnf
4.復制 MySQL 設定文件到預設位置
#
cp /usr/sfw/share/mysql/my-medium.cnf /var/mysql/my.cnf
5.手動啟動 mysql
#
/usr/sfw/sbin/mysqld_safe --user=mysql &
6.設定 MySQL 的 root user密碼 ( 下文中的 new-password 為你想要的密碼,你可以自行更改為你喜歡的密碼。因為安全理由,切密不要使用 new-password 為你的密碼,一定要更改 )
#
cd /usr/sfw/bin
#
./mysqladmin -u root password 'new-password'
#
./mysqladmin -u root -h `hostname` password 'new-password'
7.測試 MySQL Server
#
./mysqlshow -p
Enter password: new-password
+-----------+
| Databases |
+-----------+
| mysql |
| test |
+-----------+
#
./mysql -u root -p
Enter password: new-password
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 4.0.20-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
show databases;
+-----------+
| Databases |
+-----------+
| mysql |
| test |
+-----------+
2 rows in set (0.00 sec)
mysql>
quit;
Bye
8.設定 Solaris Server 在啟動和關機時,自動運行和停止MySQL Server。
#
ln /etc/sfw/mysql/mysql.server /etc/rc3.d/S99mysql
#
ln /etc/sfw/mysql/mysql.server /etc/rc0.d/K00mysql
#
ln /etc/sfw/mysql/mysql.server /etc/rc1.d/K00mysql
#
ln /etc/sfw/mysql/mysql.server /etc/rc2.d/K00mysql
#
ln /etc/sfw/mysql/mysql.server /etc/rcS.d/K00mysql
9.然後,試一試從新啟動 Solaris ,看一看 MySQL 能不自動啟動。預設 MySQL 設定文件位置為 /var/mysql/my.cnf 。
下載與設定 PHP
1. 用 root 身份 login 到 Console mode 中。
2. 檢查清楚 PATH 是否包含 /opt/csw/bin 和 /usr/sfw/bin,如果沒有,請自行加上。
#
bash
#
export PS1='\u:\w#'
root:/#
echo $PATH
/opt/csw/bin:/usr/sfw/bin:/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin
3. 安裝 pkg-get
root:/#
mkdir /usr/local/src
root:/#
cd /usr/local/src
root:/usr/local/src#
wget http://www.blastwave.org/pkg_get.pkg
root:/usr/local/src#
cp pkg_get.pkg ..
root:/usr/local/src#
pkgadd -d pkg_get.pkg all
You may use and copy this software without charge, as you see fit.
The software is copyright (C) Philip Brown, Nov 2002
Dont forget to update /opt/csw/etc/pkg-get.conf with your nearest archive site.
The selected base directory </opt/csw> must exist before installation
is attempted.
Do you want this directory created now [y,n,?,q] y
Using </opt/csw> as the package base directory.
## Processing package information.
## Processing system information.
2 package pathnames are already properly installed.
## Verifying disk space requirements.
## Checking for conflicts with packages already installed.
## Checking for setuid/setgid programs.
This package contains scripts which will be executed with super-user
permission during the process of installing this package.
Do you want to continue with the installation of <CSWpkgget> [y,n,?] y
Installing pkg_get - CSW version of automated package download tool as <CSWpkgget>
## Installing part 1 of 1.
/opt/csw/bin/pkg-get
/opt/csw/etc/pkg-get.conf.csw
/opt/csw/share/man/man1m/pkg-get.1m
/var/pkg-get/admin-fullauto
[ verifying class <none> ]
## Executing postinstall script.
Installing /opt/csw/etc/pkg-get.conf.csw to pkg-get.conf
Installation of <CSWpkgget> was successful.
root:/usr/local/src#
cd /
root:/#
4. 檢查是否安裝好 pkg-get 和 wget的位置
root:/#
which pkg-get
/opt/csw/bin/pkg-get
root:/#
which wget
/usr/sfw/bin/wget
5. 安裝完整的 wget 軟件
root:/# pkg-get -i wget
注意:將會出現大量文字,不用擔心,只要完成安裝就可以。
6. 移除舊版本的 wget
root:/#
cd /usr/sfw/bin
root:/usr/sfw/bin#
mv wget wget.orig
root:/usr/sfw/bin#
exit
#
bash
#
export PS1='\u:\w#'
root:/#
7. 檢查wget新的位置是否正確
root:/#
which wget
/opt/csw/bin/wget
8. 檢查 GNU Autoconf 的版本是否為 2.59 或以上
root:/#
which autoconf && autoconf --version | head -2
/opt/csw/bin/autoconf
autoconf (GNU Autoconf) 2.59
Written by David J. MacKenzie and Akim Demaille.
如果不是為 2.59 或以上版本或根本沒有這個程序,執行以下指令:
root:/#
pkg-get -i autoconf
9. 檢查 GNU automake 的版本是否為 1.8.3 或以上
root:/#
which automake && automake --version | head -2
/opt/csw/bin/automake
automake (GNU automake) 1.8.3
Written by Tom Tromey <
[email protected]>.
如果不是為1.8.3 或以上版本或根本沒有這個程序,執行以下指令:
root:/#
pkg-get -i automake
10. 檢查 GNU sed version 的版本是否為 4.1.4 或以上
root:/#