さくらのVPS サーバーセットアップメモ 3 『PHPとMySQL、PHPMyadminのインストール』
今回は、PHP+MySQLのインストールついでにPHPMyadminのインストールです。対応事項
- PHPのインストール
- MySQLのインストール
- PHPMyAdminのインストール
パッケージで管理したいので、yumで全部インストール
# yumでphpをインストール sudo yum -y install php php-devel php-gd php-mbstring php-mysql php-pdo php-pear php-xml php-imap php-pecl-apc # yumでmysqlをインストール sudo yum install mysql mysql-devel mysql-server
yumでMySQLもインストールし、自動起動をオン
# MySQLの自動起動をON chkconfig mysqld on # MySQLを起動 /etc/init.d/mysqld start
MySQLの初期設定
# MySQLの初期設定起動 sudo mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we'll need the current password for the root user. If you've just installed MySQL, 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 MySQL root user without the proper authorisation. You already have a root password set, so you can safely answer 'n'. Change the root password? [Y/n] # 空エンター New password: # パスワード設定 Re-enter new password: # パスワード設定 Password updated successfully! Reloading privilege tables.. ... Success! By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL 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] #空エンターで、anonymousユーザー削除 ... 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] #リモートログインする予定ないので空エンターを押し、削除 ... Success! By default, MySQL 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] # 空エンターでテスト用のDBを削除 - Dropping test database... ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist ... Failed! Not critical, keep moving... - 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] # 設定を反映 ... Success! Cleaning up... All done! If you've completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL!
MySQLのユーザーを作成
mysql -u root -p #パスワードを入力 grant all privileges on *.* to nadeko@localhost identified by 'ur-passwd'; quit
PHPMyAdminのインストール
cd /var/www/html sudo mkdir phpmyadmin sudo chown apache. phpmyadmin/ cd phpmyadmin/ #gitでソース落としたかったので、gitインストール sudo yum -y install git # githubからphpmyadminのソースをダウンロード sudo -u apache git clone git://github.com/phpmyadmin/phpmyadmin.git /var/www/html/phpmyadmin/ # apache起動してなかったので、起動 sudo /etc/init.d/httpd start
見れたので、phpmyadminの設定するよ 以下例のURLにブラウザから、アクセス!
アクセスできたら、設定画面から、config.ini.phpを生成
http://ur-hostname/phpmyadmin/setup/
画面の説明めんどいので成果物を貼っとく
以下を、『sudo vim /var/www/html/phpmyadmin/config.ini.php』とかで適宜保存
<?php /* * Generated configuration file * Generated by: phpMyAdmin 4.0.0-dev setup script * Date: Mon, 30 Apr 2012 20:47:11 +0900 */ /* Servers configuration */ $i = 0; /* Server: ur-hostname [1] */ $i++; $cfg['Servers'][$i]['verbose'] = 'ur-hostname'; # ホスト名を適宜設定 $cfg['Servers'][$i]['host'] = 'localhost'; # ホスト名を適宜設定 $cfg['Servers'][$i]['port'] = ''; $cfg['Servers'][$i]['socket'] = ''; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['user'] = 'root'; # さっき作ったMySQLのユーザー名を設定 $cfg['Servers'][$i]['password'] = 'ur-passwd'; # さっき作ったMySQLのユーザー名のパスワードを設定 /* End of servers configuration */ $cfg['blowfish_secret'] = '4f9e7b39038153.77380295'; $cfg['DefaultLang'] = 'en'; $cfg['ServerDefault'] = 1; $cfg['UploadDir'] = ''; $cfg['SaveDir'] = ''; ?>
以下URLにアクセスして、MySQLのユーザー名とパスワードをぶっこみ、 ログイン出来れば、OK
http://ur-hostname/phpmyadmin/
さくらのVPS サーバーセットアップメモ 2 『yumの設定』
今回は、yumの設定対応事項
- yum-prioritesのインストール・設定
- RPMForgeのパッケージをインストール
まずは、yum-prioritiesのインストールと設定をする。
ユーザーモードでログインしたので、sudoつけるよ
sudo yum -y install yum-priorities yum-plugin-priorities
とりあえず、prioritiesの設定をする
sudo vi /etc/yum.repos.d/CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os baseurl=http://ftp.sakura.ad.jp/pub/linux/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 priority=1 #追記 #released updates [updates] name=CentOS-$releasever - Updates #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates baseurl=http://ftp.sakura.ad.jp/pub/linux/centos/$releasever/updates/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 priority=1 #追記 #additional packages that may be useful [extras] name=CentOS-$releasever - Extras #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras baseurl=http://ftp.sakura.ad.jp/pub/linux/centos/$releasever/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 priority=1 #追記 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus baseurl=http://ftp.sakura.ad.jp/pub/linux/centos/$releasever/centosplus/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 priority=1 #追記 #contrib - packages by Centos Users [contrib] name=CentOS-$releasever - Contrib #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib baseurl=http://ftp.sakura.ad.jp/pub/linux/centos/$releasever/contrib/$basearch/ priority=1 #追記
RPMForgeのパッケージをインストール
# リポジトリインストール用のrpmパッケージは、ローカルに保存しない方針で sudo rpm -ivh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpmこれで、yumの設定は終了!
さくらのVPS サーバーセットアップメモ 1 『ユーザー作成とホスト名の設定』
さくらのVPS契約したので、セットアップしていくよ!
対象のOSはCeonOS 6.2です
対応事項
- ユーザー作成
- sudoの設定
- SELinux動作確認
- ホスト名変更
- yum update
まずは、ユーザー作成
adduser nadeko
ユーザーのパスワードを変更
passwd nadeko 新しいパスワード: # ここでパスワードを入力! 新しいパスワードを再入力してください: # 再度パスワードを入力! passwd: 全ての認証トークンが正しく更新できました。
作ったユーザーで、sudoが使えるようにするため、 以下の設定を行います
visudo ## Same thing without a password # %wheel ALL=(ALL) NOPASSWD: ALL ------------------------------------------------- ↓104行目あたりを以下に変更 ------------------------------------------------- ## Same thing without a password %wheel ALL=(ALL) NOPASSWD: ALL -------------------------------------------------
これで、wheelグループに所属する人が、sudoを投げれるようになります さっき作ったユーザーをwheelに所属させて、、、
usermod -G wheel nadeko
# 作ったユーザーにログインできるか確認!
su - nadeko
# そして、sudoが使えるか確認します。rootって帰ってきたら、成功
sudo whoami root
selinuxがうざいので、解除します。 と思ったら、解除されてたwwww
vim /etc/selinux/config SELINUX=disabled
ホスト名も合わせて変更
vim /etc/sysconfig/network ------------------------------------------------- NETWORKING=yes HOSTNAME=localhost.localdomain ------------------------------------------------- ↓を以下に変更 ------------------------------------------------- NETWORKING=yes HOSTNAME=nadekosnake.com -------------------------------------------------
vim /etc/hosts ------------------------------------------------- 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 ------------------------------------------------- ↓を以下に変更 ------------------------------------------------- 127.0.0.1 nadekosnake.com localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 nadekosnake.com localhost localhost.localdomain localhost6 localhost6.localdomain6 -------------------------------------------------
最後にyumアップデートしておk
yum -y update
今日はここまで
登録:
投稿
(
Atom
)
0 件のコメント :
コメントを投稿