13 lines
324 B
Text
13 lines
324 B
Text
|
#!/bin/bash
|
||
|
|
||
|
## Description: Tail the main solr log
|
||
|
## Usage: solrtail
|
||
|
## Example: ddev solrtail
|
||
|
|
||
|
# This example runs inside the solr container.
|
||
|
# Note that this requires that /mnt/ddev_config be mounted
|
||
|
# into the solr container and of course that you have a container
|
||
|
# named solr.
|
||
|
|
||
|
tail -f /opt/solr/server/logs/solr.log
|