回答編集履歴

2

加筆修正

2018/01/22 08:21

投稿

退会済みユーザー
test CHANGED
@@ -25,3 +25,33 @@
25
25
  ![php72系を追加できました](c718f2faf0e4feb7d0c15340cded45c4.png)
26
26
 
27
27
  となりphp72系が入りました。
28
+
29
+
30
+
31
+ この状態でphpPgAdminをインストールしようと`yum install phpPgAdmin`を実行するのですが、
32
+
33
+ ![phpが重複してしまいそう](732aca16eb7c511f111cd966191038e6.png)
34
+
35
+ phpが重複して入ってしまいそうな匂いを感じ、中断。
36
+
37
+
38
+
39
+ そうか、remi-safeからわざわざphp72*を引っ張ってこなくても、
40
+
41
+ remi-php72リポジトリから引っ張ってくるのを信じて、
42
+
43
+ `yum remove php72-php*`とか`yum remove php72-runtime`とかやって、
44
+
45
+ `yum install phpPgAdmin`で
46
+
47
+ ![yum install phpPgAdmin結果](a45df594f243465214438c16551e8ac9.png)
48
+
49
+ 追加されたのを観て、足りないモジュールを
50
+
51
+ `yum install php-mbstring php-pear php-xml php-xmlrpc`などとして追加しました。
52
+
53
+
54
+
55
+ あとはphpのmbstring周りとか定義していきます。
56
+
57
+ お騒がせしました。

1

加筆修正

2018/01/22 08:21

投稿

退会済みユーザー
test CHANGED
@@ -5,3 +5,23 @@
5
5
  ですが、いっしょにphpPgAdminもいなくなってしまいました。
6
6
 
7
7
  ![phppgadminも消えた](0f70118bbeec5d98cf74f4aab8f5fb94.png)
8
+
9
+
10
+
11
+ ついでにphp72系を使いたいために、php71系も削除しました。
12
+
13
+
14
+
15
+ remi-php72リポジトリの有効化のため、
16
+
17
+ `yum remove php71-php-cli php71-php-common php71-php-json php71-php-mbstring php71-runtime`
18
+
19
+ などとしてインストール済みパッケージからphp71系が表示されなくなったのを確認し、
20
+
21
+ `yum install yum-utils`と`yum-config-manager --enable remi-php72`にてphp72系を追加できる条件を整え、
22
+
23
+ `yum install php72-php php72-php-cli php72-php-json php72-php-mbstring php72-php-pdo php72-php-pear php72-php-pgsql php72-php-xml php72-php-xmlrpc`などとやって必要なphp72系パッケージらをインストールしたところ、
24
+
25
+ ![php72系を追加できました](c718f2faf0e4feb7d0c15340cded45c4.png)
26
+
27
+ となりphp72系が入りました。