Nucleus 利用環境設定本ページは 2008-06-03 更新されました Nucleus(ニュークリアス) は PHP と MySQL を利用します。
1. MySQL のインストールとデータベース及びユーザーの作成
サーバーに SSH で root ログインし以下を実行します。 以下*****色で記載されている部分は入力のある個所です。 # vinstall mysql4.1 installing mysql4.1 Creating /etc/my.cnf to limit the number of mysqld processes to 30. Started the safe_mysqld wrapper script. Enter the new MySQL root password: ここで MySQL の root ユーザーのパスワードを入力します。 Enter the new MySQL root password (again): 確認のため MySQL の root ユーザーのパスワードを再入力します。 You will need to type 'rehash' before you will be able to access the mysql binary. vinstall done rehash を入力します。 blog サイトごとにデータベースを作成し、管理者を設定します。 # mysql -u root -p Enter password: xxxxx Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 4.1.22 Type 'help;' or '\h' for help. Type '\c' to clear the buffer mysql> create database blog_db; Query OK, 1 row affected (0.03 sec) mysql> grant all on blog_db.* to nucleus@localhost identified by '********'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> exit 以下のようにして、管理者 nucleus がパスワード ******** でデータベース nucleus を開けることを確認し、mysql を閉じます。 # mysql -u nucleus -p blog_db Enter password: ******** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 4.1.22 Type 'help;' or '\h' for help. Type '\c' to clear the buffer mysql> exit 2. php4 のインストール
以下のようにして、php4 をインストールします。
3. ソースの入手とインストールNucleus本体のダウンロードからソースを入手ください。インストール手順はソースに含まれる readme.html または、インストールの手順説明を参照ください。 Email: support@speedex.ne.jp
|