質問編集履歴

3

追記依頼のため。

2020/08/25 09:07

投稿

antiwararug
antiwararug

スコア35

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,24 @@
1
1
  PHPのバージョンを5.1系から7.3系にバージョンアップしました。
2
+
3
+ アップデートのコマンドは以下の通りです。
4
+
5
+ ```
6
+
7
+ # curl -Lkvf http://jp2.php.net/get/php-7.3.21.tar.gz/from/this/mirror -o php-7.3.21.tar.gz
8
+
9
+ # tar -xvzf php-7.3.21.tar.gz
10
+
11
+ # cd php-7.3.21
12
+
13
+ # ./configure
14
+
15
+ # make
16
+
17
+ # make test
18
+
19
+ # make install
20
+
21
+ ```
2
22
 
3
23
  以下のようなエラーとなり、memcachedが上手く起動出来ておりません。
4
24
 

2

指摘に対して修正

2020/08/25 09:07

投稿

antiwararug
antiwararug

スコア35

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,12 @@
1
1
  PHPのバージョンを5.1系から7.3系にバージョンアップしました。
2
2
 
3
3
  以下のようなエラーとなり、memcachedが上手く起動出来ておりません。
4
+
5
+
6
+
7
+ OSはCentOS 6.5になります。
8
+
9
+
4
10
 
5
11
  ```
6
12
 

1

内容に不備があったため

2020/08/25 09:02

投稿

antiwararug
antiwararug

スコア35

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,17 @@
4
4
 
5
5
  ```
6
6
 
7
- PHP Warning: PHP Startup: Invalid library (maybe not a PHP library) '/usr/local/src/php-memcached/modules/memcached.so' in Unknown on line 0
7
+ # php -v
8
8
 
9
+ PHP Warning: PHP Startup: Invalid library (maybe not a PHP library) 'memcached.so' in Unknown on line 0
9
10
 
11
+ Warning: PHP Startup: Invalid library (maybe not a PHP library) 'memcached.so' in Unknown on line 0
10
12
 
13
+ PHP 7.3.21 (cli) (built: Aug 23 2020 11:36:17) ( ZTS )
14
+
15
+ Copyright (c) 1997-2018 The PHP Group
16
+
11
- Warning: PHP Startup: Invalid library (maybe not a PHP library) '/usr/local/src/php-memcached/modules/memcached.so' in Unknown on line 0
17
+ Zend Engine v3.3.21, Copyright (c) 1998-2018 Zend Technologies
12
18
 
13
19
  ```
14
20