CentOS 7にNetCommons 2をインストールしてみました。
究極の情報基盤システム – NetCommons
http://www.netcommons.org/
管理者マニュアル
http://manual.netcommons.org/管理者マニュアル
ユーザーマニュアル
http://manual.netcommons.org/ユーザーマニュアル
必要なシステム構成が管理者マニュアルにありました。
2-1-3 インストールしやすい組み合わせ
NetCommonsは次の環境で動作します。
PHP5.1.6 以降
データベース MySQL5.0以降
WebサーバApache 1.3もしくは2以降ですが、特に以下の組み合わせをお勧めしています。
(PHP 5.1.6, MySQL 5.0.22, Apache 2.2.3)
(2010年8月18日現在)OSはFedoraCore 7またはCentOS 5をお勧めしています。Red Hat Enterprise Linux 5では動作確認済みです。今後、FreeBSDやUNIXで動作確認を行う予定です。詳細はNetCommons公式サイトで公開します。
情報がかなり古いですね。もっと新しい情報がどっかにあるのかと探したのですが見つけられませんでした。
今回のテスト環境です。
・CentOS Linux release 7.2.1511 (Core)
・Linux host01.rootlinks.net 3.10.0-229.4.2.el7.x86_64 #1 SMP
・最小インストール
- Apacheのインストール
- phpのインストール
- mariadbのインストール
- phpのTimeZone
- Apache,mariaDB自動起動の設定
- Apache,mariaDB起動
- mariaDB初期設定
- Firewallの設定
1 2 3 4 5 6 7 8 9 |
[root@host01 ~]# yum -y install httpd (snip) インストール: httpd.x86_64 0:2.4.6-40.el7.centos 依存性関連をインストールしました: httpd-tools.x86_64 0:2.4.6-40.el7.centos mailcap.noarch 0:2.1.41-2.el7 完了しました! |
PHP5.1.6 以降とありますがphpだけでいいのか、他のモジュールは何か必要なのか分かりません。
取り敢えずphp,php-mysql,php-mbstringをインストールしておきます。
1 2 3 4 5 6 7 8 9 10 11 |
[root@host01 ~]# yum -y install php php-mysql php-mbstring (snip) インストール: php.x86_64 0:5.4.16-36.el7_1 php-mbstring.x86_64 0:5.4.16-36.el7_1 php-mysql.x86_64 0:5.4.16-36.el7_1 依存性関連をインストールしました: libzip.x86_64 0:0.10.1-8.el7 php-cli.x86_64 0:5.4.16-36.el7_1 php-common.x86_64 0:5.4.16-36.el7_1 php-pdo.x86_64 0:5.4.16-36.el7_1 完了しました! |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[root@host01 ~]# yum -y install mariadb-server (snip) インストール: mariadb-server.x86_64 1:5.5.44-2.el7.centos 依存性関連をインストールしました: mariadb.x86_64 1:5.5.44-2.el7.centos perl-Compress-Raw-Bzip2.x86_64 0:2.061-3.el7 perl-Compress-Raw-Zlib.x86_64 1:2.061-4.el7 perl-DBD-MySQL.x86_64 0:4.023-5.el7 perl-DBI.x86_64 0:1.627-4.el7 perl-IO-Compress.noarch 0:2.061-2.el7 perl-Net-Daemon.noarch 0:0.48-5.el7 perl-PlRPC.noarch 0:0.2020-14.el7 完了しました! |
/etc/php.iniを編集してTimeZoneを設定します。
1 2 3 4 5 |
[root@host01 ~]# vi /etc/php.ini [root@host01 ~]# grep timezone /etc/php.ini ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = Asia/Tokyo |
1 2 3 4 |
[root@host01 ~]# systemctl enable httpd Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service. [root@host01 ~]# systemctl enable mariadb Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service. |
1 2 |
[root@host01 ~]# systemctl start httpd [root@host01 ~]# systemctl start mariadb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
[root@host01 ~]# mysql_secure_installation /usr/bin/mysql_secure_installation: 行 379: find_mysql_client: コマンドが見つか りません NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MariaDB root user without the proper authorisation. Set root password? [Y/n] Y New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] Y ... Success! By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] Y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] Y ... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB installation should now be secure. Thanks for using MariaDB! |
httpd(80)への接続を許可します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[root@host01 ~]# firewall-cmd --permanent --add-service=http success [root@host01 ~]# firewall-cmd --reload success [root@host01 ~]# firewall-cmd --list-all public (default, active) interfaces: eno16777736 sources: services: dhcpv6-client http ssh ports: masquerade: no forward-ports: icmp-blocks: rich rules: |
これで最低限の準備は終わりました。
それぞれ必要に応じてApache,php,mariaDBの設定を行って下さい。
次回はNetCommons 2をインストールします。