当我在Chrome浏览器中输入 Job job = new Job();
ParquetOutputFormat.setWriteSupportClass(job, AvroWriteSupport.class);
AvroParquetOutputFormat.setSchema(job, MyAvroType.SCHEMA$);
AvroParquetOutputFormat.setBlockSize(job, 128*1024*1024);
AvroParquetOutputFormat.setCompression(job, CompressionCodecName.SNAPPY);
AvroParquetOutputFormat.setCompressOutput(job, true);
sparkContext.textFile("s3://bucket/path_to_legacy_files")
.map(line -> customLib.convertToAvro(line))
.mapToPair(record -> new Tuple2<Void, MyAvroType>(null, record))
.saveAsNewAPIHadoopFile(
"s3://bucket/destination",
Void.class,
MyAvroType.class,
new ParquetOutputFormat<MyAvroType>().getClass(),
job.getConfiguration());
时,它会重定向到localhost:8000
并向我提供“无法访问此网站 - localhost拒绝连接。”
转到localhost
和localhost:8000/wp-admin
两者都可以。
我正在使用Docker-Wordpress-Compose。
这是我的主机文件:
localhost:8000/services
以下是我127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
ping localhost
当我PING localhost (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.042 ms
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.013 ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.038 ms
64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.057 ms
64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.049 ms
ping localhost:8000
答案 0 :(得分:0)
首先使用netstat -pluton显示您的开放端口,如果您没有看到您的8000端口,可能是因为您没有使用run -d --link database:database -p 8000:8080 wordpress
打开它,是吗?试试localhost:8000/wordpress
?如果您允许连接,请检查您的apache2.conf。