[hello world 動かない ][検索]

プログラミング関連で自分が調べた事をメモる

CentOS 6

centos6 php インストール

CentOS6にPHPをインストールする バージョン CentOS 6.6 PHP 5.3.3 インストール sudo yum install php php-mbstring 設定を変更する /etc/php.iniログの出力先変更 ;error_log = php_errors.log ↓ error_log = /var/log/php_errors.log日本語の設定 ;mbstri…

MongoDB インストール

mongoDBをCentOS6にインストールする バージョン CentOS 6.6 mongoDB 2.6 公式サイトのインストール手順 http://docs.mongodb.org/master/tutorial/install-mongodb-on-red-hat/ yumのリポジトリを追加する /etc/yum.repos.d/mongodb-org-2.6.repo というフ…

さくら VPS 初期設定

一般ユーザー作成とパスワード設定 adduser dev passwd dev sudo出来るようにする usermod -G wheel dev visudo ## Allows people in group wheel to run all commands %wheel ALL=(ALL) ALL sshの鍵認証の設定 teratermで鍵を作成 Setup -> SSH KeyGenerato…

CentOS Apache インストール

CentOSにApacheをインストール CentOS6.6の場合 インストール sudo yum install httpd 起動、停止、再起動 sudo service httpd start sudo service httpd stop sudo service httpd restart サーバー起動時にApache自動起動 sudo chkconfig httpd on 最低限の…